ubuntu初始配置

ubuntu初始配置

vm下ubuntu安装vmtools

c 复制代码
//安装vmtools
sudo apt-get install open-vm-tools
//桌面组件提供了更好的集成体验,包括拖放文件和共享剪贴板等功能
sudo apt-get install open-vm-tools-desktop

安装常用工具

c 复制代码
//安装net-tools使用ifconfig等命令
sudo apt-get install net-tools
//安装gcc、g++
sudo apt-get install gcc
sudo apt-get install g++
//安装git
sudo apt-get install git
//安装vim
sudo apt-get install vim

ubuntu终端美化

c 复制代码
//检查是否安装zsh
zsh --version
//安装zsh
sudo apt update
sudo apt upgrade -y
sudo apt install zsh -y
//设置默认shell为zsh
chsh -s /bin/zsh
//安装curl
sudo apt-get install curl -y
//安装oh-my-zsh
sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
//使用wget安装oh-my-zsh(curl不可用)
sh -c "$(wget -O- https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
//安装插件zsh-autosuggestions
git clone https://hub.gitmirror.com/https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
//安装插件zsh-syntax-highlighting
git clone https://hub.gitmirror.com/https://github.com/zsh-users/zsh-syntax-highlighting ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
//安装powerlevel10k
git clone --depth=1 https://hub.gitmirror.com/https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k
//安装字体,然后终端选择字体配置该字体
sudo apt install fonts-hack-ttf -y

//配置~/.zshrc
vim ~/.zshrc
ZSH_THEME="powerlevel10k/powerlevel10k"
POWERLEVEL9K_MODE="awesome-patched"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
//修改生效
source ~/.zshrc

安装ssh

c 复制代码
//安装zsh
sudo apt-get install openssh-server
//设置开机启动
sudo systemctl enable ssh

使用apt安装时出现错误

c 复制代码
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (2: No such file or directory)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?

解决办法

c 复制代码
sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock*
sudo dpkg --configure -a
sudo apt update
相关推荐
Elasticsearch7 小时前
3个信号、2个环境变量、0个采集器:使用 Python 和 Elastic 的托管 OTLP 端点实现 OpenTelemetry
elasticsearch
zzzzzz31013 小时前
9K Star 炸裂开源!这个 C 语言写的代码知识图谱,把 Linux 内核索引压缩到了 3 分钟
linux·服务器·sql
XIAOHEZIcode13 小时前
Linux系统鼠标偏移常见原因以及修复方案
linux·运维·游戏
A小辣椒2 天前
TShark:Wireshark CLI 功能
linux
Elasticsearch2 天前
如何通过 Claude Code 来写入 CSV 数据到 Elasticsearch
elasticsearch
A小辣椒3 天前
TShark:基础知识
linux
AlfredZhao3 天前
OCI 明明分配了 200G 系统盘,为什么 df 只看到 30G?
linux·oci
AlfredZhao3 天前
vi 删除指定范围的行,不用再反复按 dd
linux·vi
用户9718356334663 天前
银河麒麟 KY10 申威(SW64) 安装 nginx-1.16.1-2.p01.ky10.sw_64.rpm 详细步骤
linux
猪脚踏浪4 天前
linux 拷贝文件或目录到指定的位置
linux