Fedora16

在Fedora里安装XP双系统

亡梦爱人 提交于 2020-03-15 03:05:55
长话短说。。。 准备工具:Fedora 16 ,Vbox 虚拟机 , GParted 分区软件 ,XP Ghost镜像文件 补充:最好还准备个离线版的驱动精灵 借助Vbox 挂载真实硬盘分区的特性 用GParted 分区软件 分出两个ntfs或者fat32的分区 sudo chmod 666 /dev/sdaX 注意:X 是刚刚你的分区 sudo vboxmanage internalcommands createrawvmdk -filename /home/[YOURHOME]/xp.vmdk -rawdisk /dev/sda -partitions X -relative sudo chmod 755 xp.vmdk sudo chmod 755 xp-pt.vmdk sudo chown 当前用户名 xp.vmdk sudo chown 当前用户名 xp-pt.vmdk 添加当前用户到disk组 gpasswd disk -a 当前用户名 用Vbox 创建一个新的xp虚拟机,虚拟硬盘就使用刚刚创建的 xp.vmdk(只选它就行了) 启动xp虚拟机,分配光驱 XP Ghost镜像文件(如果你动作不够快,可能需要再次启动xp虚拟机) 启动Ghost 还原 或者 WINPE 系统里的Ghost 接下来,就不用说了吧。。。(注意:/dev/sdaX的顺序

linux 无线网卡设置(加载驱动)-Broadcom网卡通用

此生再无相见时 提交于 2019-12-04 14:29:53
我的笔记本是acer的,装上fedora16 后发现无线不能用。幸好有线能用,就在网上查相关资料说是可以通过 “ndiswrapper”模拟运行windows下的驱动,但是试了几次没有成功,可能是驱动对不上号吧。然后在windows下用驱动精灵查看无线网卡型号为Broadcom Corporation,于是乎就去官网查找这个驱动了。 网址为:http://www.broadcom.com/support/802.11/linux_sta.php 下面是我解决的过程: 首先,通过上面网址下载驱动,驱动分为64位版的跟32位的。里面有三个文件可供下载“ 32-bit driver ”、“ 32-bit driver ”、“ README.txt ”,千万别小看这个 README.txt 。这是官方给的说明文档,几乎所有问题人家都总结了,相当权威!本人装的是32位的linux。就以32的驱动为例了。 1、以root用户登录,或者su到root下也行。解压下载的驱动文件,例如:解压到/usr/soft/driver/hybrid-portsrc_x86_32-v5_100_82_112在终端下进入该目录,cd /usr/soft/driver/hybrid-portsrc_x86_32-v5_100_82_112 2、你会看到有个Makefile文件,我看到这个会很兴奋,就仿佛看到了终点站

Behaviour of CLOCKS_PER_SEC in different Operating Systems

天涯浪子 提交于 2019-12-01 16:21:02
问题 I was running a cpp code , but one thing i noticed that on windows 7, CLOCKS_PER_SEC in C++ code gives 1000 while on linux fedora 16 it gives 1000000. Can anyone justify this behaviour? 回答1: What's to justify? CLOCKS_PER_SEC is implementation defined, and can be anything. All it indicates it the units returned by the function clock() . It doesn't even indicate the resolution of clock() : Posix requires it to be 1000000, regardless of the actual resolution. If Windows is returning 1000, that's

Fedora16开机自动挂载Windows分区

情到浓时终转凉″ 提交于 2019-12-01 13:44:07
注:本文中操作,需 root 权限 。 Step 1: 检查是否已安装 ntfs-3g yum list ntfs-3g yum install ntfs-3g.x86_64 (注:选择合适的版本安装,需 root权限 ) Step 2: 分别使用 fdisk -l ; df -lh 命令确定ntfs分区。(需 root权限 ) 如:/dev/sdb1 对应windwos下的C盘 Step 3: 在 /media/目录下,使用 mkdir 命令新建文件夹。 ( 需 root权限 ) 如: /media/C 对应Windows的C盘。 Step 4: 配置 /etc/fstab 文件,实现开机自动挂载。( 需 root权限 ) vi /etc/fstab 如: /dev/sda1 是Windows的C盘分区, 挂载至 /media/C 目录下,则在 /etc/fstab中添加 /dev/sda1 /media/C ntfs-3g users,uid=1000,gid=100,fmask=0113,dmask=0002 0 0 来源: oschina 链接: https://my.oschina.net/u/77969/blog/39329