Currently browsing tag

Linux, Page 18

Linux setup default gateway with route command

如何用指令模式設定linux預設閘道器?? 在設定 route 之前先顯示一下該機器的 routing table. 可以直接用 route 命令 [USER@Aloha ~]$ route Kernel IP routing table Destination     Gateway         Genmask         Flags Metric Ref    …

HOWTO TFTP Server

在 redhat, scientificlinux 內必須安裝 tftp 和 tftp-server 套件. 可用 yum install tftp tftp-server安裝. 然後編輯 /etc/xinetd.d/tftp 檔案. 把 disable = yes 改成 no. …

count ssh failed login

grep “Failed password for invalid user” /var/log/secure | awk ‘{print substr($13,8)}’ | awk ‘{count[$1]++} END  { for( i in count ) { …

Delete over 14 Days Untouched Data, Automatically

如果有些暫存的資料夾. 定時想清理就可以用下列命令. 而我是比較懶惰. 我將指令放在 cron table裡面. 每天晚上凌晨自己讓電腦執行. crontab -e 0 0 * * * find /scratch/ -mindepth 2 -maxdepth 5 -mtime +14 …

create keytab for webserver

before, you should install kstart [root@chat kstart-3.13]# ./configure KRB5_CONFIG=/etc/krb5.conf –with-aklog=/usr/bin/aklog –enable-setpag [root@chat kstart-3.13]# make [root@chat kstart-3.13]# make install modify /etc/rc.d/init.d/httpd file: from …