On 3 Jul 2002, at 0:00, Automatic digest processor wrote: > ... snip ... > So how should this file format be send to Linux server. > > Ex c:/example.txt interpreted by Linux ? > > Do I need to modify this so that Linux can understand ?
Yes you do. I'm not sitting at a Linux system at the moment so I can't check this, but you have to find out where the Windows c: disk is mounted in the Linux file system. If I remember correctly, you need to look at the file named /etc/fstab, i.e., the file system table. It has (or needs to have) an entry that tells Linux what hard disk partition (e.g., hda1, or whatever) contains the Windows C: drive and gives a Linux name to it, which could be /C, /mnt/WindowsC, /DOS or who knows what. The names are arbitrary. If you don't know what I'm talking about, you'll have to look at the Linux file system documentation. Read the man pages for the mount command and the documentation for hard disk partitioning. Assuming that your file is called c:\example.txt in Windows and your Windows primary partition were mounted at a point named /DosC, then the access would be /DosC/example.txt. Also, you should be aware of any permissions issues on the windows file system. The files on the Windows partitions may have restricted read or write permissions with respect to ordinary (non-root) users. -- Alan Meyer AM Systems, Inc. Randallstown, MD, USA [EMAIL PROTECTED] =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
