### 更新到最新系统 ```bash sudo apt update ``` ### 检查是否支持硬件虚拟化 ```bash # 如果返回值大于0,说明支持硬件虚拟化 egrep -c '(...
542025年4月17日
Ubuntu KVM安装记录
# 构建 dotnet build --configuration Release # 打包 dotnet pack --configuration Release -o .packag...
532025年4月17日
上传nuget包
### 命令如下 假设虚拟机ip是192.168.122.79 ```bash sudo iptables -t nat -A PREROUTING -p tcp --dport 3389 -j ...
502025年4月17日
Linux下设置端口转发到kvm虚拟机
```bash sudo apt remove plasma-desktop --autoremove sudo apt remove kubuntu-desktop --autoremove sud...
462025年4月17日
卸载kde
安装过程 ```bash $ git clone https://github.com/oatpp/oatpp.git $ cd oatpp/ $ mkdir build && cd build ...
442025年4月17日
oatpp安装过程
### 查找当前目录下指定的文件列表 find命令会递归查询所有子目录 ```bash # 以下命令会查询所有子目录,忽略大消息 find . -iname "*Abc*" ```
442025年4月17日
find命令
wsl --export Ubuntu-20.04 f:\wsl2\ubuntu20.04.tar wsl --unregister Ubuntu-20.04 wsl --import Ubunt...
442025年4月17日
Wsl2 ubuntu修改移动位置
默认情况下,如果当前没有容器使用卷,则不会删除卷以防止删除重要数据 Docker 现在可以通过一个命令清理一些未用到的资源。 但是要谨慎运行,以免误删数据。详情查看官方文档:https://doc...
422025年4月17日
清理docker占用的硬盘空间
构建过程 系统 ubuntu 23.10 时间 2024-03-26 16:51:05 ```bash cd ~/Library git clone https://github.com/fac...
422025年4月17日
folly库构建过程
# 查看某一个包的详细版本 apt-cache madison vim # 更新源 sudo apt-get update # 列出某个包的安装策略 apt-cache policy vim # ...
422025年4月17日
ubuntu apt-get命令