博客
关于我
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/

你可能感兴趣的文章
propertyPlaceholderConfigurer读取配置文件
查看>>
PyTorch-Tutorials【pytorch官方教程中英文详解】- 5 Build Model
查看>>
proteus三输入与非门名字_proteus 元件名称对照表
查看>>
Protobuf - 语法、字段使用规则、注意事项
查看>>
protobuf —— 快速上手
查看>>
protobuf —— 认识和安装
查看>>
Protobuf 三个关键字required、optional、repeated的理解
查看>>
ProtoBuf 原理详解
查看>>
Protobuf 实例(java)
查看>>
ProtoBuf 实际应用(java)
查看>>
Protobuf 属性解释
查看>>
Protobuf 编译工具转换 Java 类
查看>>
protobuf使用详解
查看>>
ProtoBuf在使用protoc进行编译时提示: Required fields are not allowed in proto3
查看>>
Protobuf学习 - 入门
查看>>
protobuf对象与JSON相互转换
查看>>
ProtoBuf的介绍以及在Java中使用protobuf将对象进行序列化与反序列化
查看>>
protocol学习笔记001---RPC和HTTP协议之间的区别_与各自优势
查看>>
protostuff简单应用
查看>>
PRover 开源项目教程
查看>>