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 …
如何用指令模式設定linux預設閘道器?? 在設定 route 之前先顯示一下該機器的 routing table. 可以直接用 route 命令 [USER@Aloha ~]$ route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref …
在 redhat, scientificlinux 內必須安裝 tftp 和 tftp-server 套件. 可用 yum install tftp tftp-server安裝. 然後編輯 /etc/xinetd.d/tftp 檔案. 把 disable = yes 改成 no. …
find ./ -type d | sed -e ‘s/\ /\\\ /’ -e ‘s/\x27/\\\x27/’ | xargs -i fs copyacl -f . -t {}
grep “Failed password for invalid user” /var/log/secure | awk ‘{print substr($13,8)}’ | awk ‘{count[$1]++} END { for( i in count ) { …
From : http://www.besthostratings.com/articles/force-ssl-htaccess.html Sometimes you may need to make sure that the user is browsing your site over securte connection. An easy …
如果有些暫存的資料夾. 定時想清理就可以用下列命令. 而我是比較懶惰. 我將指令放在 cron table裡面. 每天晚上凌晨自己讓電腦執行. crontab -e 0 0 * * * find /scratch/ -mindepth 2 -maxdepth 5 -mtime +14 …
情境 : 我想組態某台 Linux 的 eth0 網路介面可以帶 VLAN100 and VLAN500 的 tags. 解決方案 : 在 Cisco Switch 上要先設定該 Linux Port. interface GigabitEthernet1/0/1 …
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 …
From : http://starryalley.homelinux.net/blog/index.php?/archives/1005-linux.html # tar zcf – dir_to_archive/ | split -b 10m – test_archive.tar.gz. # cat test_archive.tar.gz.* | tar zxf –