On Mon, Oct 01, 2001 at 01:21:32AM -0700, linus kumar wrote: > > I have connected the windows hard disk as a secondary > hdd to linux machine. How can i see this windows hard > disk on linux machine. > Can you please help me out. > ---end quoted text---
If the second HDD is picked up by your BIOS, it will show in the boot up process. If yes, by all probabilites it is /dev/hdb. You may have other Win partitions on this disk. The best bet is to do (as root): fdisk -l /dev/hdb This will give an output which will have the filesystem on thr rightmost column. Make a mount point ... then mount this disk and test out. mount -t [type] /dev/hdN /mnt/win-c Where type could be any of msdos or vfat If you can see this, and things work normally, you can have an entry in /etc/fstab to load it automatically. /dev/hda1 /mnt/dos-c vfat rw,exec,nodev,nosuid 2 2 HTH Bish -- : ####[ Linux One Stanza Tip (LOST) ]########################### Sub : Sysadmin utils (add / delete groups) LOST #108 To add or delete new groups on your system, as root, use the utilities groupadd and groupdel ... Note in some distros it is addgroup and delgroup. GID and group needs specification. Syntax: "groupadd -g gid group" AND "groupdel group" ####<[EMAIL PROTECTED]>#################################### : _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
