![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Windows & DOS: Issues & Discussions Questions involving Unix to Windows (Desktop or Server) go here. Any Windows/DOS questions should go here as well. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Enterprise Unix Roundup: The Ghost of Unix Future - Server Watch | iBot | UNIX and Linux RSS News | 0 | 12-19-2007 09:20 AM |
| Running UNIX commands remotely in Windows box from Unix box – avoid entering password | D.kalpana | UNIX for Dummies Questions & Answers | 1 | 04-20-2007 02:24 AM |
| FTP script for sending a file from one unix directory to another unix server director | raja_1234 | Shell Programming and Scripting | 1 | 11-30-2006 04:57 AM |
| Unix Sco Open Server, Windows Computers Problem Access Unix Shared Files Help!!!!! | haggo | Filesystems, Disks and Memory | 2 | 08-23-2006 08:39 AM |
| Unix History Question: Why are filenames/dirnames case sentsitive in Unix? | deckard | UNIX for Dummies Questions & Answers | 3 | 03-26-2005 10:59 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
win,unix
hi,
Could anyone tell me mounting windows directories in unix.I have used mount command in all directions like mounting hd00,hd1,hd2,hd3 and so on but that don't work for me Mohan |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
linking
you can only mount partitions so far i know. but i want that dir /win/desktop is c:\windows\desktop i simply mount c:/mnt/win and then type ln -s /mnt/win/windows/desktop /win and you can go to /win/desktop to see you c:\windows\desktop directory
|
|
#3
|
|||
|
|||
|
Mounting Win Partations/directories on UNIX filesystems
It might pay to check up on the option syntax for the mount command for your UNIX machine as they can vary with UNIX flavour. For example, I can mount my WIN C drive on Linux machine (pationed with Windows) with the command:
mount -t vfat /dev/hda1 /dosc So for example, if you want to mount the C drive every time you log on to your machine, you could apply the following script in your .bashrc file (for BASH) or .cshrc (for C shell) in your home directory if test -d /dosc; then if test -s /dosc/boot.ini; then echo "Dosc is mounted" else mount -t vfat /dev/hda1 /dosc fi else mkdir /dosc mount -t vfat /dev/hda1 /dosc fi which mounts the C drive on to the /dosc directory, upon startup. Try to ensure you have no spaces in your Windows directories/files, that you are mounting to the UNIX files system. |
|||
| Google The UNIX and Linux Forums |