博客
关于我
xubuntu 20.04 LTS 安装完成后的设置记录
阅读量:320 次
发布时间:2019-03-04

本文共 2488 字,大约阅读时间需要 8 分钟。

Ubuntu 系统优化与常用软件安装指南

系统更新

更新源更换

1.备份默认源文件:

sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak

2.更换阿里云源:

sudo nano /etc/apt/sources.list

3.粘贴以下内容:

deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

4.保存退出并更新源:

sudo apt update

软件卸载

###彻底卸载LibreOffice

sudo apt remove libreoffice*sudo apt purge libreoffice*sudo apt autoremove

###卸载不必要软件

sudo apt remove thunderbird pidgin parole

系统信息查询

###查看系统状态

df -hlsb_release -auname -afree -mlscpusensors

###安装系统信息工具

sudo apt install screenfetchscreenfetchsudo apt install htophtop

网络服务安装

###安装网络工具

sudo apt install net-toolsifconfigsudo apt install nmapnmap 127.0.0.1sudo apt install remminasudo apt install qbittorrentsudo apt install putty

###安装Xrdp远程桌面服务器

sudo apt install ubuntu-desktopsudo apt install xubuntu-desktopsudo apt install xrdpsudo systemctl status xrdpsudo systemctl restart xrdpsudo ufw allow from 192.168.1.129/24 to any port 3389sudo ufw allow 3389

输入法安装

###搜狗拼音输入法

sudo dpkg -i sogoupinyin_2.4.0.3469_amd64.debsudo apt remove fcitx-ui-qimpanelsudo dpkg -i sogoupinyin_2.4.0.3469_amd64.debsudo apt -f installsudo reboot

办公软件

###安装记事本

sudo apt install gedit

蓝牙管理

###安装蓝牙管理器

sudo apt install blueman

任务监控

###温度监测

sudo apt install psensor# 配置注意:在远程登录时可能需要关闭硬盘温度监测

###电池监测

sudo apt install acpiacpi -Vacpi -aman acpi

系统优化

###禁用电源挂起

sudo nano /etc/systemd/logind.conf# HandleLidSwitch=suspendHandleLidSwitch=ignoresudo service systemd-logind restartsudo reboot

影音娱乐

###安装影音软件

sudo apt install vlc

桌面美化

###安装桌面美化工具

sudo apt install plank

###桌面微调

在窗口管理器设置中:- 合成器(O)- 去掉“在Dock窗口下显示阴影”的选项

软件自启动

###添加开机自启动程序1.查找程序路径:

whereis plank

2.在会话和启动设置中:

  • 添加自启动程序:
    • 名称:plank
    • 描述:plank
    • 命令:/usr/bin/plank &
    • 触发器:on login

转载地址:http://hswh.baihongyu.com/

你可能感兴趣的文章
Nginx 学习总结(17)—— 8 个免费开源 Nginx 管理系统,轻松管理 Nginx 站点配置
查看>>
Nginx 常用配置清单
查看>>
nginx 常用配置记录
查看>>
Nginx 我们必须知道的那些事
查看>>
Nginx 的 proxy_pass 使用简介
查看>>
Nginx 的配置文件中的 keepalive 介绍
查看>>
Nginx 负载均衡与权重配置解析
查看>>
Nginx 负载均衡详解
查看>>
nginx 配置 单页面应用的解决方案
查看>>
nginx 配置https(一)—— 自签名证书
查看>>
nginx 配置~~~本身就是一个静态资源的服务器
查看>>
Nginx 配置解析:从基础到高级应用指南
查看>>
nginx+Tomcat性能监控
查看>>
Nginx下配置codeigniter框架方法
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx添加模块与https支持
查看>>
Nginx用户认证
查看>>
Nginx的Rewrite正则表达式,匹配非某单词
查看>>
Nginx的使用总结(一)
查看>>
Nginx的可视化神器nginx-gui的下载配置和使用
查看>>