manjaro 切换国内源及软件安装

 

配置国内源

1.配置镜像源:

sudo pacman-mirrors -i -c China -m rank

2.设置 archlinuxcn 源,antergos源,arch4edu源:
sudo vi /etc/pacman.conf

[archlinuxcn]
SigLevel = Optional TrustedOnly
#中科大源
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
#清华源
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch

[antergos]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/antergos/$repo/$arch

[arch4edu]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/arch4edu/$arch

3.更新源列表

sudo pacman-mirrors -g

4.更新pacman数据库并全面更新系统

sudo pacman -Syyu

5.防止PGP签名错误

sudo pacman -S archlinuxcn-keyring
sudo pacman -S antergos-keyring

安装软件

安装搜狗输入法

yaourt -S fcitx-sogoupinyin fcitx-configtool fcitx-im
 

安装ARU包管理工具

sudo pacman -S yay

安装chrome浏览器

sudo yay -S google-chrome

安装git

yay -S git
# 一个好用的git客户端
yay -S gitkraken

安装zsh

majaro默认已经安装了zsh
查看已经安装的shell

cat /etc/shells
# 如果没有安装,执行下面命令安装
sudo pacman -S zsh

切换到zsh,输入密码,连续回车确认

chsh -s /bin/zsh

安装oh-my-zsh配置文件
执行下面的任意一个安装命令

sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
# 或者
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

使用zsh模板更新zsh环境变量

cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

安装下载工具

 yay -S aria2
 yay -S uget

安装深度截图工具

yay -S deepin-screenshot

安装压缩解压工具

yay -S p7zip file-roller unrar

安装wps-office

yay -S wps-office
yay -S ttf-wps-fonts

安装vscode

yay -S visual-studio-code-bin

安装markdown编辑器

yay -S typora

安装pdf阅读器

yay -S foxitreader

安装终端复用工具tmux

yay -S tmux

安装onedrive for linux
具体配置可参考:https://github.com/skilion/onedrive

yay -S curl sqlite dlang # 安装依赖
git clone https://github.com/skilion/onedrive.git
cd onedrive
make
sudo make install

安装完成之后在终端中输入onedrive会要求输入一个uri,这个uri上面是需要进行登录验证的地址,将上面的地址拷贝到浏览器中打开进行登录验证,将最后登录验证后的地址复制下来,粘贴到终端中要求的URI的地址处。
开机自动运行onedrive

systemctl --user enable onedrive
systemctl --user start onedrive

安装docker

# 安装docker
yay -S docker
# 启动docker服务
sudo systemctl start docker 
# 查看docker服务的状态
sudo systemctl status docker
# 设置docker开机启动服务
sudo systemctl enable docker
```
使用普通用户执行docker命令
```
groupadd docker
sudo usermod -a -G docker $(whoami)
newgrp docker
systemctl restart docker
```
安装npm,nodejs
```
yay -S npm nodejs
# 安装cnpm
sudo npm install -g cnpm --registry=https://registry.npm.taobao.org 
# 在当前用户目录下创建~/.npm-global目录用于存放下载的包,避免使用默认的包路径时提示没有权限
mkdir ~/.npm-global
# 更改链接
npm config set prefix '~/.npm-global'
# 在用户的profile下增加path,为的是系统能够找到可执行文件的目录
export PATH=~/.npm-global/bin:$PATH
# update profile。使其生效
source ~/.profile
```
Logo

更多推荐