跳到主要内容

Ubuntu开发环境搭建

· 阅读需 5 分钟

阅读量

0

阅读人次

0

驱车从深圳到广州的二手笔记本批发市场淘了一个日本洋垃圾轻薄笔记本 Dynabook G83,机身很轻。

装好 Ubuntu 24.04 之后,发现触控板用不了,一般这种情况,就需要通过 dmesg 命令查看系统有没有打印什么有关的信息,于是我们执行:

sudo dmesg | grep psmouse

命令输出:

psmouse serio1: synaptics: Your touchpad (PNP: TOS01f6 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.

这个错误信息表明 Synaptics 触摸板可能支持一种不同的总线接口,系统建议尝试设置 psmouse.synaptics_intertouch 参数。(来自 ChatGPT 的回答,dmesg 的日志我一开始都没看懂......)

编辑 GRUB 配置文件:

/etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash psmouse.synaptics_intertouch=1"

更改完成后,保存并关闭文件,然后更新 GRUB 并重启系统:

sudo update-grub
sudo reboot

基本美化

将应用菜单图标放在左侧:

gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true

安装GNOME扩展:

sudo apt install gnome-tweaks gnome-shell-extensions -y

安装 gnome-tweaks 完成后,打开 优化,选择字体,进行字体和大小设置。

插件官网安装 System MonitorBlur my Shell

扩展-> Blur my Shell 中,将Panel的 Disable when a window is near 打开,将 Dash 的 Pipeline 改为 Default。

配置命令行终端

安装 Zsh,使用 Oh My Zsh 对 zsh 进行快速配置:

sudo apt install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
chsh -s $(which zsh) # 设置默认 Shell 为 Zsh

安装一些常用插件:

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

插件 z 是一个文件夹快捷跳转插件,对于曾经跳转过的目录,只需要输入最终目标文件夹名称,就可以快速跳转,避免再输入长串路径,提高切换文件夹的效率。

将上述插件加入 zsh 插件列表中:

~/.zshrc
plugins=(git z zsh-autosuggestions zsh-syntax-highlighting)

安装 powerlevel10k 主题:

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

# 如果网络条件不好,使用 gitee.com
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

一般还需要参考 Readme.md 字体 进行字体设置, 这个主题推荐设置 Nerd Fonts 作为终端字体,可以在 Readme 找到字体下载连接。

然后在 ~/.zshrc 设置 ZSH_THEME="powerlevel10k/powerlevel10k。重启 zsh 之后按照提示进行配置。

使用 Windows Terminal 的时候,推荐使用 Tango Dark 主题。透明度 启用亚克力材料,将 背景不透明度 设置为 80%。

使用 Visual Studio Code 的时候,在 terminal.integrated.fontFamily 添加 MesloLGS NF

目前发现在 Ubuntu 24.04 的 GNOME 终端显示 Nerd Fonts 图标会遇到图形字体的高度不一致的情况,这里推荐使用 Tabby 终端,并设置其为默认终端:

gsettings set org.gnome.desktop.default-applications.terminal exec /usr/bin/tabby

# 目前没有发现有什么必要
gsettings set org.gnome.desktop.default-applications.terminal exec-arg "-x"

如果想要还原,则:

gsettings reset org.gnome.desktop.default-applications.terminal exec
gsettings reset org.gnome.desktop.default-applications.terminal exec-arg

常用软件

Docker,不推荐安装 Linux 版的 Docker Desktop。反正我安装失败了,后面觉得安装了也没啥用,反正 Ubuntu 下都是敲命令行的。

QQ Linux版

Visual Studio Code

Qt

Typora:用于编写 Markdown 文档及笔记。

Beyond Compare

VLC:视频播放器,在 Ubuntu 应用商店下载即可。

Remmina:RDP远程工具,在 Ubuntu 应用商店下载即可。实际 Remmina 集成了非常多的远程控制协议。