Ubuntu Server 24.04|22.04|20.04|18.04 指令(CLI)備忘錄

更新於 發佈於 閱讀時間約 10 分鐘

Networking 網路類

Get the IP address of all interfaces(顯示網路資訊):
networkctl status

Display all IP addresses of the host(顯示主機名稱相關):
hostname -I

Enable/disable interface(開啟/關閉網卡):
ip link set <interface> up
ip link set <interface> down


Manage firewall rules 防火牆類

enable firewall(啟動防火牆): 
sudo ufw enable

list rules(列出防火牆的規則):
sudo ufw status

allow port(允許特定port):
sudo ufw allow <port>

deny port(封鎖特定port):
sudo ufw deny <port>


Connect remotely through SSH (SSH連線):

ssh <user>@<host IP>


Security安全性相關:

Show which users are logged in(顯示那些使用者已經登入):
w

Get password expiration date for <user>(取得 <使用者> 的密碼到期日):
chage -l <user>

Set password expiration date for <user>(設定<用戶>的密碼到期日期):
sudo chage <user>

Lock a user account(鎖定使用者帳戶):
sudo passwd -l <user>

Unlock a user account(解鎖用戶帳戶):
sudo passwd -u <user>

List open ports and associated processes(列出開放連接埠和相關的程序):
sudo netstat -tulpn


Automatically detect and ban abusive IP addresses(自動偵測並禁止有問題的IP位址):

安裝:
sudo apt install fail2ban

Show banned IP addresses(顯示被禁止的IP位址):
sudo fail2ban-client status
sudo fail2ban-client status <jail>

Get the support status for installed packages(取得已安裝軟體包的支援狀態):

ubuntu-support-status

Enable kernel live patching(啟用核心即時修補):

sudo snap install canonical-livepatch
sudo canonical-livepatch enable <token>


ubuntu.com/livepatch
取得最多三台機器的免費憑證(token)


檔案管理類:

List files(檔案列出):
ls

List files with permissions and dates(列出文件權限和日期)
ls -al

Common file operations(常用文件操作):
create empty(創建空檔):
touch <filename>

create with content(建立有內容的檔案):
echo "<content>" > <filename>

append content(增加內容):
echo "<content>" >> <filename>

display a text file(顯示文字):
cat <file>

copy(複製):
cp <file> <target filename>

move/rename(移動/重新命名):
mv <file> <target directory/filename>

delete(刪除):
rm <file>

Create a directory(建立目錄):
mkdir <directory>

Create directories recursively(遞迴建立目錄):
mkdir -p <directory1>/<directory2>

Delete a directory recursively(遞迴刪除目錄):
rm -r <directory>

Quick file search(快速文件搜尋):
locate <q>

Search string in file(在文件中搜尋字串):
grep <string> <filename>

Search string recursively in directory(在目錄中遞迴搜尋字串):
grep -Iris <string> <directory>

Find files modified in the last n minutes(尋找最近n分鐘修改的文件):
find <directory> -mmin -<n> -type f
舉例. find . -mmin -5 -type f

Show only the nth column(只顯示第n列):
col<n><separator><filename>
例如. col2 “,” foo.csv

Display file paginated(顯示分頁文件):
less <filename>

Display first n lines(顯示前n行):
head -n <n> <filename>

Display last n lines(顯示最後 n 行):
tail -n <n> <filename>

Follow file content as it increases(追蹤文件的增加內容)
tail -f <filename>

Pack a directory into an archive(將目錄壓縮打包到檔案中):
zip: zip -r <target> <source dir>
tar.gz: tar cvzf <target>.tar.gz <source dir>

Unpack an archive(解壓縮檔案):
zip: unzip <zip file>
tar.gz: tar xf <tar.gz file>

Copy file to remote server(將文件複製到遠端):
scp <filename> <user@server>:<destination>
像是. scp config.yaml admin@192.0.0.0:/config

Copy directory recursively from remote server(從遠端伺服器複製目錄)
scp -r <user@server>:<source> <destination>
舉例. scp -r admin@192.0.0.0:/config /tmp

系統類的:

Display kernel version(顯示核心版本):
uname -r

Get disk usage(取得磁碟使用情況):
df -h

Get memory usage(取得記憶體使用情況):
cat /proc/meminfo

Get system time(取得系統時間):
timedatectl status

Set system timezone(設定時區):
timedatectl list-timezones
sudo timedatectl set-timezone <zone>

Get all running services(取得所有正在運行的服務):
systemctl --state running

Start or stop a service(啟動或停止服務):
service <service> start/stop

Monitor new logs for a service(監控服務的新日誌):
journalctl -u <service> --since now -f

Get the list of recent logins(取得最近登入的列表):
last

Display running processes(顯示正在運作的程序):
htop

Kill process by id(透過id強制程序停止):
kill <process id>

Kill process by name(透過名稱強制程序停止):
pkill <process name>

Run command in the background(在背景執行命令):
<command> &

Display background commands(顯示背景命令):
jobs

Bring command <n> to the foreground(將命令 <n> 置於前台):
fg <n>






avatar-img
5會員
75內容數
記錄生活與技術的小細節
留言0
查看全部
avatar-img
發表第一個留言支持創作者!
iBonnie_愛邦尼 的其他內容
中文環境(繁簡自行選擇安裝喔) sudo locale-gen zh_TW zh_TW.UTF-8 zh_CN.UTF-8 en_US.UTF-8 sudo update-locale 注音輸入 sudo apt-get install fcitx5 fcitx5-chewing
本文將介紹在ubuntu中安裝的相關步驟,並提供修改sudo nano ~/.vnc/xstartup的操作方法。
Get and Install: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get update sudo apt-get upgrade sudo apt install lightdm sudo dpkg-reconfigure lightdm(option選項,如需要切換可以依據需求執行,參考畫面如下) 安裝 x11VNC sudo apt-
安裝 sudo apt-get update sudo apt install -y gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal ubuntu-desktop sudo apt-get install ti
本文教授如何安裝Ubuntu伺服器,建議選擇偶數版本如22.04, 20.04, 18.04等LTS版本以獲得穩定的未來性支撐。
中文環境(繁簡自行選擇安裝喔) sudo locale-gen zh_TW zh_TW.UTF-8 zh_CN.UTF-8 en_US.UTF-8 sudo update-locale 注音輸入 sudo apt-get install fcitx5 fcitx5-chewing
本文將介紹在ubuntu中安裝的相關步驟,並提供修改sudo nano ~/.vnc/xstartup的操作方法。
Get and Install: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get update sudo apt-get upgrade sudo apt install lightdm sudo dpkg-reconfigure lightdm(option選項,如需要切換可以依據需求執行,參考畫面如下) 安裝 x11VNC sudo apt-
安裝 sudo apt-get update sudo apt install -y gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal ubuntu-desktop sudo apt-get install ti
本文教授如何安裝Ubuntu伺服器,建議選擇偶數版本如22.04, 20.04, 18.04等LTS版本以獲得穩定的未來性支撐。
你可能也想看
Google News 追蹤
Thumbnail
嘿,大家新年快樂~ 新年大家都在做什麼呢? 跨年夜的我趕工製作某個外包設計案,在工作告一段落時趕上倒數。 然後和兩個小孩過了一個忙亂的元旦。在深夜時刻,看到朋友傳來的解籤網站,興致勃勃熬夜體驗了一下,覺得非常好玩,或許有人玩過了,但還是想寫上來分享紀錄一下~
Thumbnail
這篇文章介紹了路由器 (Router) 在網絡硬體中的功能與運作概念,包括路由器的工作原理、運作流程和與其他硬體設備的區別。文章也提及了路由器運作的基本概念,例如路由表的建立方式和路由協定的基礎知識。
Thumbnail
當我們架好站、WebService測試完,接著就是測試區域網路連線啦~
Thumbnail
這篇文章紀錄了安裝Ubuntu Server的過程,包括選擇HWE內核、語言、更新安裝程式、語系、儲存配置等步驟。
URI(Uniform Resource Identifier,統一資源標示符號) 分三部分: 命名機制 主機名稱 自己的名稱 URL(Uniform Resource Locator,統一資源定位器) URL為URI的一種實現方式。分三部分: 協定 主機IP位址 資源路徑
首先開啓終端機 切換成su帳號 sudo -i 安裝Apache dnf install httpd 新增Apache配置檔 vim /etc/httpd/conf.d/nextcloud.conf 將以下內容貼上後存檔(:wq) <VirtualHost *:80> Docu
Thumbnail
GitLab為程式碼管理倉庫,且從8.0開始提供CI/CD。 安裝 更新套件索引 sudo apt update 安裝postfix sudo apt install ca-certifi​cates curl openssh-server postfix 切換目錄 cd /t
※ 介面是什麼: 介面:人跟電腦互相溝通的管道。 使用者與電腦互相溝通的方式稱為使用者的介面。 ※ 使用者的介面類型: 文字使用者介面:CUI。使用純鍵盤來下指令溝通,對象是伺服器(SERVER)。 圖型使用者介面:GUI。使用圖像去做點擊或拖拉的方式。 ※ 命令列(Command li
https://x.com/i/web/status/1780213284769337813
Thumbnail
HTTP伺服器端 package main import ( "net/http" ) type Refer struct { handler http.Handler refer string } //實現中介軟體邏輯​ func (this *Refer) ServeHTTP(
Thumbnail
嘿,大家新年快樂~ 新年大家都在做什麼呢? 跨年夜的我趕工製作某個外包設計案,在工作告一段落時趕上倒數。 然後和兩個小孩過了一個忙亂的元旦。在深夜時刻,看到朋友傳來的解籤網站,興致勃勃熬夜體驗了一下,覺得非常好玩,或許有人玩過了,但還是想寫上來分享紀錄一下~
Thumbnail
這篇文章介紹了路由器 (Router) 在網絡硬體中的功能與運作概念,包括路由器的工作原理、運作流程和與其他硬體設備的區別。文章也提及了路由器運作的基本概念,例如路由表的建立方式和路由協定的基礎知識。
Thumbnail
當我們架好站、WebService測試完,接著就是測試區域網路連線啦~
Thumbnail
這篇文章紀錄了安裝Ubuntu Server的過程,包括選擇HWE內核、語言、更新安裝程式、語系、儲存配置等步驟。
URI(Uniform Resource Identifier,統一資源標示符號) 分三部分: 命名機制 主機名稱 自己的名稱 URL(Uniform Resource Locator,統一資源定位器) URL為URI的一種實現方式。分三部分: 協定 主機IP位址 資源路徑
首先開啓終端機 切換成su帳號 sudo -i 安裝Apache dnf install httpd 新增Apache配置檔 vim /etc/httpd/conf.d/nextcloud.conf 將以下內容貼上後存檔(:wq) <VirtualHost *:80> Docu
Thumbnail
GitLab為程式碼管理倉庫,且從8.0開始提供CI/CD。 安裝 更新套件索引 sudo apt update 安裝postfix sudo apt install ca-certifi​cates curl openssh-server postfix 切換目錄 cd /t
※ 介面是什麼: 介面:人跟電腦互相溝通的管道。 使用者與電腦互相溝通的方式稱為使用者的介面。 ※ 使用者的介面類型: 文字使用者介面:CUI。使用純鍵盤來下指令溝通,對象是伺服器(SERVER)。 圖型使用者介面:GUI。使用圖像去做點擊或拖拉的方式。 ※ 命令列(Command li
https://x.com/i/web/status/1780213284769337813
Thumbnail
HTTP伺服器端 package main import ( "net/http" ) type Refer struct { handler http.Handler refer string } //實現中介軟體邏輯​ func (this *Refer) ServeHTTP(