Linux 下如何挂载Windows分区
mount -t cifs -o username=adminnistrator,passwd=,iocharset=utf8 //10.9.10.37/htdocs /mnt/htdocs
动态查看文件大小以及更新时间:
watch ls -l /root/lijiabeibei.txt
MySQL添加用户:
grant all privileges on *.* to lijiabeibei@x.x.x.x identified by 'lijiabeibei.com';
FLUSH PRIVILEGES;
查看php进程,以及批量kill进程:
ps aux | grep -v php-cgi | grep -v grep | grep php
ps aux | grep -v php-cgi | grep -v grep | grep php | 1xargs kill -9
文件同步:
rsync -aq /local/file/ root@x.x.x.x:/remote/file/
阅读(957) | 评论(0) | 转发(0) |