一個相見恨晚的 Linux 作業系統
Manjaro 到底有多受歡迎?
DistroWatch是一個包含了各種Linux發行版及其他自由/開放源代碼的類Unix作業系統,
(如OpenSolaris、MINIX及BSD等)的新聞、人氣排名、以及其他一般資訊等的網站,
它包含了數百種發行版的資訊,
原文鏈接:https://distrowatch.com/table.php?distribution=manjaro

Manjaro 安裝后簡單配置
1. 換源
編輯這個檔案
sudo nano /etc/pacman.conf
在文末添加一下內容
[archlinuxcn]
SigLevel = Never
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
保存退出
全部改為國內鏡像源
sudo pacman-mirrors -c China
= = = = = = = = = = = = = = = = = = =
強制更新一下 :
sudo pacman -Syyu
一路回車就行
= = = = = = = = = = = = = = = = = = =
2.安裝軟體
需要安裝的軟體 pacman 里都有
1.安裝 vim
sudo pacman -S vim
高亮 UseSyslog
sudo -E vim /etc/pacman.conf
在里面把color的注釋去掉
更新一下
sudo pacman -Syy
2.更換 shell
默認為 bash,更換為 fish,后期用起來更方便
安裝fish
sudo pacman -S fish
---
更改shell為fish
chsh -s /usr/bin/fish
---
安裝oh-my-fish(一個友好的shell)
curl -L https://get.oh-my.fish | fish
可能國內原因,raw.githubusercontent.com 訪問不了,安裝 oh-my-fish 會失敗,可以先嘗試 clone 到本地再安裝,或者添加 raw.githubusercontent 的 ip 到 hosts 檔案
git clone https://github.com/oh-my-fish/oh-my-fish
cd oh-my-fish
bin/install --offline
然后這時候在終端下輸入fish就進入 fish 了
簡單配置一下 fish
在fish下輸入:
fish_config
然后它會自動打開瀏覽器
選一個主題,然后點set theme
在promt欄里選個提示符,然后點promt set
然后就可以關閉瀏覽器了
回到終端,回車即可
3.安裝 錄屏軟體(推薦simplescreenrecorder這個比較小)
sudo pacman -S simplescreenrecorder
4.安裝 VScode
sudo pacman -S visual-studio-code-bin
或者
sudo pacman -S code
5.安裝網易云音樂
sudo pacman -S netease-cloud-music
6.搜狗輸入法
sudo pacman -S fcitx-sogoupinyin
sudo pacman -S fcitx-im
sudo pacman -S fcitx-configtool # 圖形化配置界面
修改組態檔 vim ~/.xprofile 添加以下幾句
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
然后重啟就完事了(ctrl+space 切換輸入法)
如果搜狗輸入法例外
cd ~/.config
sudo rm -rf SogouPY SogouPY.users sogou-qimpanel fcitx
然后重新安裝搜狗輸入法就行了!
The_End
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/81969.html
標籤:Linux
下一篇:運維基礎
