CentOS7 NAT server
# echo “net.ipv4.ip_forward = 1” >> /etc/sysctl.d/ip_forward.conf # sysctl -w net.ipv4.ip_forward=1 #### em1 is internal. em2 is public. # firewall-cmd –permanent –add-rule …
# echo “net.ipv4.ip_forward = 1” >> /etc/sysctl.d/ip_forward.conf # sysctl -w net.ipv4.ip_forward=1 #### em1 is internal. em2 is public. # firewall-cmd –permanent –add-rule …
偶爾遇到大檔案需要切割. linux 提供不錯的 split 指令. 可以按照檔案大小切割 也可以按照行數切 下面範例,每 100MB 切割檔案: $ split -b 100M data.ORI data.new 下面範例,每 10 萬行切割檔案 $ split -l …
前陣子在玩貴參參的 wirecast 測試版. 就想要自己架設串流伺服器. 後來意外發現 rtmp 架設蠻容易的 但還是記錄一下. 先下載 nginx 原始碼 自行編譯. 其實我蠻想要找 yum or rpm 安裝 可惜好像沒有辦法這樣就直接安裝好包含 rtmp 模組. 我是到 http://nginx.org/packages/mainline/centos/7/SRPMS/ …
不得不說 centos 7 讓我用得很痛苦 XD 原本是用 setup 就可以設定防火牆了. 現在預設是使用 firewall 當然可以用下列指令把它改回來 # systemctl disable firewalld # systemctl stop firewalld # yum install …
以往我都用互動模式 後來突發奇想想把硬碟分割放到 script 內 果然可以用外部指令達成. 酷
用下列檔案之後, 就可以直接 ssh xxx 機器短名 然後會帶入你要的帳號 # cat .ssh/config Host xxx Hostname xxx.liho.tw User root Host yyy Hostname yyy.liho.tw User root Host …
# mkdir -p /mnt/ramdisk # mkdir -p /exports/ramdisk # mount -t tmpfs -o size=32G tmpfs /mnt/ramdisk # mount –bind /mnt/ramdisk /exports/ramdisk # …
Trying to create a 7TB partition using parted, but parted always complains as follows: “The resulting partition is not properly aligned for …
這個範例是對學生群組限制他們登入某主機 首先 在 ldap 先建立 netgroup ou 在ldap 建立 netgroup students 群組 並加入學生帳號: user1 user2 加入 “account required pam_access.so” 這一行 到 /etc/pam.d/sshd …
1. 在正在執行的視窗 按 Ctrl + Z 2. 用 bg 指令派到背景 bg n 3. disown -h %n 這樣就可以關閉視窗工作不會停掉 範例 : # sleep 3600 …