2024年11月17日

ubuntu开启debug-symbol-packages源

摘要: 想安装bpftrace-dbgsym发现没有源,后来查了下源配置方法:https://ubuntu.com/server/docs/debug-symbol-packages sudo apt install ubuntu-dbgsym-keyring echo "deb http://ddebs. 阅读全文
posted @ 2024-11-17 23:24 ww2000e 阅读(4) 评论(0) 推荐(0) 编辑
2024年10月13日

升级win11后,vmware嵌套虚拟化打不开了,提示此平台不支持虚拟化Intel-VT-x/EPT或AMD-V/RVI

摘要: 查了几个设置项都没有开启,最后用命令行关闭hyper-v才行 cmd管理员权限打开 bcdedit /set hypervisorlaunchtype off 执行完后重启 阅读全文
posted @ 2024-10-13 14:29 ww2000e 阅读(62) 评论(0) 推荐(0) 编辑

gentoo用systemd-networkd的dhcp失败Failed to configure DHCPv4: No such file or directory

摘要: gentoo用systemd-networkd的dhcp失败,报错Failed to configure DHCPv4: No such file or directory 查了下是因为系统id没有初始化 命令行执行 # systemd-machine-id-setup # systemctl re 阅读全文
posted @ 2024-10-13 14:23 ww2000e 阅读(5) 评论(0) 推荐(0) 编辑
2024年7月20日

ubuntu22.04关闭swap

摘要: 按照以往经验,显示编辑/etc/fstab,重启后发现swap还是加载了 然后问了大模型,编辑grub加上swapaccount=0,重启后依然不行。。 最后在ubuntu官方论坛查到方法 systemctl status "*.swap" # 找到swap名字 systemctl mask dev 阅读全文
posted @ 2024-07-20 13:59 ww2000e 阅读(86) 评论(0) 推荐(0) 编辑
2024年4月9日

crictl images报错runtime connect using default endpoints: [unix:///var/run/dockershim.sock unix:///run/containerd/containerd.sock unix:///run/crio/crio.sock unix:///var/run/cri-dockerd.sock].

摘要: 想试试containerd运行k8s,结果报错还在找dockershim,网上找了解决方法 crictl依次查找容器运行时,当查找第一个 unix:///var/run/dockershim.sock 没有找到,所以报错了,需要你手动指定当前kubernetes的容器运行时,使用什么,例如: kub 阅读全文
posted @ 2024-04-09 11:45 ww2000e 阅读(174) 评论(0) 推荐(0) 编辑
2024年4月6日

gdm登陆器去掉root用户

摘要: 部署完gdm,gnome后用root登陆了次后,root用户一直在登陆列表里面,找了下去掉方法 https://wiki.archlinux.org/title/GDM#Hide_user_from_login_list 编辑/var/lib/AccountsService/users/root [ 阅读全文
posted @ 2024-04-06 00:08 ww2000e 阅读(20) 评论(0) 推荐(0) 编辑
2024年3月26日

arm虚机里面搭建openstack测试环境,nova-compute的配置方法

摘要: 在我的m1 macbook里面用vmware装的ubuntu,搭建了一个openstack环境,虚机起来后想看控制台总是说:Guest has not initialised the display (yet),查了下发现我用的镜像只支持串口连进去,所以openstack配置如下: 安装nova-s 阅读全文
posted @ 2024-03-26 16:25 ww2000e 阅读(61) 评论(0) 推荐(0) 编辑
2024年3月25日

ubuntu双网卡设置内外网

摘要: 网上看的方法都是route命令设置,可是ubuntu server默认没有,最后找到一个直接配置方法 https://blog.csdn.net/qq_43314560/article/details/112536010 示例: ens160是内网网卡 ens256是外网网卡 编辑/etc/netp 阅读全文
posted @ 2024-03-25 17:23 ww2000e 阅读(345) 评论(0) 推荐(0) 编辑
2024年3月24日

fedora cloud image设置密码方法

摘要: 上网下了个fedora cloud image的qcow2文件,起来虚机后没法登陆,也没有默认密码,后来发现是给云服务用的,要用cloud-init来初始化密码,本机上可以建个iso来初始化 1. Create a file called "meta-data" with the contents 阅读全文
posted @ 2024-03-24 14:30 ww2000e 阅读(89) 评论(0) 推荐(0) 编辑
2024年1月7日

linux mint的Cinnamon桌面用win+space切换输入法的设置方法

摘要: linux mint的Cinnamon桌面默认用win键打开菜单,没法设置输入法快捷键成win+space,需要在设置里面做以下设置: "系统设置"->"键盘"->"布局"->"选项" 先给win键开菜单失效,因为我的键盘只有一个win键,如果有两个,换到右边最好 "alt and win beha 阅读全文
posted @ 2024-01-07 22:05 ww2000e 阅读(136) 评论(0) 推荐(0) 编辑