Summary: Ok, this is the situation. I have built a Linux webserver to host a PHP/MySQL application that will allow browsing and streaming of my mp3 collection ...
Summary: Hello. Does anyone know how to mount a windows 2000 ntfs partition in Linux? Understand that it's read only but want to learn nevertheless. ...
Summary: Anyone had any luck printing from linux (redhat) using Samba to a Windows shared printer? I think it can be done but have only found two things in lo...
Summary: Basic Questiopn: I can mount a share using this command: smbmount //server/share /mount point How do I go about mounting it automatically? I can't ...
Summary: Hello all. really new to linux, i have just installed Redhat 7.2 I can mount a windows share fine to a specified folder.. what i'm looking to do is mo...
Summary: Using drakconf (under Mount Points) you might be able to set it up to mount your windows shares as smbfs on boot. Look under the Samba tab there. ...
Summary: Samba sounds right up your alley. It's the Unix-ish implementation of the SMB (server message block) protocal. Basically it allows Linux to participat...
Summary: I've never tried this myself. I have never needed to mount a windows share, If I need to I use a program called xfsamba, which is much like "My networ...
Summary: When auto mounting a windows share you would have to put your username and password in the mount command which would look something like this "mount -...
Summary: How do you have them connected? If you just ran a patch cable from the back of one computer to the other, you're not going to get anywhere. For sing...
Summary: You can mount it almost like mounting a fat partition. Here is an example.... Create a directory for the mounted file system; mkdir /mnt/windows Moun...
Summary: Hi , i got a problem i try to mount a Fat32 Drive from my Windows 2000 PC into my Linux Red Hat 7.0 but i always got message RPC timeout ... Network ...
Summary: mount the windows share as /home. you could try a script setup to mount it under the correct user rights. to research how to mount samba using the c...
Summary: try smbmount //Name of win95 box/Name of Share /MountPoint in your linuxBox to Mount the shares of the win95 or try mount -a /dev/hda1 /mnt -t auto (...
Summary: Are you sure of the partition type. To list the partitions type the command: $ fdisk -l /dev/hda To mount a /dev/hda4 fat32 partition type $ mount -t ...
Summary: 1) in /mnt, create a directory whatever 2) in /etc/fstab, enter the line "/dev/X /mnt/whatever Y ro,user,umask=000 0 0" where X = partition which you...
Summary: hi, when I install linux 7.1 I forgot to mount a partion so that I can share my work between win98 and linux. could you guy show me how to mount a p...
Summary: Dear sir, We have met a problem when trying to mount a DVD-Rom on a Linux box. The DVDs we want to read have been recorded using "GEAR pro DVD for Win...
Summary: I am trying to mount a network drive. I am pritty sure you chose access nfs drice after you do a ./fsconf. I go to add and I put the IP of the serve...
Summary: Samba is fine, but if you feel not quite familiar yet with it, you can still mount a WinXP share on your linux system. Assuming you have a user "userx...
Summary: I have a windows share mounted on my Linux box with samba. Is there not a way I can configure my /etc/fstab file so that it it is mounted automaticll...
Summary: The script for checking an mounting ----------------- #!/bin/sh # Find out the number of items in a directory, # e.g. check if the share is mounted. I...