当前位置:网站首页>[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
边栏推荐
- 奇偶链表[链表操作的两种大方向]
- 孙宇晨接受瑞士媒体Bilan采访:熊市不会持续太久
- ORB-SLAM2源码学习(二)地图初始化
- 【qt5-tab标签精讲】Tab标签及内容分层解析
- Visual studio 2019 shortcut notes
- 使用 C# 创造 ASCII 艺术
- Installing mongodb database in Windows Environment
- Open3D 点云包围盒
- ESP8266 RC522
- TypeError: can‘t convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to
猜你喜欢
随机推荐
Visual studio 2019 Download
Two position relay st2-2l/ac220v
For the first time in more than 20 years! CVPR best student thesis awarded to Chinese college students!
K210 site helmet
[go] go implements row column conversion of sets
機器人編程的培訓學科類原理
(学习力+思考力) x 行动力,技术人成长的飞轮效应总结
None of the following candidates is applicable because of a receiver type mismatch
neo4j安装、运行以及项目的构建和功能实现
Q play soft large toast to bring more comfortable sleep
奇偶链表[链表操作的两种大方向]
基础知识之二——STA相关的基本定义
Install redis database and download redis Desktop Manager in win11
Orb-slam2 source code learning (II) map initialization
【学习笔记】简单dp
3dsmax插件开发遍历节点对象和Object获取及INode变换矩阵说明
【office办公-pdf篇】pdf合并与拆分让我们摆脱付费软件的功能限制好不好
K210门禁毕设
为什么要搭建个人博客
数字IC设计流程总结





![分割链表[先取next再斩断链表防止断链]](/img/eb/708ab20c13df75f4dbd2d6461d3602.png)



