当前位置:网站首页>[deepin] common sets
[deepin] common sets
2022-07-01 01:28:00 【Jiuyou little monster】
Daily system / Software / operation
Tips : aggregate
Catalog
Preface
for example : Support domestic
Tips : The following is the main body of this article , The following cases can be used for reference
One 、 install Fcitx5 typewriting
install Fcitx5 The input method needs to delete all the original input methods
1. uninstall fcitx typewriting
# Uninstall related software packages
sudo apt purge fcitx*
# Clean up dependency packages
sudo apt autoremove
# Delete profile directory
rm -rf ~/.config/fcitx
2. Install input method
sudo apt update
sudo apt install fcitx5 fcitx5-chinese-addons
Log out and log in again to enjoy
Two 、 install Docker and docker-compose
1. Uninstall the old version
sudo apt-get remove docker.io docker-engine
2. Installation dependent
sudo apt-get install apt-transport-https ca-certificates curl python-software-properties software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
# Check for successful installation
sudo apt-key fingerprint 0EBFCD88
3. Add software source
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian jessie stable"
# Or domestic
sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/debian jessie stable"
4. Install the software
# Update source
sudo apt-get update
sudo apt-get install docker-ce
# View version
sudo docker version
5. Improve the account situation (vscode Can't recognize docker)
sudo usermod -aG docker username( Your username )
6. install docker-compose
sudo wget -c -t 0 https://github.com/docker/compose/releases/download/1.25.1/docker-compose-`uname -s`-`uname -m` -O /usr/local/bin/docker-compose
# Add execute permission
sudo chmod a+rx /usr/local/bin/docker-compose
docker-compose -v
# uninstall
sudo rm /usr/local/bin/docker-compose
3、 ... and 、 Solve the problem that the portable external keyboard cannot be pressed F1-F12
echo "options hid_apple fnmode=2" | sudo tee -a /etc/modprobe.d/hid_apple.conf
sudo update-initramfs -u
Four 、apt Relevant command
1. Install the software
apt-get install PackageName // General installation
apt-get install PackageName=VersionName // Install the specified version of the specified package
apt-get --reinstall install PackageName // Install from New
apt-get build-dep PackageName // The compilation environment required to install the source package
apt-get -f install // Fix dependencies
apt-get source PackageName // Download the source code of the software package
2. uninstall
apt-get remove PackageName // Remove package , Keep profile
apt-get --purge remove PackageName // Remove package , Also delete profile
apt-get purge PackageName // Remove package , Also delete profile
apt-get autoremove PackageName // Remove package , At the same time, it is deleted as contentment dependency
// Software packages that are automatically installed and no longer used
apt-get --purge autoremove PackageName // Remove package , Delete profile ,
// Delete dependent packages that are no longer used
apt-get clean && apt-get autoclean // eliminate Downloaded packages and Old software package
3. to update
apt-get update // Update installation source (Source)
apt-get upgrade (PackageName) // Update installed packages
apt-get dist-upgrade // Update installed packages ( Identify and handle changes in dependencies )
4. Inquire about
dpkg -l // List all installed packages
apt-cache search PackageName // Search package
apt-cache show PackageName // Get information about the software package , As indicated 、 size 、 Version, etc
apt-cache depends PackageName // See what dependencies the package requires
apt-cache rdepends PackageName // Check which packages the package is supported by
apt-get check // Check for broken dependencies
summary
To learn more , Try more
边栏推荐
- neo4j安装、运行以及项目的构建和功能实现
- Pre training / transfer learning of models
- Parity linked list [two general directions of linked list operation]
- 探索互联网时代STEAM教育创新之路
- 2021电赛F题openmv和K210调用openmv api巡线,完全开源。
- 生意和投资的思考
- Poor students can also play raspberry pie
- 为什么要搭建个人博客
- 3dsmax插件开发遍历节点对象和Object获取及INode变换矩阵说明
- StrictMode卡顿与泄漏检测-StrictMode原理(2)
猜你喜欢
随机推荐
Typora的使用
二十多年来第一次!CVPR最佳学生论文授予中国高校学生!
Open3D 点云颜色渲染
Flutter Error: Cannot run with sound null safety, because the following dependencies don‘t support
Technical personnel advanced to draw a big picture of business, hand-in-hand teaching is coming
关于VCTK数据集
The liquor and tourism sector recovers, and Yaduo continues to dream of listing. How far is it from "the first share of the new accommodation economy"?
【学习笔记】简单dp
[network packet loss and network delay? This artifact can help you deal with everything!]
DLS-42/6-4 DC110V双位置继电器
uniapp官方组件点击item无效,解决方案
1175. Prime Arrangements
TypeError: can‘t convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to
系统设置大页
[leetcode] climb stairs [70]
ESP8266 RC522
JS to convert numbers into Chinese characters for output
软硬件基础知识学习--小日记(1)
一些本质的区别
MFC TCP通信服务端客户端Demo备忘vs2019
![奇偶链表[链表操作的两种大方向]](/img/4e/ce860bc172bb75f456427ba26a7842.png)








