?
?
1、crontab?
?
(1)crontab每10秒执行一次?
* * * * * /bin/date >>/tmp/date.txt?
* * * * * sleep 10; /bin/date >>/tmp/date.txt?
(2)还可以用以下方式表达?
string????????????meaning??
------???????????-------??
@reboot????????Run?once,?at?startup.??
@yearly?????????Run?once?a?year,??"?0?0?1?1?*?".??
@annually??????(same?as??@yearly)??
@monthly???????Run?once?a?month,??"?0?0?1?*?*?".??
@weekly????????Run?once?a?week,??"?0?0?*?*?0?".??
@daily???????????Run?once?a?day,??"?0?0?*?*?*?".??
@midnight??????(same?as??@daily)??
@hourly?????????Run?once?an?hour,??"?0?*?*?*?*?”.?
?
?
2、踢用户下线 ?
[email protected]:~# w?
?10:15:27 up 1 day, 19:20, ?2 users, ?load average: 0.00, 0.01, 0.05?
USER ? ? TTY ? ? ?FROM ? ? ? ? ? ? [email protected] ? IDLE ? JCPU ? PCPU WHAT?
jediael ?pts/0 ? ?218.107.55.252 ? 09:15 ? 31.00s ?0.13s ?0.13s -bash?
root ? ? pts/1 ? ?218.107.55.252 ? 10:15 ? ?1.00s ?0.02s ?0.00s w?
[email protected]:~# pkill -kill -t pts/0?
?
3、关于几个bin目录?
/bin:与开机相关的命令,包括单用户模式时用于系统的修复 ?如 cp mv bash dmsg grep chmod?
/sbin:同上,且一般是允许root使用 如 init iptables lvm?
/usr/bin:与开机无关的命令 ?java tail gcc??
/usr/sbin:同上,一般root使用的命令 useradd usermod?
/usr/local/bin:当同一软件需要不同版本,但又不想删除原有版本时,就将新软件安装在这里?
/user/local/sbin:同上,一般root使用的命令?
?
4、在proc文件系统中查看内存及cpu信息?
cat /proc/cpuinfo?
cat /proc/meminfo?
?
?
5、一些常用命令及选项?
cat /etc/passwd | cut -d ‘:‘ -f 1?
apt-cache dumpavail | grep ?‘Package: mysql’?
cat /etc/passwd | sort -t ‘:‘ -k 3 -n?
last | cut -d ‘ ‘ -f 1 | sort | uniq -c?
?
6、磁盘分区基本步骤
(1)创建分区 fdisk
(2)格式化分区 mkfs
(3)磁盘检查 fsck
(4)磁盘挂载 mount
7、关于apt常用命令
(1)安装
apt-get?install scala
(2)指定某个版本
apt-get install?calla=2.9.2
(3)删除某个软件
apt-get remove scala
(4)查找某个软件
apt-cache search scala
?
?
?