LinuxSir.Org  
| 网站首页 | 论坛帮助 |

欢迎来到LinuxSir.Org!
您还未登录,请登录后查看论坛,或者点击论坛上方的注册链接注册新账号。


发表新主题 回复
 
主题工具
旧 06-11-27, 22:28 第 16 帖
yangwen_abc
 
yangwen_abc 的头像
 
 
注册会员  
  注册日期: Aug 2006
  帖子: 208
  精华: 0
 

openSUSE 10.2 rc1 32 位
使用 fuse 2.6.0 和 ntfs-3g-0.20061115-BETA 的时候
确实有 1楼所述的问题

使用 fuse 2.5.3 和 ntfs-3g-20070920-BETA 的时候
没有问题

======
今天才发现下载的那个文件名是 20070920 下载后我可没有改过名阿
难道是ntfs-3g 弄错了??







__________________
Linux人生 -- Lives For Linux -- http://yangwen.cublog.cn/

dd if=/dev/hda of=mbr.backup bs=512 count=1 -- dd of=/dev/hda if=mbr.backup bs=512 count=1 -- 446 boot.code
find . -type d -exec chmod 755 {} \; -- mail other@host.com -s 'subject' < 'filename' -R YourEmail@host.com
man -t ls | ps2pdf - ls.pdf
for file in `ls *.wav` ; do lame -V2 $file ${file/".wav"/".mp3"}; done
  yangwen_abc 当前离线   回复时引用此帖
旧 06-11-28, 09:49 第 17 帖
nehc
 
 
 
注册会员  
  注册日期: Nov 2003
  帖子: 556
  精华: 1
 

为何我每次都要手动的‘mknod -m 666 /dev/fuse c 10 229’呢?
引用:
geisha:~ # mount -a
fusermount: failed to open /dev/fuse: No such file or directory
fuse_mount failed.
Unmounting /dev/sda1 ()
geisha:~ # rpm -qa|grep fuse
fuse-2.5.2-10
fuse-devel-2.5.2-10
geisha:~ # ntfs
ntfs-3g ntfsclone ntfscp ntfsinfo ntfsls ntfsundelete
ntfscat ntfscluster ntfsfix ntfslabel ntfsresize
geisha:~ # ntfs-3g /dev/sda1 /windows/C
fusermount: failed to open /dev/fuse: No such file or directory
fuse_mount failed.
Unmounting /dev/sda1 ()
geisha:~ # mknod -m 666 /dev/fuse c 10 229
geisha:~ # ntfs-3g /dev/sda1 /windows/C
geisha:~ # mkdir /windows/C/WINNT/Temp/some
geisha:~ #
  nehc 当前离线   回复时引用此帖
旧 06-11-29, 14:24 第 18 帖
东方晨曦
 
 
 
注册会员  
  注册日期: Jul 2005
  帖子: 19
  精华: 0
 

我装 ntfs 好像 11月的BETA版, 根本不能用。根本不能写。
遇到和LZ一样的问题。
  东方晨曦 当前离线   回复时引用此帖
旧 06-12-10, 01:35 第 19 帖
Thruth 帅哥
 
Thruth 的头像
 
 
版主  
  注册日期: Oct 2005
  我的住址: 地球
  帖子: 5,791
  精华: 31
 

1. 按照教程来,确实有问题
2. 在研究到底是什么问题







__________________
openSUSE 11.2 x86_64, kernel 2.6.33, KDE 4.4
Macbook Pro 991 + Ferrari 4005 + Android G1
openSUSE - Linux for Open Minds
Twitter @Thruth
Blog: http://thruth.ixiezi.com

此帖于 06-12-10 01:43 被 Thruth 编辑.
  Thruth 当前离线   回复时引用此帖
旧 06-12-10, 03:18 第 20 帖
Thruth 帅哥
 
Thruth 的头像
 
 
版主  
  注册日期: Oct 2005
  我的住址: 地球
  帖子: 5,791
  精华: 31
 

研究出来了
尽管openSUSE 10。2 自带了fuse 2.6.0
但实际上内核的fuse模块并不是2.6.0对应的fuse.o
还是旧版本的fuse模块,模块和程序版本不匹配,导致出错
解决半法就是自行编译fuse,并升级内核模块

http://fuse.sourceforge.net/ 下载新 fuse 源代码包,只要大于2.6.0就行,我是最新的2.6.1,然后解压,进入解压目录

./configure --enable-kernel-module
make
su
输入密码回车
rmmod fuse
make install

然后依然参照原教程编译ntfs-3g即可
  Thruth 当前离线   回复时引用此帖
旧 06-12-10, 09:28 第 21 帖
wrfwsh 帅哥
 
wrfwsh 的头像
 
 
注册会员  
  注册日期: May 2006
  我的住址: 天堂
  帖子: 767
  精华: 0
 

checking for a BSD-compatible install... /usr/bin/install -c
checking kernel source directory... /usr/src/linux-2.6.18.2-34-obj/i386/default
checking kernel build directory... /usr/src/linux-2.6.18.2-34-obj/i386/default
checking kernel source version... Not found
configure: error:
*** Cannot determine the version of the linux kernel source. Please
*** prepare the kernel before running this script
configure: error: ./configure failed for kernel
还是不行的







__________________
include<>
code :
 我就是我。不失本性,放任自流。
code:
  没什么就是这样。不要和我一样。
code:
闪电,要的就是速度。没速度活不下去的。
code:
还未成熟,不能吃。一边呆着。
  wrfwsh 当前离线   回复时引用此帖
旧 06-12-10, 11:38 第 22 帖
Thruth 帅哥
 
Thruth 的头像
 
 
版主  
  注册日期: Oct 2005
  我的住址: 地球
  帖子: 5,791
  精华: 31
 

楼上,你没有装kernel-source
怎么可能编译成功呢

原来那个教程都有讲。
  Thruth 当前离线   回复时引用此帖
旧 06-12-10, 14:32 第 23 帖
goood 帅哥
 
goood 的头像
 
 
注册会员  
  注册日期: Sep 2006
  我的住址: 山东济南
  帖子: 90
  精华: 0
 

按Thruth说的做一点儿问题没有。
  goood 当前离线   回复时引用此帖
旧 07-01-28, 22:34 第 24 帖
lucifer5
 
 
 
注册会员  
  注册日期: Apr 2005
  帖子: 11
  精华: 0
 

--enable-kernel-module参数很重要,这样就不用每次都加载fuse模块了,就算是使用udev系统也会自动加载fuse
ntfs-3g对NTFS的读写绝对没有问题
  lucifer5 当前离线   回复时引用此帖
旧 07-02-23, 21:58 第 25 帖
Thruth 帅哥
 
Thruth 的头像
 
 
版主  
  注册日期: Oct 2005
  我的住址: 地球
  帖子: 5,791
  精华: 31
 

狂顶此贴此贴
  Thruth 当前离线   回复时引用此帖
发表新主题 回复


主题工具

发帖规则
您 [不可以] 发表新主题
您 [不可以] 回复主题
您 [不可以] 上传附件
您 [不可以] 编辑您的帖子

已 [启用] BB 代码
已 [启用] 表情符号
已 [启用] IMG 代码
已 [禁用] HTML 代码
[论坛跳转…]


所有时间均为[北京时间]。现在的时间是 23:46


Powered by vBulletin 版本 3.6.8
版权所有 ©2000 - 2012, Jelsoft Enterprises Ltd.
官方中文技术支持: vBulletin 中文
版权所有 ©2002 - 2011, LinuxSir.Org