-
linux windows双系统
2011-09-08 22:26:01 -
SPFdisk教程 Linux Windows 双系统 独立双系统
2009-04-20 22:46:29SPFdisk教程 Linux Windows 双系统 独立双系统 用于安装 Linux Windows 多操作系统。 各操作系统相互独立,万一其中一个损坏而无法启动,不影响其他系统的正常运行。 -
Linux windows双系统导致时间不一致的解决的方法
2019-11-07 19:05:23Linux windows双系统导致时间不一致的解决的方法 在Windows下以管理员权限运行cmd,输入下面命令重启电脑即可! Reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t ... -
linux双系统优先开启_linux windows 双系统并存与启动引导
2021-01-17 15:33:28发现网站这类文章不好找 找到的分析也不太详细 小弟不才今天就写这么一个文章PS: 文章是否保留出处属于个人意愿 本人不喜欢强制...LINUX 的grub 来选择引导两个系统2: 先安装LINUX 在安装WINDOWSXP 靠 WINDOWS XP ...发现网站这类文章不好找 找到的分析也不太详细 小弟不才今天就写这么一个文章
PS: 文章是否保留出处属于个人意愿 本人不喜欢强制要求
一般安装WINDOWS 和 LINUX 并存的有两种方式
1: 先安装windows xp 在安装LINUX 靠 LINUX 的grub 来选择引导两个系统
2: 先安装LINUX 在安装WINDOWSXP 靠 WINDOWS XP C盘根目录下的 boot.ini 来引导 grub FOR DOS (这个是个软件可以下载到) 在引导LINUX
我的硬盘情况
/media/hda1 //WINDOWS C盘的
/media/hda2 //硬盘扩展分区
/media/hda3 // LINUX SWAP 分区
/media/hda4 // LINUX 根分区/
/media/hda5 //WINDOWS D盘的
………………………………………………………………………………………………………………………………
一些补充: LINUX 设备中 第一块ATA 硬盘 为hda 第一个分区为 hda1
hda1-4都为主分区 hda5 开始为逻辑分区
………………………………………………………………………………………………………………………………
先讲第一种情况 先安装 WINDOWS XP 在安装 LINUX 的
这种出现比较常见的情况 就是 可以引导LINUX 但是启动不了WINDOWS
这个原因是 LINUX 最后安装重新刷新了 mbr(主引导记录) grub 的配置不正确或者 grub 无法识别 WINDOWS 分区
出现这样的情况解决办法就是重新修改grub 配置文件
这个文件一般在LINUX 分区 /boot/grub/.conf 或者/boot/grub/menu.lst 详细根据LINUX发行版本不同而不同
………………………………………………………………………………………………………………………………
补充:.conf 为隐藏文件 需要用ls -a 命令可以看见 或者在 X WIN 设置显示隐藏文件也可见
一些人分区直接 就一个根分区 / 和 SWAP 就完了 这样不科学 建议设置一个/BOOT 分区 方便以后好恢复
如果没有分/boot 分区 默认的路径就是/grub
………………………………………………………………………………………………………………………………
那么怎么来修改这个配置文件~? 看个例子~以下是我计算机上的grub 配置文件
# menu.lst - See: grub(8), info grub, update-grub(8)
# grub-install(8), grub-floppy(8),
# grub-md5-crypt, /usr/share/doc/grub
# and /usr/share/doc/grub-doc/.
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not change this entry to 'saved' or your
# array will desync and will not let you boot your system.
default 0
## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout 10 //超时时间
## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
#hiddenmenu
# Pretty colours
#color cyan/blue white/blue
## password ['--md5'] passwd
# If used in the first section of a menu file, disable all interactive editing
# control (menu entry editor and command-line) and entries protected by the
# command 'lock'
# e.g. password topsecret
# password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
# password topsecret
#
# examples
#
# title Windows 95/98/NT/2000
# root (hd0,0)
# makeactive
# chainloader +1
#
# title Linux
# root (hd0,1)
# kernel /vmlinuz root=/dev/hda2 ro
#
#
# Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
### BEGIN AUTOMAGIC KERNELS LIST
## lines between the AUTOMAGIC KERNELS LIST markers will be modified
## by the debian update-grub script except for the default options below
## DO NOT UNCOMMENT THEM, Just edit them to your needs
## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
## kopt_2_6_8=root=/dev/hdc1 ro
## kopt_2_6_8_2_686=root=/dev/hdc2 ro
# kopt=root=UUID=39578435-c0d9-45c6-bb67-a147d26bee3a ro
## Setup crashdump menu entries
## e.g. crashdump=1
# crashdump=0
## default grub root device
## e.g. groot=(hd0,0)
# groot=(hd1,1)
## should update-grub create alternative automagic boot options
## e.g. alternative=true
## alternative=false
# alternative=true
## should update-grub lock alternative automagic boot options
## e.g. lockalternative=true
## lockalternative=false
# lockalternative=false
## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash
## should update-grub lock old automagic boot options
## e.g. lockold=false
## lockold=true
# lockold=false
## Xen hypervisor options to use with the default Xen boot option
# xenhopt=
## Xen Linux kernel options to use with the default Xen boot option
# xenkopt=console=tty0
## altoption boot targets option
## multiple altoptions lines are allowed
## e.g. altoptions=(extra menu suffix) extra boot options
## altoptions=(recovery) single
# altoptions=(recovery mode) single
## controls how many kernels should be put into the menu.lst
## only counts the first occurence of a kernel, not the
## alternative kernel options
## e.g. howmany=all
## howmany=7
## should update-grub create memtest86 boot option
## e.g. memtest86=true
## memtest86=false
# memtest86=true
## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false
## ## End Default Options ## // LINUX 引导配置
title Ubuntu, kernel 2.6.20-16-genericBT4
root (hd0,1)
kernel /vmlinuz-2.6.20-16-generic root=UUID=39578435-c0d9-45c6-bb67-a147d26bee3a ro quiet splash
initrd /initrd.img-2.6.20-16-generic
quiet
savedefault
title Ubuntu, kernel 2.6.20-16-generic (recovery mode)
root (hd0,1)
kernel /vmlinuz-2.6.20-16-generic root=UUID=39578435-c0d9-45c6-bb67-a147d26bee3a ro single
initrd /initrd.img-2.6.20-16-generic
### END DEBIAN AUTOMAGIC KERNELS LIST思科学习视频资料下载中心
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root
# This entry automatically added by the Debian installer for a non-linux OS //windows 系统引导配置
# on /dev/hda1
title Windows NT/2000/XP
root (hd0,0)思科路由器配置
savedefault
makeactive
chainloader +1
………………………………………………………………………………………………
#号是注释掉的部分 没用
………………………………………………………………………………………………
linux 引导配置
第一个是 title名字 - -|~ 可以不鸟
第二个是root 系统所在 磁盘分区 hd0,1表示 hda2 hd0,0 表示 hda1
第三个是kernel 加载内核路径 以及参数
第二种情况:
先安装LINUX 在安装WINDOWSXP 靠 WINDOWS XP C盘根目录下的 boot.ini 来引导
这个情况个因为windwsxp 最后安装 所以造成重刷MBR 是引导的 WINDOWS
需要来修改C 盘下的配置文 件boot.ini来实现 双系统引导 还需要一个软件 grub for dos
把grub for dos 下载下来之后 有 一个grldr 这个文件没后缀的 复制到c盘根目录 以及一些相关文件都弄在C盘 在修改 bootini
[boot loader] 思科路由器交换机模拟软件
timeout=3
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=" Windows XP " /noexecute=optin /fastdetect
c:\grldr=" Linux "
………………………………………………………………………………………………
c:\grldr=" Linux " 这个是后来添加的 当然也可以改路径
grub for dos 里面也有个配置文件 叫 menu.lst 根据 上面讲的 grub 配置根据实际情况修改一下 就可以实现windows 引导LINUX 了
完~ - -|
-
linux windows双系统,访问Windows文件
2017-07-09 20:17:12公司配的破电脑装Windows太卡了,装了双系统,正好Linux是可以访问NTFS文件系统的,在终端里我想找到我之前在Windows的东西。 简单粗暴使用办法 使用mount命令 1.查看自己有哪些分区,找到要挂载的分区 ...公司配的破电脑装Windows太卡了,装了双系统,正好Linux是可以访问NTFS文件系统的,在终端里我想找到我之前在Windows的东西。
简单粗暴使用办法
使用mount命令
1.查看自己有哪些分区,找到要挂载的分区
fdisk -l (如果看不到cat /proc/parttions)
8 0 488 sda
8 1 158 sda1
8 2 209 sda2
8 3 120 sda3
(假设是sda1)2.挂载sda1 到文件/mnt/windows目录下
首先确认/mnt/windows文件的存在
mount /dev/sda1 /mnt/windows
这样就可以直接在终端操作了
3.卸载
umont /mnt/windows
-
linux windows 双系统共享磁盘空间
2019-08-05 09:52:183.FAT32格式是Windows和Linux都支持的磁盘分区格式(Windows2000等采用的格式),但存在局限性,硬盘空间最大2T,单个文件最大4G 具体方法: (1)Windows下压缩卷,格式化成FAT32分区 (2)Linux下挂载即可使用 ... -
Linux Windows 双系统时间不一致原因解析
2021-02-05 15:31:08#出现 Linux Windows 两个系统的时间不一致,一般是相差 8 小时 原因分析 GMT:Greenwich Mean Time,即格林尼治标准时间,也就是世界时。GMT 以地球自转为基础的时间计量系统,但由于地球自转不均匀,导致 GMT ... -
Linux Windows双系统很舒服的安装配置
2016-10-12 17:56:45windows 和 Linux mint 18 双系统安装 U盘启动盘制作 大白菜老毛桃自定义ISO Windows Linux共享分区 UEFI和GRUB安装双系统的两种方式 -
linux本地时间与utc不一致_Linux Windows 双系统时间不一致
2020-12-20 16:54:15大家在装完 Linux 系统后,可能会出现 Linux Windows 两个系统的时间不一致,一般是相差 8 小时。下面就来分析该问题,并给出解决办法。原因分析GMT:Greenwich Mean Time,即格林尼治标准时间,也就是世界时。GMT ... -
Linux windows双系统调整启动顺序
2017-01-12 18:17:391.打开终端,并用gedit或其他编辑器...2.将GRUB_DEFAULT=0改为GRUB_DEFAULT=4(从零计数,Windows为第4个) 3.一定记得更新grub sudo update-grub 4.重启电脑。 参考链接: http://jingyan.baidu.com/ar -
安装 LINUX WINDOWS 双系统
2008-02-05 19:03:00安装 UBUNTU WINDOWS 双系统 很多新手在用wubi或虚拟机玩LINUX. 现在有没有真机安装的胆量了呢? 第一部分: 准备2个分区给LINUX安装. 安装UB (UBUNTU)至少要这2个区,也就是根分区和交换分区. 在WIN下面用磁盘管理器分... -
Linux Windows 双系统时无法挂载硬盘的解决方法
2018-01-16 15:56:00本来现在 Linux 系统做的也挺智能的了,双系统时点击 Windows 硬盘就自动挂载了,没啥感觉,但是这次却坚持报错 如下: Error mounting /dev/sda3 at /media/dms/286A099C6A0967C0: Command-line `mount -t "ntfs" ... -
linux windows 双系统 8小时时差 更正命令
2016-03-27 11:36:00本人在用deepin linux,系统跟新了硬件时间早了8小时 hwclock --show :显示硬件时间hwclock --systohc :将系统时间写入硬件(hc代表硬件时间,sys代表系统时间)!!没管用hwclock --hctosys :将硬件时间写入... -
Linux Windows 双系统安装
2009-03-13 01:12:00相比Linux, Windows会比较频繁地重装, 重装之后的mbr会被覆盖, 从而无法引导linux系统. 解决整个问题只需要恢复以前的MBR. 重装Linux则不存在任何问题. 因为grub会检测到已有的windows分区. 首先备份mbr, ... -
Linux Windows 双系统下删除 Linux系统的方法
2008-12-17 12:09:00不可以在Windows 下直接删除Linux分区,那样将破坏Grub的数据。 方法一:(在SATA硬盘上无效)从光盘启动,在DOS下输入如下命令:fdisk /mbr重建mbr信息。 在笔记本上试时,出现如下错误提示:No fixed disks ... -
linux windows 双系统必须先装windows,再装linux,否则无法做到二者均能正常启动。
2018-08-26 18:48:01 -
修复linuxwindows双系统启动项(mbrfix)
2014-09-04 00:45:23如果直接在Windows里面删除l inux 所在的分区,则由于grub也被删除了,导致无法引导Windows ... /yes(成功没有任何提示)重启直接进入windows系统 http://download.csdn.net/download/u011208377/7861295 -
Windows + Linux 双系统的安装
2019-05-14 14:10:51Windows + Linux 双系统的安装 参考自 https://blog.csdn.net/flyyufenfei/article/details/79187656 参考自 https://blog.csdn.net/u012052268/article/details/77145427 文章目录Windows + Linux 双系统的安装1. ... -
如何安装linux和windows双系统
2018-12-02 22:28:54像我们运维学习者,平常会用到linux,但是又必不可免的会用到windows,所以在一台电脑上安装linux和windows双系统就成了刚需,那么如何来安装windows和linux双系统呢 实验环境 电脑:实验室台式机 优盘:金士顿DT... -
Linux+Windows双系统Windows时间不对
2020-07-15 14:45:06很多人装了Linux+Windows双系统后发现Windows时间不对,这是因为,两个操作系统对电脑硬件时间的定义不一样,Windows 认为电脑硬件时间是“本地时间”,因此它启动后直接用该时间作为“系统时间”并显示在桌面右下角... -
Linux与Windows双系统硬盘资源互访
2020-03-04 11:16:07个人电脑用户中许多人都使用Windows系统,但也安装了Linux系统,因此如何在Linux或Windows中实现硬盘资源互访就显得非常重要。文中介绍了如何在Linux下访问Windows硬盘分区和在Windows下访问Linux硬盘分区。 -
安装linux和windows双系统
2017-11-12 18:35:00很多人一提到安装linux和windows双系统就会想到单独将磁盘划一个分区给linux,如果一块磁盘上已经安装了windows,并且所有分区都有数据,那就麻烦了,即使有了单独的分区,还需要安装grub,然后在grub中选择启动... -
linux+windows双系统安装
2016-02-15 12:16:04第二章 linux+windows双系统 linux+virtualbox+windows 首先说下,为什么使用在linux上用virtualbox而不是很多人推荐的双系统?根据我自己使用的经验来看。双系统并不是很好的方法主要有两个缺点: 很多windows下... -
Linux和windows双核系统安装
2010-06-05 22:15:21Linux和windows双核系统安装—————————————————————————————— -
linux-windows双系统启动设置
2020-10-30 11:09:25linux-windows双系统启动设置 参考: 迁移win10的efi引导分区到系统固态硬盘 Windows 更换硬盘后通过 BCDBoot 命令修复 UEFI 启动引导 Windows 和 GPT 常见问题解答(uefi、GPT、ESP、MSR概念扫盲贴) microsoft.... -
Linux ubuntu windows双系统grub引导修复
2018-11-22 10:16:33Linux ubuntu windows双系统grub引导修复 -
linux和windows双系统设置默认启动系统
2017-06-24 16:07:00在安装了windows与linux双系统的环境下,往往需要先安装windows系统再安装linux系统,这是因为linux的引导程序能够识别windows系统,而windows的引导程序无法识别linux系统,而且如果先安装linux再安装windows的话,...