虚拟机iso镜像下载 阿里巴巴开源镜像站-OPSX镜像站-阿里云开发者社区 (aliyun.com)
进入阿里巴巴开源镜像站,点击OS,输入想要下载的发行版镜像及版本号,即可下载。
Ubuntu20.04更换清华源 Ubuntu安装完之后进行更换为国内源可以让下载更新的的速度快一点。
以下是具体操作的博客
ubuntu 执行apt-get update报错Failed to fetch - Lxk- - 博客园 (cnblogs.com)
使用清华源,将以下代码输入/etc/apt/sources.list文件中。
1 2 3 4 5 6 7 8 9 10 11 12 13 # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-security main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-security main restricted universe multiverse # 预发布软件源,不建议启用 # deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse
解决Linux 下使用 ifconfig 查看不到 ip 地址 ubuntu下ifconfig查找不到ens33
解决方案:在终端下使用 dhclient ens33 命令获取:
效果立竿见影:
参考链接🔗:解决Linux 下使用 ifconfig 查看不到 ip 地址 - 知乎 (zhihu.com)
python 版本切换 使用update-alternatives 来为整个系统更改Python 版本
1 update-alternatives --config python
Ubuntu下完美切换Python版,即设置系统默认的python版本(亲测有效)_ubuntu 切换python版本-CSDN博客
配置、查看环境变量 【Ubuntu】Ubuntu设置和查看环境变量_ubuntu 环境变量-CSDN博客
刚装好系统的虚拟机屏幕无法自适应 安装VMtools即可自适应屏幕
以后开机后会无法自适应屏幕,但只需要点击“自由拉伸”,然后取消,就会自适应
虚拟机无法与宿主机实现复制粘贴 安装VMtools,然后重启即可
磁盘扩容 Ubuntu磁盘扩容(简单亲测有效)_ubuntu扩展磁盘空间___乔木的博客-CSDN博客
通过交换分区增加内存容量 Linux Swap交换分区设置教程
1 2 3 sudo apt upgrade sudo apt install open-vm-tools-desktop -y sudo reboot
apt-get报错:Could not get lock /var/lib/dpkg/lock-frontend 使用apt安装时报错:
1 2 E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
解决方案:
方案一: 1 sudo killall apt apt-get
如果提示没有apt进程:
1 2 apt: no process found apt-get: no process found
往下看方案二
方案二: 依次执行:
1 2 3 4 5 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
【已解决】Could not get lock /var/lib/dpkg/lock-frontend_could not get lock /var/lib/dpkg/lock-frontend - o-CSDN博客