首页 > 系统 > Linux > 正文

IBM R50e笔记本上安装Linux

2024-08-28 00:10:01
字体:
来源:转载
供稿:网友

尝试在IBM R50e笔记本上安装个Linux,本来想硬盘安装,结果两个分区都是ntfs,光盘又没有。想起PXE.于是准备用虚拟机架一个安装服务器.securtCRT上传ISO的时候出错.唉,干脆挂载USB移动硬盘吧.

插上移动硬盘,识别出来了,可是又挂不上

[root@localhost ~]# mount -t ntfs /dev/sde1 /mnt

mount: unknown filesystem type 'ntfs'

yum install ntfs-3g

没有这个包.

去http://www.ntfs-3g.org/ntfs-3g-1.2129.tgz

下载了一个tar包.编译安装.

./configure

checking whether build environment is sane... configure: error: newly created file is older than distributed files!

Check your system clock

靠,虚拟机很久不用,时间不对,再

#ntpdate 210.72.145.44

然后重新来

#./configure

#make

#make install

然后挂载ntfs分区

mount -t ntfs-3g /dev/sde1 /mnt

[root@localhost ntfs-3g-1.2129]# /sbin/mount.ntfs-3g /dev/sde1 /mnt

FATAL: Module fuse not found.

fuse: device not found, try 'modprobe fuse' first

又说没有fuse模块.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表