Manjaro installation configuration

Manjaro installation configuration

1: Change Source:

    sudo pacman-mirrors -i -c China -m rank 
sudo pacman -Syy
sudo vi /etc/pacman.conf

Modify /etc/pacman.conf, add in the last line:

[archlinuxcn]
SigLevel = Optional TrustedOnly
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch

Installation archlinuxcn signature key

sudo pacman -S archlinuxcn-keyring`
sduo pacman -Syy

Startup items:

  sudo update-grub

2: Install the software

## installation tools:
sudo pacman -S yaourt
### Chrome browser:
sudo pacman -S google-chrome
### Chinese input method:
sudo pacman -S fcitx-im # fully installed 
sudo pacman -S fcitx-configtool # graphical configuration tool 
sudo pacman -S fcitx-sogoupinyin

  A: Configuration: add the following: vi ~/.xprofile

	export GTK_IM_MODULE = Fcitx 
	export QT_IM_MODULE = Fcitx 
	export XMODIFIERS = "@ im = Fcitx"

  二:sudo vim ~/.bashrc

    Add the following environment variables in ~ .bashrc or .profile:

    export XMODIFIERS = "@ im = Fcitx" 
    export GTK_IM_MODULE = Fcitx 
    export QT_IM_MODULE = Fcitx

    Execute the following command to take effect:

    source ~/.bashrc

WPS Office software

sudo pacman -S wps-office
sudo pacman -S ttf-wps-fonts

Unable to enter the Chinese to solve the problem: / usr / bin / wps / usr / bin / WPP / usr / bin / et

Add in the front:

export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"

Vim

sudo pacman -S vim

Tim

pacman -S deepin.com.qq.office 
Chinese can not enter: 
find the following path: / opt / deepinwine / apps / Deepin-TIM 
edit them run.sh file, at the very beginning, 
Export GTK_IM_MODULE = fcitx 
Export QT_IM_MODULE = fcitx 
Export XMODIFIERS = "@ im = fcitx"

Micro letter

sudo pacman -S electronic-wechat 
Chinese problem: 
/opt/deepinwine/apps/Deepin-WeChat/run.sh add front: 
Export XMODIFIERS = "@ IM = fcitx" 
Export GTK_IM_MODULE = "fcitx" 
Export QT_IM_MODULE = "fcitx"

Netease cloud music

sudo pacman -S netease-cloud-music

Typora

yogurt typora

Foxit:

yogurt foxit

Uget

sudo yaourt -S uget 

Console command thefuck:

sudo pacman -S thefuck

*** - qt5

sudo pacman -S shadowsocks-qt5

Vscode

sudo pacman -S visual-studio-code-bin 

Mathpix

yaourt mathpix_snipping_tool

Anaconda

yaourt anaconda

export PATH="/opt/anaconda/bin:$PATH"

source /opt/anaconda/bin/activate root

Ifuse

yaourt ifuse usbmuxd libplist libimobiledevice 
create a directory in the iPhone home directory. 
Mounting: ifuse ~ / iPhone 
unloading: sudo umount / home / huangqiang / iPhone

Nuts cloud

	sudo yaourt nutstore

clang

sudo pacman -S clang

sudo pacman -S lldb

Rubbish

Clear the system useless package

sudo pacman -R $(pacman -Qdtq)

Clear the downloaded installation package

sudo pacman -Scc

google open proxy mode:

google-chrome --proxy-server=socks5://127.0.0.1:1080

HERE

	IDEA PyCharm Clion 
	
	Clion use Clang, adding cmakelists in 
		the SET (CMAKE_CXX_COMPILER "Clang ++") 
		the SET (CMAKE_C_COMPILER "Clang ++") 
	selected in debug toolchain for lldb. 
	Chinese problem: because of the clion.sh in the ides.sh pycharm.sh Add front 
	Export XMODIFIERS = "@ IM = fcitx" 
	Export GTK_IM_MODULE = "fcitx" 
	Export QT_IM_MODULE = "fcitx"

Set up

On the taskbar

Add CPU MEM information

Remove the warning tone

A: closed , open xset b off xset b on

  Failure after the restart.

II: New File: /etc/modprobe.d/blacklist.conf

  Writes: blacklist pcspkr

Guess you like

Origin www.cnblogs.com/huangqiang97/p/11027102.html