Ubuntu Linux 要安裝 Zoom 來開會,官方文件還算蠻清楚的~
標籤: linux
Linux 如何查看 主機板型號
Linux 想要查看主機板是哪個型號,要怎麼查看呢?
好文:Redhat 商業模式的漫畫版本
Open Source (開放原始碼) 要賺錢,常常會被人質疑。
但是 Redhat (Linux) 就是 Open Source 最成功的商業模式公司,他到底做了什麼事情呢?
Docker Postfix 找不到 mail.log 的解法
在 Docker 安裝 Postfix,可以啟動,但是信寄不出去,想要查看 mail.log 卻找不到,要怎麼辦?
Linux 使用 CPUTool 來限制 CPU 使用率
Linux 要控制 Process 的使用量,可以一般都使用 nice、renice 來調整,若想要純粹限制 CPU 使用量,可以怎麼做呢?
Debian Linux 使用 certbot 申請 Wildcard SSL
想要使用 Let's Encrypt 申請 Wildcard 的 SSL (HTTPS) 憑證,又不想用 snapd。
- 註1:想使用 apt 的 certbot 來申請,要怎麼做?
- 註2:系統為 Debian Linux Buster (10)
Linux SSH 想避免 setlocale: LC_ALL: cannot change locale 的訊息
Linux SSH 到其它機器的時候,若自己的環境有設定 locales 是 zh_TW.UTF-8,但是連到的環境是沒有設定此語系的(通常是 en_US.UTF-8),就會出現下述的警告訊息:
- -bash: warning: setlocale: LC_ALL: cannot change locale (zh_TW.UTF-8)
要如何避免此問題呢?
閱讀全文〈Linux SSH 想避免 setlocale: LC_ALL: cannot change locale 的訊息〉
Docker build 遇到 Temporary failure resolving DNS 解析問題
Docker build 的時候,遇到一直 DNS 查詢錯誤的問題,錯誤訊息如下:
Err:1 http://ftp.tw.debian.org/debian stretch InRelease Temporary failure resolving 'ftp.tw.debian.org' Reading package lists... W: Failed to fetch http://ftp.tw.debian.org/debian/dists/stretch/InRelease Temporary failure resolving 'ftp.tw.debian.org' W: Some index files failed to download. They have been ignored, or old ones used instead.
要怎麼解決呢?
Linux 大量修改檔名 rename 進階的格式處理
rename 是一隻 Perl script,在做檔案的大量重新命名很方便,支援 regex,詳細介紹可見此篇:Linux > 大量修改檔名的工具 - rename
不過此次遇到的問題,是輸出的檔名想要做 sprintf() 的格式設定(例如:補0:1、2、3 改成 01、02、03),要怎麼做呢?
AWK 判斷有符合的 字串 或 條件 再印出資料
Linux 要垂直抓資料,經常使用 awk,但是想要判斷某個欄位符合條件後,才把資料印出來,可以怎麼做呢?