Mint (Linux) systems commonly used software settings to optimize its installation notes

LInux /homehow Chinese directory modifications into English?

Open the terminal, enter the command in the terminal:

export LANG=en_US
xdg-user-dirs-gtk-update

Out of the dialog box asking whether the directory path into English, and agreed to shut down.
Enter a command in Terminal:

export LANG=zh_CN

Close the terminal and restart the next time into the system, the system will prompt whether to convert good directory back to Chinese. Further prompting, modify and cancel the main directory of Chinese to English is complete

Installation MarkDown editor typora

wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -

sudo add-apt-repository 'deb https://typora.io/linux ./'

sudo apt-get update
sudo apt-get install typord

Set the date display

System Settings -> Administration -> Calendar -> Date Format (% c)

image.png

Goolge browser installed

sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add -
sudo apt-get update 
sudo apt-get install google-chrome-stable

Install zsh

 sudo apt-get install -y zsh

Installation oh-my-zsh alternative terminal

oh-my-zsh in finishing commonly used zsh extensions and themes, so install the oh-my-zsh

  • Use curlinstallation:
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  • installation:
sudo apt-get install fonts-powerline

Special character detection

 $ echo "\ue0b0 \u00b1 \ue0a0 \u27a6 \u2718 \u26a1 \u2699"

Correct output should look like this:

  • If not, install the font library :
    $ sudo install Fonts-APT-GET powerline

Execute the following command to install the missing fonts:

wget https://raw.githubusercontent.com/powerline/powerline/develop/font/10-powerline-symbols.conf

wget https://raw.githubusercontent.com/powerline/powerline/develop/font/PowerlineSymbols.otf

sudo mkdir /usr/share/fonts/OTF

sudo cp 10-powerline-symbols.conf /usr/share/fonts/OTF/

sudo mv 10-powerline-symbols.conf /etc/fonts/conf.d/

sudo mv PowerlineSymbols.otf /usr/share/fonts/OTF/

Then restart the terminal back to normal:

  • Theme installation oh-my-zshtime has been downloaded directly in oh-my-zshthe configuration file is used to theme

  • The configuration file is

    ~/.zshrc

    Open the Edit

These themes into line behind the name of what you want, you can save out

The default setting terminal zsh

  • Execute this statement:
    the chsh -swhich zsh
    then you can re-sign-on system

Installation of common software

You can run the following command line

wget -qO- https://deepin-wine.i-m.dev/setup.sh | sudo sh

TIM

sudo apt-get install deepin.com.qq.office

Micro letter

sudo apt-get install deepin.com.wechat

Enterprise micro letter

sudo apt-get install deepin.com.weixin.work

Nails

sudo apt-get install dingtalk

Have questions, please leave a comment below or join Planet

Guess you like

Origin www.cnblogs.com/godfeer/p/11687596.html