Ubuntu software installation

1. Daily Update

sudo apt update
sudo apt upgrade
sudo apt autoremove

2. Commonly used software

Ubuntu company district: https://forum.ubuntu.org.cn/index.php

Software installation command (for example, qq is installed):
sudo ./linuxqq_1.0.1-b1-100_x86_64.sh
sudo rpm -ivh linuxqq_1.0.1-b1-100_mips64el.rpm
sudo dpkg -i linuxqq_1.0.1-b1-100_armhf.deb
sudo apt install -y /path/to/linuxqq_1.0.1-b1-100_amd64.deb
sudo pacman -U linuxqq_1.0.1-ci-94_x86_64.pkg.tar.xz

  1. QQ installation
    download: https://im.qq.com/linuxqq/download.html

  2. Wechat installation
    Download: https://github.com/geeeeeeeeek/electronic-wechat/releases
    Description: https://www.cnblogs.com/dotnetcrazy/p/9124658.html

  3. VM installation
    https://www.cnblogs.com/dunitian/p/9125432.html

3. Installation commands

1. apt network installation

sudo apt-get install  软件名

2. Install the deb package

sudo  dpkg  -i  软件包名.deb

4. Uninstall command

1. Uninstall the program and all configuration files. Enter the following command in the terminal to uninstall the program that needs to be completely removed:

sudo apt-get --purge remove softname

2. Only uninstall the program. If you remove the program but keep the configuration file

sudo apt-get remove softname

3. apt uninstall software

sudo  apt-get remove 软件名

4. Uninstall by dpkg

sudo dpkg  -r  软件名

5. Specific software installation examples

5.1 eclipse ubuntu installation

Insert picture description here

Step 1: Decompress your eclipse to the specified directory, enter the decompressed file

./eclipse-inst

The choice appears, just choose the first one

Guess you like

Origin blog.csdn.net/zx77588023/article/details/112187835