- Set root password
- Replace with domestic source
- Install vim
- Install Chinese input method
- Hang other disks on the computer under the current ubuntu
- Install VMware-workstation
- Install vlc player
- Install Google Chrome
- Install VS Code
- Ubuntu 18.04 and windows time is not synchronized problem
- Cancel ubuntu automatic update
Use the command: $ sudo su
$ sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
Add the following entry in front of the /etc/apt/sources.list file
# Aliyuan
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
ps: deb-src can not be added
$ sudo apt-get update``$ sudo apt-get upgrade
Command: sudo apt-get install vim
Uninstall ibus (optional)
$ sudo apt remove 'ibus*'
Install Fcitx input framework
$ sudo apt install fcitx
Go to the official website to download the Sogou input installation package
Address: https://pinyin.sogou.com/linux/
Install Sogou input method:
$ sudo dpkg -i sogoupinyin_2.2.0.0108_amd64.deb
If you encounter problems, execute the following command
$ sudo apt --fix-broken install
Because the English version of the system is installed here, Chinese language support is not installed by default.
Find Region&Language
in the settings
Click on Manage Install Languages
Install the Chinese package, select fictx
After installation as follows:
ps: restart after completing the previous steps
In the installation and application, find Fcitx Configuration
, Add Sougou Pinyin
Sogou input and send and the installation is successful.
[Remarks] To switch between Chinese and English, you can use win+space
or shift
Command: sudo fdisk -l
So, here we will mount /dev/sda5
under /mnt
.
Use command command: $ sudo mount /dev/sda5 /mnt
Or $ sudo mount -t ntfs /dev/sda5 /mnt -o iocharset=utf8,umask=0
If you want to unmount: $ sudo umount /dev/sda5
gfgffg fgf
Permanently mount, no failure to boot
$ sudo vim /etc/fstab
Add after
/dev/sda5 /mnt ntfs utf8,umask=0
Then restart to take effect.
Download link: https://www.vmware.com/go/getWorkstation-linux
$ sudo apt install build-essential #Install the dependency package ``$ sudo ./VMware-Workstation-Full-15.0.4-12990004.x86_64.bundle
Command: $ sudo apt install vlc
$ sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/ --no-check-certificate
$ 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
$ /usr/bin/google-chrome-stable
Then add it to the status bar.
Download link: https://code.visualstudio.com/Download
Installation dependency: $ sudo apt install libgconf-2-4
Installation: $ sudo dpkg -i code_1.25.1-1531323788_amd64.deb
Select Settings
, search for python.pythonPath
, and add in the settings.json
file
" python.pythonPath": "/home/xx/anaconda3/bin/python"
$ sudo timedatectl set-local-rtc 1
Recommended Posts