文章

我自己的 Ubuntu 24.04

我自己的 Ubuntu 24.04

记录一下我自用的系统搭建过程。

下载镜像

https://cn.ubuntu.com/download/desktop

下载烧写工具

https://etcher.balena.io

烧写

傻瓜式操作

  1. 选择镜像;
  2. 选择 U 盘;
  3. 烧写。

安装

常规操作,略!

手动分区

我的分区方案:

1
2
3
4
/boot/efi   1G
Swap        10G
/           1T
/home       1T

安装中文输入法

参考我前面这篇:https://cseek.github.io/posts/ibus-pinyin

安装插件管理工具和主题配置工具

1
2
sudo apt install gnome-shell-extensions
sudo apt install gnome-tweaks

安装 Gnome 插件

插件搜索地址https://extensions.gnome.org/#

Blur My Shell

https://github.com/aunetx/blur-my-shell

Tactile

Show Desktop Applet

Emoji Copy

自定义 APP 图标

系统扩展

System Monitor

Ubuntu AppIndicators

Ubuntu Dock

下载地址

https://www.pling.com/p/2023325

安装

1
2
3
# 创建目录
mkdir ~/.icons
# 解压下载的图标到 ~/.icons 目录

配置

打开 gnome-tweaks,在 Appearance->Icons 下选择 MacOS-3D 即可

Mac 壁纸

https://github.com/vinceliuice/WhiteSur-wallpapers.git

安装常用 APP

1
2
3
4
5
6
mqttx
clash
chrome
code
wechat
qq

安装 Oh My bash

官网

https://ohmybash.nntoan.com/

安装命令

1
bash -c "$(wget https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh -O -)"

修改主题

vim ~/.bashrc

1
OSH_THEME="robbyrussell"
1
2
3
4
5
6
7
8
9
# 更换启动界面 LOGO
sudo cp new-log.png /usr/share/plymouth/themes/spinner/watermark.png
# 更换登陆界面 LOGO
sudo cp new-log.png /usr/share/plymouth/ubuntu-logo.png
# 更换 About 界面 LOGO
sudo cp new-log.png /usr/share/pixmaps/ubuntu-logo-text.png
sudo cp new-log.png /usr/share/pixmaps/ubuntu-logo-text-dark.png
# 使生效
sudo update-initramfs -u
本文由作者按照 CC BY 4.0 进行授权