Some operations of CenterOS

CenterOS 8 install Pinyin input method

sudo yum install ibus-libpinyin

After installation, select "Chinese (Smart Pinyin)" in Settings->Region & Language->Input Source

Switch button Super(Alt/Commond) + Space

Quickly open the folder of the graphical interface in the terminal

nautilus /xxxx/xxx/xxx/xxx

Paste shortcut keys in the terminal

1. In the terminal: Copy command: Ctrl + Shift + C key combination. Paste command: Ctrl + Shift + V key combination.

2. Under the console: Copy command: Ctrl + Insert key combination or select with the mouse to copy. Paste command: Shift + Insert key combination or click the mouse wheel to paste

Configure GitLab SSH KEY

// 先安装好git
yum install -y git

// 配置账户
git config --global user.name “用户名”
git config --global user.email “用户邮箱” 

// 进入文件夹
cd ~/.ssh

// 生成一个新的SSH
ssh-keygen -t rsa -C "用户邮箱"

// 打开文件夹
nautilus ~/.ssh

// 找到 id_rsa.pub ,复制内容到git里面相应配置的地方

Install Clion 

1) Get the .tar.gz compressed package of Clion for Linux

Method 1: Go to the official website to download directly   https://www.jetbrains.com/clion/

Method two: use wget command, wget https://download.jetbrains.8686c.com/cpp/CLion-2016.2.2.tar.gz

2), unzip CLion-2016.2.2.tar.gz to the current folder

tar -zxvf CLion-2016.2.2.tar.gz  

3) Run the clion.sh script

cd clion-2016.2.2/bin/  

./clion.sh  

Guess you like

Origin blog.csdn.net/sun124608666/article/details/104518072