百度云安装在D盘后,无法打开。卸载后继续安装,提示已有百度云是不是覆盖,安装的时候提示报错。WIN10系统
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度云安装在D盘后,无法打开。卸载后继续安装,提示已有百度云是不是覆盖,安装的时候提示报错。WIN10系统相关的知识,希望对你有一定的参考价值。
我也遇到了同样的问题。解决方法:打开注册表编辑器regedit,搜索“百度网盘”和“baiduyun”(注意一个是中文,一个是拼音),全部删掉。再运行新的安装文件。 参考技术A 1、首先清理注册表2、重启你的电脑
3、查看你的D盘权限,如果不行就改成(755)
4、再不行就装在其他盘里面本回答被提问者采纳 参考技术B
是否自定义了安装?
如果是:请退出安装程序,自定义安装路径的时候,不要填错
如果不是,请安装最新版的百度云管家
错误:【大佬们有谁见到过路径可以这样写:D:u\\abcdefg 】那个u哪来的?
参考技术C 注册表里面找software下面有baiduyunguanjia之类的直接整个删掉就可以装了 参考技术D 你要重启,还有你装的位置恐怕没有权限访问U盘安装LINUX系统,拔除U盘后无法引导系统
U盘安装LINUX系统,拔除U盘后无法引导系统
1 问题描述:
使用U盘安装LINUX操作系统,拔除U盘后,无法正常引导系统,必须插入U盘才可以进入系统。
2 原因分析:
GRUB全.称为.Grand Unified Boot Loader,是Linux操.作系统主流的启动引导管理器。主要作用是启动和装载Linux操作系统。系统启动过程中一旦完成了BIOS自检,GRUB会被立刻装载。在GRUB里面包含了可以载入操作系统的代码以及将操作系统引导权传递给其他启动引导管理器的代码。GRUB可以允许用户选择使用不同的kernel启动系统,或者在启动系统的过程中设置不同的启动参数。
客户在安装LINUX操作系统过程中,使用的是U盘方式安装,引导的grub信息被默认安装到了U盘的MBR中,拔除U盘后启动过程无法读取相应的启动管理器的代码信息,导致系统无法启动。
3 解决方法:
重新安装系统的grub信息到本地硬盘MBR,并修改/boot/grub/grub.conf文件。操作步骤如下:
3.1 插入安装系统时使用的U盘,正常引导LINUX系统。
3.2 查看硬盘分区信息
[[email protected] ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 48G 2.1G 44G 5% /
tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/sda1 190M 40M 141M 22% /boot
/dev/sda4 409G 742M 409G 1% /data
[[email protected] ~]#
3.3 在终端下进行操作:
grub命令
[[email protected] ~]# grub
Probing devices to guess BIOS drives. This may take a long time.
GNU GRUB version 0.97 (640K lower / 3072K upper memory)
[ Minimal BASH-like line editing is supported. For the first word, TAB
lists possible command completions. Anywhere else TAB lists the possible
completions of a device/filename.]
grub>root(hd0,0) # (hd0,0)表示安装到系统识别的第一块硬盘中的第一个分区。
grub>setup(hd0)
grub> quit
quit
[[email protected] ~]#
或使用Grub-install命令:
系统中包含有独立的/boot分区时,使用
grub-install /dev/hda(如果是SCSI或SAS硬盘,设备名称可能不同,请使用fdisk -l命令进行查询。)
例如:
[[email protected] ~]# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000db1d7
Device Boot Start End Blocks Id System
/dev/sda1 * 1 26 204800 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 26 6400 51200000 83 Linux
/dev/sda3 6400 7420 8192000 82 Linux swap / Solaris
/dev/sda4 7420 60802 428788736 83 Linux
Disk /dev/sdb: 7933 MB, 7933526016 bytes
255 heads, 63 sectors/track, 964 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1870fb89
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 965 7746560 c W95 FAT32 (LBA)
Partition 1 has different physical/logical endings:
phys=(963, 254, 63) logical=(964, 135, 3)
[[email protected] ~]# grub-install /dev/sda
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install‘.
# this device map was generated by anaconda
(hd0) /dev/sda
(hd1) /dev/sdb
[[email protected] ~]#
如果只有/,没有单独建立/boot分区,使用
grub-install --root-directory=/boot/dev/hda
3.4 修改/boot/grub/grub.conf
完成grub信息安装后,还需要修改/boot/grub/grub.conf,把文件中的引导信息也改为(hd0,0)。如果不对此文件进行修改,系统启动到菜单项时,会出现找不到目标分区的故障,可在此时按e键进行临时修改,正常进入系统后再编辑此文件。
[[email protected] ~]# cp -a /boot/grub/grub.conf ./
[[email protected] ~]# vim /boot/grub/grub.conf
1 # grub.conf generated by anaconda
2 #
3 # Note that you do not have to rerun grub after making changes to this file
4 # NOTICE: You have a /boot partition. This means that
5 # all kernel and initrd paths are relative to /boot/, eg.
6 # root (hd1,0)
7 # kernel /vmlinuz-version ro root=/dev/sdb2
8 # initrd /initrd-[generic-]version.img
9 #boot=/dev/sda
10 default=0
11 timeout=5
12 splashimage=(hd1,0)/grub/splash.xpm.gz # 改为和grub设置一致,一般为:(hd0,0)
13 hiddenmenu
14 title CentOS 6 (2.6.32-754.el6.x86_64)
15 root (hd1,0) # 改为和grub设置一致,一般为:(hd0,0)
16 kernel /vmlinuz-2.6.32-754.el6.x86_64 ro root=UUID=83a11f53-681b-42bf-9995-61166250f028 rd_NO_LUKS KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=auto LANG=z
h_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
17 initrd /initramfs-2.6.32-754.el6.x86_64.img
[[email protected] ~]#
把12行和15行的(hd1,0)改为:(hd0,0)
END
以上是关于百度云安装在D盘后,无法打开。卸载后继续安装,提示已有百度云是不是覆盖,安装的时候提示报错。WIN10系统的主要内容,如果未能解决你的问题,请参考以下文章