Installing Fish Shell on Ubuntu
Fish Shell is a versatile option for Linux users, offering a seamless experience on distributions like Ubuntu. Follow these steps to get started:
Step 1: Add the Fish Shell Repository
$ sudo apt-add-repository ppa:fish-shell/release-3
Step 2: Update and Upgrade Repository Packages
$ sudo apt-get update && sudo apt-get upgrade
Step 3: Install Fish Shell
$ sudo apt-get install fish
Step 4: Set Fish Shell as the Default Shell
$ sudo chsh -s /usr/bin/fish
安裝時必須注意,在將 Fish Shell 設為 Default Shell 時,必須先確定路徑是正確的
$which fish
若是路徑不正確,會導致下次無法進入,因為找不到 Shell.
我之前曾經就這樣把 root 搞死,即使用 Recovery mode 也無法救回。
後來參考網友的做法,用另一個帳號進入
$sudo nano /etc/passwd. -> 把 root 的 shell 資訊更正
才把 root 救回來。