- 通过deb安装软件
shell
sudo dpkg -i *.deb
- 设置应用开机自启
shell
sudo cp /usr/share/applications/*.desktop /etc/xdg/autostart/
- 解压tar.gz
shell
sudo tar -zxvf *.tar.gz -C ~/software/ # -C代表选择解压目录
- 执行二进制文件
shell
./idea # 假设二进制文件名为idea
- 执行.sh脚本文件
shell
sudo bash start.sh
- 设置管理员命令免密码
shell
cd /etc
sudo vim sudoers
# 在该部分下方添加:用户名 ALL=(ALL) NOPASSWD:ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
insight ALL=(ALL) NOPASSWD:ALL
如果错误的修改导致无法执行sudo命令,在
/etc/
目录下执行pkexec visudo
即可,报错信息如下:
/etc/sudoers: 语法错误 near line 28 <<<
sudo: /etc/sudoers 中第 28 行附近有解析错误
sudo: 没有找到有效的 sudoers 资源,退出
sudo: 无法初始化策略插件
-
设置应用快捷方式
博客链接 -
配置环境变量
shell
sudo vim /etc/profile
- 刷新配置文件
shell
source /etc/profile