Advertisement
simbha

mount ntfs disk on suse sles 11

Jun 24th, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. # mount -o rw,remount /dev/sdax
  2.  
  3.  
  4. #umount /dev/sda4
  5. #mkdir /windows
  6. #ntfs-3g /dev/sda4 /windows
  7.  
  8.  
  9. there was a compile error in secaudit.c file of ntfs-3g directory i corrected that and installed it again
  10.  
  11. here are the steps i have followed, this will be usefull to anyone, you will get following listed errors when you trying to make the files
  12.  
  13. secaudit.c:262:24: error: attr/xattr.h: No such file or directory
  14. secaudit.c: In function ‘showmounted’:
  15. secaudit.c:5033: warning: implicit declaration of function ‘getxattr’
  16. make[2]: *** [ntfs_3g_secaudit-secaudit.o] Error 1
  17. make[2]: Leaving directory `/media/MEDIA/Linux/ntfs-3g-2009.11.14/src'
  18. make[1]: *** [all-recursive] Error 1
  19. make[1]: Leaving directory `/media/MEDIA/Linux/ntfs-3g-2009.11.14'
  20. make: *** [all] Error 2
  21.  
  22. you have to replace the line 262 with
  23. #include <sys/xattr.h>
  24. and you should have installed libattr library
  25.  
  26. On suse yast ntfs-3g
  27.  
  28. http://swerdna.dyndns.org/susentfs.html
  29. https://www.suse.com/documentation/sles11/singlehtml/book_sle_admin/book_sle_admin.html
  30. http://www.linuxquestions.org/questions/suse-novell-60/mount-windows-drive-in-suse-10-1-a-494316/
  31.  
  32. #fdisk -l OR #/sbin/fdisk -l
  33. #su
  34. password:
  35. #mount -t ntfs /dev/sda1 /media/some_folder* (Assuming FAT32 is the filesystem of windows)
  36. /dev/sda1 /media/some_folder vfat auto,exec,umask=0000 0 0
  37.  
  38. http://robertbeal.com/528/mount-ext3-in-windows-7-x64
  39.  
  40. "submitted thread to suse forum:"
  41. https://forums.opensuse.org/english/get-technical-help-here/applications/488163-unable-mount-ntfs-partition.html
  42. https://forums.suse.com/showthread.php?2897-Unable-to-Mount-NTFS-partition
  43. Dooble:http://sourceforge.net/projects/dooble/files/Version%201.43/
  44. rekonq:http://sourceforge.net/projects/rekonq/?source=recommended
  45. Nuke Browser:http://sourceforge.net/projects/nuketechbrowser/?source=recommended
  46.  
  47. http://pdfcrowd.com/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement