일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 노드
- 3.0
- DATABASE
- 자바스크립트
- script
- python
- postgres
- 아틀라시안
- 파이썬
- 설치
- java
- 하모니카
- javascript
- 설정
- ubuntu
- Windows
- 자바
- hamonikr
- 데이터베이스
- JS
- DB
- 스크립트
- install
- Atlassian
- 리눅스
- node
- PostgreSQL
- 우분투
- 윈도우
- Linux
- Today
- Total
목록ubuntu (35)
LukeHan 의 잡다한 기술 블로그
설치 사전 구성 파일 설정 참고 : help.ubuntu.com/lts/installation-guide/s390x/apbs04.html 예제 #### Contents of the preconfiguration file ### Localization # Locale sets language and country. d-i debian-installer/locale string en_US # Keyboard selection. #d-i console-tools/archs select at d-i console-keymaps-at/keymap select us # Example for a different keyboard architecture #d-i console-keymaps-usb/keymap sele..
확인 mongDB를 설치 유무를 확인합니다. // 서버 mongod --version // 클라이언트 mongo --version 설치 mongoDB 설치를 진행합니다. 아래의 명령어를 입력하여 설치 진행 합니다. // 서버 apt-get install mongodb-server // 클라이언트 apt-get install mongodb-clients 확인 설치 완료후 아래의 명령어를 통해 설치된 mongoDB의 버전을 확인합니다. // 서버 mongod --version // 클라이언트 mongo --version
qtchooser 설치 sudo apt-get install qtchooser 버전 확인 qtchooser -print-env output QT_SELECT="default" QTTOOLDIR="/usr/lib/x86_64-linux-gnu/qt4/bin" QTLIBDIR="/usr/lib/x86_64-linux-gnu" 디폴트 qt 버전 변경 - 위의 output 을 참고하여 변경 vi /usr/lib/x86_64-linux-gnu/qtchooser/qt4.conf
1일(24시간) 내에 변경된 파일 찾기 find ./ -type f -mtime -1 변경된지 1일 넘게 지난 파일 찾기 find / -type f -mtime +1 접근된(accessd) 시간은 -amin 혹은 -atime 를 이용한다. 10분 내에 접근된 파일 찾기 find / -type f -amin -10 1일 내에 접근된 파일 찾기 find / -type f -atime -1 /tomcat/test 폴더에서 10일 내로 변경된 파일목록 상세하게 목록으로 보여주기 find /tomcat/test -type f -mtime -10 -ls 현재위치 및 하위 폴더에서 5일 이내로 변경된 확장자명이 jsp 인 파일 목록 출력 find . -name '*.jsp' -mtime -5 (생략해도 되지만 -pr..
사용자 이름으로 실행중인 프로세스 찾기 ps -U user-name -o comm= | sort | uniq pgrep -lU user-name | awk '{print $2}' | sort | uniq rdp smile-user@invesumedemo-92034:~$ ps -ef | grep rdp root 897 1 0 3월10 ? 00:00:00 /usr/sbin/xrdp-sesman xrdp 915 1 0 3월10 ? 00:00:03 /usr/sbin/xrdp xrdp 6391 915 0 01:01 ? 00:00:29 /usr/sbin/xrdp root 6392 897 0 01:01 ? 00:00:00 /usr/sbin/xrdp-sesman smile-u+ 6394 6392 0 01:01 ? 00..