双系统(win10+linux)升级win10引导失败解决方案

双系统(win10+linux)升级win10引导失败解决方案,第1张

我的系统情况:

双系统(win10+linux),uefi+gpt.

问题:

有个国产的网站,非要用ie浏览器才可以访问,而且我必须登陆这个网站。本人一直用arch,好吧,换回win10登陆,一进win10,就提示我目前的系统版本太低了,不再提供支持,(我很久没用过win10了)好吧,我也没多想,直接升级吧。这下惨了。引导失败,两个系统都进不去了。我在linux下用的是grub引导。现在什么都没了。

解决方案:

让人惊喜的grub启动画面又回来了。不过win10的启动项找不见了。那里出问题了??

又重新安装了一下grub,发现在grub-mkconfig生成配置文件时,有个提示如下:

warning: os-prober will not be excuted  to detect other bootable partitions.

os-prober是什么东西,正如它的名字 ,系统探测器。用来在一个系统中探测是否有别的系统,并加载到bootloader, ok, google一下,找到解决方案:

Question:

持续更新......

(11)重启网络:sudo /etc/init.d/networking restart

·

(10) Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/pycurl.so' Consider using the --user option or check the permissions.

给它sudo 权限就可以了,酱紫

(9) Failed building wheel for pycurl

(9)make install 时候,酱紫:

很简单,给它root 权限就OK

酱紫: sudo make install

(8)安装Python 2.7的时候报错:

configure: error: no acceptable C compiler found in $PATH See "config.log" for more details

错误:

解决办法:安装基础包

此时 再输入 ./configure 即酱紫: ./configure --prefix=/usr/local/python2 就不会报错了

(7) E: Unable to locate package build-essential

究其原因,应该是刚安装,软件源还来不及更新,所以才会无法找到包。我猜测在更换软件源之后,也很可能会出现这个问题。

输入即可

(6) wget: unable to resolve host address

修改conf 文件: sudo vim /etc/resolv.conf

后面加上:

(5)SSH Xshell 连接不上Linux ubuntu(Ubuntu已安装了ssh)

这个原因是由于自身是server,然后又给它装了一个桌面,所以之后,一直都起不来,最后的解决方法是 卸载桌面,清掉相关的信息,就是酱紫:

(4)apt-get update 报错:

E: Failed to fetch cdrom://Ubuntu-Server 16.04.3 LTS _Xenial Xerus_ - Release amd64 (20170801)/dists/xenial/main/binary-amd64/Packages Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs E: Some index files failed to download. They have been ignored, or old ones used instead.

执行 : sudo nano /etc/apt/sources.list or sudo vim /etc/apt/sources.list ,

在顶部附近,注释掉看起来像这样的行:

deb cdrom:[Ubuntu-Server 16.04.3 LTS _Xenial Xerus_ - Release amd64 (20170801)]/ xenial main restricted

再运行 sudo apt-get update :

如果还是觉得没用,试试

(3)第一次ssh上传文件报错:server responded”algorithm negotiation failed”

解决方法:

修改ssh的配置文件 /etc/ssh/sshd_config

cd /etc/ssh

vi /etc/ssh/sshd_config

在配置文件中添加:

重启sshd服务后(sudo service ssh restart),即可正常连接:

sudo service ssh restart 或者 sudo reboot

(2)解决 swap file “*.swp”already exists!问题

方法:

使用vim编辑文件实际是先 copy 一份临时文件并映射到内存给你编辑, 编辑的是临时文件, 当执行:w 后才保存临时文件到原文件,执行:q 后才删除临时文件。

*****将隐藏的 *.swp 文件删除即可,原先的文件便可再次编辑*****

ls -a

rm -r .swp文件eg:rm -r .test.py.swp

vi 文件

(1)虚拟机不能上网:

ifconfig 网卡有没有

VMware 两个网卡

VMware 编辑 恢复初始化


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8447391.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存