Linux 、Mac OSX 常見問題 及 筆記

1.grep:Binary file (standard input) matches

[root@localhost]$ cat 20161102.csv|grep "20161027"
Binary file (standard input) matches

解決辦法:grep判斷該文件爲二進制文件,需添加參數 -anode

2.tar與zip壓縮時排除文件

zip命令:-x exclude the following names -i include only the following names
但 zip -r aaa.zip aaa -x /bbb/* 無效
正確方法:zip -r aaa.zip aaa -x \ccc\*,須要用反斜槓,或者:zip -r aaa.zip aaa -xbbb/*

tar命令:-zcvf aaa.tar.gz aaa --exclude=1 --exclude=2 無效
正確方法:tar -zcvf aaa.tar.gz --exclude=1 --exclude=2 aaa,須要先排除,後指定目錄

3.誤刪除libc.so.6的解決方法

Linux的不少命令都是依賴libc.so.6的動態連接庫,若是不當心把它刪除了,基本上全部命令都不能使用bash

LD_PRELOAD=/lib64/libc-2.12.so ln -s /lib64/libc-2.12.so /lib64/libc.so.6

4.<<輸出到文件

ftp -n -i $HOSTNAME >> ftp.log << END
user $USERNAME $PASSWORD
binary
prompt
cd $FTPDIR
ls
bye
END

5.優化內存定時任務

0 1 * * * free && sync && echo 3 > /proc/sys/vm/drop_caches && echo "" && free

6.ssh、sftp非默認端口登陸

ssh -p 2222 user1@192.168.1.1
sftp -oPort=2222 user1@192.168.1.1

7./usr/bin/ld: crti.o: No such file: No such file or directory

rpm -ivh --nodeps glibc-devel-2.12-1.192.el6.x86_64.rpm

8.搜索jar包類名

jar tf quartz-1.6.6.jar |grep JobFactory

org/quartz/simpl/PropertySettingJobFactory.class
org/quartz/simpl/SimpleJobFactory.class
org/quartz/spi/JobFactory.class

9.修改用戶密碼不過時

chage -M 99999 nwom
相關文章
相關標籤/搜索