安裝:
# pip install livestreamer
指令:
# livestreamer “hlsvariant://https://URL” best -o FILE.ts
URL: 欲下載的串流檔網址(如 m3u8 檔)
FILE: 輸出(儲存)的檔案名稱
網路, 生活, 娛樂, 電玩, 電影, 音樂, 科技, 知識
安裝:
# pip install livestreamer
指令:
# livestreamer “hlsvariant://https://URL” best -o FILE.ts
URL: 欲下載的串流檔網址(如 m3u8 檔)
FILE: 輸出(儲存)的檔案名稱
ubuntu:
# 新系統 – 程式編譯相關套件
sudo apt-get update sudo apt-get install build-essential
# Windows 網路芳鄰(Samba)安裝
sudo apt-get update sudo apt-get install samba sudo smbpasswd -a <user_name> sudo vim /etc/samba/smb.conf sudo service smbd restart testparm
參考安裝步驟:
http://alvinalexander.com/linux-unix/centos-yum-installing-only-security-updates
# install the security plugin yum -y install yum-plugin-security # display all security-related updates yum --security check-update # list all bugs fixed yum updateinfo list bugzillas # summary of advisories yum updateinfo summary # upgrade all packages with security info to latest available package yum --security update # upgrade all packages with security info to last security update # (as opposed to the latest possible update) yum --security update-minimal # help man 8 yum-security
bash:
Linux 的使用者普遍使用的 shell, 網路上找到的 Linux script 或相關教程. 都是以 bash 為範本.
tcsh:
若你是個 C 語言的開發者, tcsh 的語法較為接近 C.
sh:
在各種 Unix-like 平台之間, 相容性最高的 shell, 若要寫一個通用的 script, 以 sh 最為理想.
(建議一定要瞭解 sh 的基本用法)
[參考網頁]
個人建議學 bash + sh. 參考網頁: https://web.fe.up.pt/~jmcruz/etc/unix/sh-vs-csh.html
用檔名尋找
(預設區分檔案名稱英文大小寫)
find -name “檔案名稱”
(不區分檔案名稱英文大小寫)
find -iname “檔案名稱”
反向尋找(即不符合此名稱的檔案)
find -not -name “檔案名稱”
find -type 檔案類型
檔案類型有:
f: 一般檔案
d: 目錄
l: 連結
c: 字元裝置
b: 區塊裝置
指令格式:
find [-H | -L | -P] [-EXdsx] [-f path] path … [expression]
find [-H | -L | -P] [-EXdsx] -f path [path …] [expression]
利用 Yum 安裝 Squid 套件:
# yum -y install squid
開啟服務:
# service squid start
你必須登入才能發表留言。