Results 1 to 10 of 10
Hi I need to export some files from Suse Linux to Windows NT system. How I can do that? I have .txt, .cap files in Suse..
please guide.. your help ...
- 01-04-2008 #1Just Joined!
- Join Date
- Dec 2007
- Posts
- 2
export files from Suse to windows NT
Hi I need to export some files from Suse Linux to Windows NT system. How I can do that? I have .txt, .cap files in Suse..
please guide.. your help is appreciated.
thanks
Chandra
- 01-04-2008 #2
- 01-05-2008 #3forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
To write to NTFS partitions, you'll need ntfs-3g installed. I'm not sure if it installs by default with suse, or not.
oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 01-05-2008 #4
- 01-05-2008 #5forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 01-05-2008 #6
Not for write access ... by default the partition is mounted read/write but fstab option will be something like ...
users,gid=users,fmask=133,dmask=022,locale=en_GB.U TF-8
Which need to be changed to something like ...
users,gid=users,fmask=0,dmask=0,locale=en_GB.UTF-8
It also means any user can write to the files stored on the partition. I think you can play with this to give write access to a single user/user group but the NTFS partitions I mount for write access are for general data storage so I have not played with the settings much.
These can be accessed in YAST -> System -> Partitioner if required.Last edited by Jonathan183; 01-05-2008 at 12:29 AM. Reason: Note added re:YAST access
- 01-05-2008 #7
A few questions arose in the preceding posts. Here's a summary of the situation with NTFS in Suse:
• Check/install ntfs-3g, libfuse2 and fuse
• GUI application ntfs-config turns write permission on and off, one-click. See qualification below.
• External USB NTFS drives will not automount rw for users when powered on
• Fstab for Windows-like permissions (drwxrwxrwx):
/dev/sda2 /mnt/winxp ntfs-3g defaults 0 0
• CLI temporary mount for Windows-like permissions (drwxrwxrwx):
mount -t ntfs-3g /dev/sda2 /mnt/winxp
• Fstab for Linux-like permissions (drwxr-xr-x):
/dev/sda2 /mnt/winxp ntfs-3g uid=1000,gid=100,umask=0022 0 0
• CLI temporary mount for Linux-like permissions (drwxr-xr-x):
mount -t ntfs-3g -o rw,uid=1000,gid=100,umask=0022 /dev/sda3 /mnt/sda3
FFI: Mount your NTFS Filesystem/Partition for Read/Write Access in openSUSE 10.0 through 10.3
Swerdna
- 01-05-2008 #8
After the last post I looked again at the OpenSUSE page NTFS - openSUSE
I'm sure it did not look like that last time
ntfs-3g installed by default
just install ntfs-config using YAST
Off you go ! ... note to self ... google before struggling !
- 01-05-2008 #9Just Joined!
- Join Date
- Dec 2007
- Posts
- 2
i figured out to do that!!
I have downloaded putty -sftp on windows NT client and used command to "get" file... It worked very well.
I also tired to put file and it worked perfectly!
thanks again for your help and guidance! I am using SuSe 10 prof version
thanks
Chandra
- 01-05-2008 #10
If you are dong this over the network Just startup Samba in Yast


Reply With Quote
