摘要:
bcdedit /enum | findstr -i hypervisorlaunchtypeif hypervisorlaunchtype is Off, thenbcdedit /set hypervisorlaunchtype Autorestart 阅读全文
摘要:
sudo apt update && sudo apt upgrade sudo apt install ca-certificates apt-transport-https software-properties-common lsb-release -y sudo gpg --list-key 阅读全文
摘要:
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update sudo apt-get install -y boot-repair && boot-repair boot-repair 阅读全文
摘要:
bash find /your/directory -type f -name "*.so*" ! -type l -exec chmod 644 {} + 这条命令会在 /your/directory 目录下递归查找所有文件名以 .so 结尾的文件(共享库文件),并将它们的权限设置为 644。! 阅读全文
摘要:
ubuntu 文件管理器无法打开,终端执行 nautilus 报错GLib-GIO-ERROR **: Settings schema 'org.mate.screenshot' is not installed 解决办法: 找到/usr/local/share/glib-2.0/schemas/ 阅读全文
摘要:
find / -iname test #查找所有/目录下文件名为test的文件 find / type -f -mtime +30 -name "文件名或表达式" #查找/目录下类型为文件时间为30天以前-name “ ”中的文件 find / type -d -mtime +30 #查找/目录下类 阅读全文
摘要:
开机启动只能到: 一般此类情况为efi目录下centos或其它系统(redhat,ubuntu)目录下的grub.cfg文件有问题,可以是缺少此文件。 修复处理grub命令行下执行: ls ls (hd0,gpt1)/ #所有显示的分区都看一下,一个是确定各分区里的文件内容,另一个是要找到boot分 阅读全文
摘要:
1、下载ADS2021 linux版破解 (要的可以留言) 2、 Root下,将pubkey_verify拷到安装目录下,/usr/ads2021,运行 ./pubkey_verify ./pubkey_verify -y 3、修改license.lic 修改license.lic, 主机名这里为i 阅读全文
摘要:
想在docker中使用Flexmonster,但是在配置环境后,发现Flexmonster需要使用systemctl来管理服务,然而在docker容器中没有systemctl可用,于是开始折腾之旅! 以下是解决办法: 1、下载systemctlwget https://raw.githubuserc 阅读全文
摘要:
一、ubuntu通过命令安装内核版本 1、检查原系统内核版本 uname -r 2、搜索可用linux内核版本 apt-cache search linux| grep linux-headers 3、 通过apt命令安装内核 apt-get install linux-headers-5.4.0- 阅读全文
