- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to access the Windows files in Linux
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2007 08:14 PM
тАО09-09-2007 08:14 PM
How to access the Windows files in Linux
I dont know this is the right place to ask this question. But, it will be of great help if i get a solution for this.
I have installedLinux 9.1 on my PC with XP windows OS.
Now i want to access the files present in the windows partition. How can i do this ?
Also what is the editor i have to use to open PDF files in Linux .
thanks in advance
Vikram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2007 08:17 PM
тАО09-09-2007 08:17 PM
Re: How to access the Windows files in Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2007 11:16 PM
тАО09-09-2007 11:16 PM
Re: How to access the Windows files in Linux
>> installedLinux 9.1 on my PC with XP windows OS
>> want to access the files present in the windows partition
Share out the Folder in Windows OS, provide unlimited access first, control later.
In Linux OS, try to use GUI Samba Client in Gnome/KDE, connect using Windows IP Address.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2007 11:19 PM
тАО09-09-2007 11:19 PM
Re: How to access the Windows files in Linux
>> editor i have to use to open PDF files in Linux
# rpm -qa | grep -i xpdf
Normally "xpdf" is installed:
Xpdf is an X Window System based viewer for PDF files. Xpdf is a small and efficient program which uses standard X fonts.
In XTerminal, issue command:
# /usr/bin/xpdf
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2007 01:54 AM
тАО09-10-2007 01:54 AM
Re: How to access the Windows files in Linux
What is Linux 9.1? Suse 9.1?
To access windows files you use the samba tool suite.
smbmount to mount the shared windows partition.
openoffice tools permit limited pdf editing, they ship with the linux distro if I've guessed correctly.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2007 04:25 PM
тАО09-10-2007 04:25 PM
Re: How to access the Windows files in Linux
You can mount an NTFS partition with a command like "mount -t ntfs /dev/sda1 /mnt". You may also want to use uid and gid options to make the files and directories of the mounted filesystem readable by non-root users.
If you really want write access to the NTFS file system, you could investigate the NTFS-3G driver. It is new and very unlikely to be included in the standard kernel for current distributions. See http://www.ntfs-3g.org/ for more information on how to get it into your kernel and use it.
Another option for having a filesystem writable by both XP and linux is to format a partition with a FAT32 file system for exchanging data. That will have less flexibility for file permissions. But it will be easily read and written by both operating systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-26-2007 08:14 PM
тАО11-26-2007 08:14 PM
Re: How to access the Windows files in Linux
if u want to access files shared on windows then you can use samba client. go through
Computer
network
then select windows or any system through network
By default samba client service running on linux.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-27-2007 12:25 AM
тАО11-27-2007 12:25 AM
Re: How to access the Windows files in Linux
I have installed Linux 9.1 on my PC with XP windows OS. I think you have done a dual-boot.
In this situation, it is easy to mount & access the files on the Windows partition if the file system is FAT/FAT32. If it is NTFS, then you will need the ntfs-3g component. Whether it is available for your version of Linux, check in the package manager or install from the web site directly.
The /etc/fstab file contains all the mount points that will be loaded when Linux starts.
For easy access, create directory(ies) under the /mnt or /media directories to mount the other partitions.
For e.g. if I have a Windows partition called "WINDOWS", I will create a directory called windows under /mnt (/mnt/windows). Then mount it manually using the mount command. If it works fine, move the entry to the /etc/fstab file.
The commands in brief:
fdisk -l (to see partition information).
mkdir /mnt/windows (create windows directory for mounting)
A sample entry in fstab:
/dev/hda1 /mnt/windows ntfs nls=utf8,umask=0222 0 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-29-2007 10:35 PM
тАО11-29-2007 10:35 PM
Re: How to access the Windows files in Linux
fdisk -l
then
mount -t ntfs
then in that mnt directory and that file u mentined above will give u the list of files. u can access it from there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2007 04:59 PM
тАО11-30-2007 04:59 PM
Re: How to access the Windows files in Linux
Else you can use evince to read pdf files.
About the first question (windows files):
Directly mount the windows partition in linux if you are using dual boot.
Use samba if the files are on some other XP machine connected to linux one.
Both methods are already explained in detail in previous threads.
Thanks
Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2007 06:20 PM
тАО11-30-2007 06:20 PM