일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- R
- Sqoop
- react
- Express
- SQL
- mapreduce
- MSSQL
- SSL
- 공정능력
- mybatis
- plugin
- vaadin
- 보조정렬
- Java
- Eclipse
- JavaScript
- xPlatform
- Python
- tomcat
- Spring
- NPM
- table
- SPC
- hadoop
- IntelliJ
- Android
- window
- es6
- Kotlin
- Today
- Total
목록os/linux (15)
DBILITY
[root@webtest opt]# cat /etc/os-release NAME="CentOS Linux" VERSION="7 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="7" PRETTY_NAME="CentOS Linux 7 (Core)" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:centos:centos:7" HOME_URL="https://www.centos.org/" BUG_REPORT_URL="https://bugs.centos.org/" CENTOS_MANTISBT_PROJECT="CentOS-7" CENTOS_MANTISBT_PROJECT_VERSION="7" REDHAT_SUPPORT_PRODUCT="centos" RE..
기록해 두자.머리는 저장이 안된다. 예전에 help를 보고했는데, 이젠 그것도 귀찮다. # find -newermt 'yyyy-mm-dd' 지정된 날짜이후에 수정된 목록이 출력된다. ex) # find -newermt '2022-07-01' # find -type f -mtime -d 현재부터 d일 이전부터 수정된 목록이 출력된다. 이게 더 편하다. ex) # find -type f -mtime -100 ex) # find -type f -mtime -100 | wc -l 100일 이내에 수정된 파일의 숫자를 표시할 수 있음.
복사시 덮어쓰기 할거냐고 물어보는 걸 강제로 하는 옵션을 모르는게 아닌데...안된다... 알고보니 cp alias에 -interactive 옵션이 들어가 있었음.. 방법은 아래와 같다. [root@localhost ~]# \cp /home/xxxx/20190412/cer/* /data/xxxx_webapps/cer/ 또는 [root@localhost ~]# /bin/cp /home/xxxx/20190412/cer/* /data/xxxx_webapps/cer/ 또는 [root@localhost ~]# /usr/bin/cp /home/xxxx/20190412/cer/* /data/xxxx_webapps/cer/
[root@big-devel ~]# yum install -y epel-release [root@big-devel ~]# yum install -y erlang [root@big-devel ~]# yum install -y rabbitmq-server [root@big-devel ~]# rabbitmq-plugins enable rabbitmq_management The following plugins have been enabled: mochiweb webmachine rabbitmq_web_dispatch amqp_client rabbitmq_management_agent rabbitmq_management Plugin configuration has changed. Restart RabbitMQ f..
가상시스템에 디스크용량을 늘렸다. 헌데 lvm....이것 저것 찾아 해봤는데도 file system 정보에선 늘어나지 않는 용량... CenOS 7부턴 xfs_growfs를 써야한다고 함. 생각해보니 partition의 file type이 xfs였나 보다. [root@big-master ~]# resize2fs /dev/mapper/centos-root resize2fs 1.42.9 (28-Dec-2013) resize2fs: Bad magic number in super-block while trying to open /dev/mapper/centos-root Couldn't find valid filesystem superblock. [root@big-master ~]# xfs_growfs /dev/..