Mounting a hard drive from another computer

Mounting a hard drive from another computer

am 05.04.2008 04:55:34 von 2007

Hi

How do i mount a hard drive of another computer A t computer B?
Runs on linux.

Thanks

Re: Mounting a hard drive from another computer

am 05.04.2008 05:10:50 von unruh

2007 writes:

>Hi

>How do i mount a hard drive of another computer A t computer B?
>Runs on linux.

Not sue what you mean. Get a screwdriver. Switch off computer A. open the
case. unplug the hard drive from both the poser supply and the bus. undo
the screws and remove the hard drive. Reverse these on the second computer.

Is that what you meant? Or did your mean mounting using nfs? You do not
tell us which version of linux. But run the initscript to bring up
netwriorking and nfs. Set up /etc/exports to allow the system to export the
required directory. On the other machine run
mount A:/path/of/the/directory /path/to/mount -t nfs


>Thanks

Re: Mounting a hard drive from another computer

am 05.04.2008 05:25:59 von 2007

On Apr 4, 8:10 pm, Unruh wrote:
> 2007 writes:
> >Hi
> >How do i mount a hard drive of another computer A t computer B?
> >Runs on linux.
>
> Not sue what you mean. Get a screwdriver. Switch off computer A. open the
> case. unplug the hard drive from both the poser supply and the bus. undo
> the screws and remove the hard drive. Reverse these on the second computer.
>
> Is that what you meant? Or did your mean mounting using nfs? You do not
> tell us which version of linux. But run the initscript to bring up
> netwriorking and nfs. Set up /etc/exports to allow the system to export the
> required directory. On the other machine run
> mount A:/path/of/the/directory /path/to/mount -t nfs
>
> >Thanks

nfs, yes;

Redhat Enterprise Linux latest version.

Re: Mounting a hard drive from another computer

am 05.04.2008 07:18:10 von unruh

2007 writes:

>On Apr 4, 8:10 pm, Unruh wrote:
>> 2007 writes:
>> >Hi
>> >How do i mount a hard drive of another computer A t computer B?
>> >Runs on linux.
>>
>> Not sue what you mean. Get a screwdriver. Switch off computer A. open the
>> case. unplug the hard drive from both the poser supply and the bus. undo
>> the screws and remove the hard drive. Reverse these on the second computer.
>>
>> Is that what you meant? Or did your mean mounting using nfs? You do not
>> tell us which version of linux. But run the initscript to bring up
>> netwriorking and nfs. Set up /etc/exports to allow the system to export the
>> required directory. On the other machine run
>> mount A:/path/of/the/directory /path/to/mount -t nfs
>>
>> >Thanks

>nfs, yes;

>Redhat Enterprise Linux latest version.

ps aux|grep nfs
ps aux|grep mount

If these return nfsd and rpc.mountd as things running on the server then
you already have nfs running Otherwise make sure that nfs-utils is
installed.

If not do
service nfs start

then put the directory you want to export into /etc/exports, run exportfs
-a

Re: Mounting a hard drive from another computer

am 05.04.2008 07:38:54 von Dan Stromberg

On Fri, 04 Apr 2008 20:25:59 -0700, 2007 wrote:

> On Apr 4, 8:10 pm, Unruh wrote:
>> 2007 writes:
>> >Hi
>> >How do i mount a hard drive of another computer A t computer B? Runs
>> >on linux.
>>
>> Not sue what you mean. Get a screwdriver. Switch off computer A. open
>> the case. unplug the hard drive from both the poser supply and the bus.
>> undo the screws and remove the hard drive. Reverse these on the second
>> computer.
>>
>> Is that what you meant? Or did your mean mounting using nfs? You do not
>> tell us which version of linux. But run the initscript to bring up
>> netwriorking and nfs. Set up /etc/exports to allow the system to export
>> the required directory. On the other machine run mount
>> A:/path/of/the/directory /path/to/mount -t nfs
>>
>> >Thanks
>
> nfs, yes;
>
> Redhat Enterprise Linux latest version.

There are those who feel that instead of using NFS for Linux <-> Linux
shared filesystems, you should use CIFS.

Samba + smbmount are not as bad as one might think. If they detect they
are Linux <-> Linux, they kick into a more powerful mode - EG, Symlinks
work.

Anyway, back to NFS. If you select NFS over CIFS and have trouble with
it, you might try http://stromberg.dnsalias.org/~strombrg/NFS-
troubleshooting-2.html

Re: Mounting a hard drive from another computer

am 05.04.2008 21:23:40 von Edward Rosten

On Apr 4, 8:55 pm, 2007 wrote:
> Hi
>
> How do i mount a hard drive of another computer A t computer B?
> Runs on linux.

NFS or sshfs are two good options. sshfs is pretty slow, but very
secure and needs nothing more than an SSH server (pretty common)
running on the remote machine. You can reliably use this whereve you
would be happy to use SSH. Once you have sshfs setup on B, you can
mount as many A's as you like without any real effort. sshfs requires
a FUSE.

-Ed


--
(You can't go wrong with psycho-rats.)(http://mi.eng.cam.ac.uk/~er258)

/d{def}def/f{/Times s selectfont}d/s{11}d/r{roll}d f 2/m{moveto}d -1
r 230 350 m 0 1 179{ 1 index show 88 rotate 4 mul 0 rmoveto}for/s 12
d f pop 235 420 translate 0 0 moveto 1 2 scale show showpage

Re: Mounting a hard drive from another computer

am 06.04.2008 20:00:52 von 2007

On Apr 4, 10:18 pm, Unruh wrote:
> 2007 writes:
> >On Apr 4, 8:10 pm, Unruh wrote:
> >> 2007 writes:
> >> >Hi
> >> >How do i mount a hard drive of another computer A t computer B?
> >> >Runs on linux.
>
> >> Not sue what you mean. Get a screwdriver. Switch off computer A. open the
> >> case. unplug the hard drive from both the poser supply and the bus. undo
> >> the screws and remove the hard drive. Reverse these on the second computer.
>
> >> Is that what you meant? Or did your mean mounting using nfs? You do not
> >> tell us which version of linux. But run the initscript to bring up
> >> netwriorking and nfs. Set up /etc/exports to allow the system to export the
> >> required directory. On the other machine run
> >> mount A:/path/of/the/directory /path/to/mount -t nfs
>
> >> >Thanks
> >nfs, yes;
> >Redhat Enterprise Linux latest version.
>
> ps aux|grep nfs
> ps aux|grep mount
>
> If these return nfsd and rpc.mountd as things running on the server then
> you already have nfs running Otherwise make sure that nfs-utils is
> installed.
>
> If not do
> service nfs start
>
> then put the directory you want to export into /etc/exports, run exportfs
> -a

Is the above is what you meant by "But run the initscript to bring up
netwriorking and nfs"

If not what is exactly "run the initscript"

Thanks

Re: Mounting a hard drive from another computer

am 07.04.2008 05:33:20 von 2007

On Apr 4, 10:18 pm, Unruh wrote:
> 2007 writes:
> >On Apr 4, 8:10 pm, Unruh wrote:
> >> 2007 writes:
> >> >Hi
> >> >How do i mount a hard drive of another computer A t computer B?
> >> >Runs on linux.
>
> >> Not sue what you mean. Get a screwdriver. Switch off computer A. open the
> >> case. unplug the hard drive from both the poser supply and the bus. undo
> >> the screws and remove the hard drive. Reverse these on the second computer.
>
> >> Is that what you meant? Or did your mean mounting using nfs? You do not
> >> tell us which version of linux. But run the initscript to bring up
> >> netwriorking and nfs. Set up /etc/exports to allow the system to export the
> >> required directory. On the other machine run
> >> mount A:/path/of/the/directory /path/to/mount -t nfs
>
> >> >Thanks
> >nfs, yes;
> >Redhat Enterprise Linux latest version.
>
> ps aux|grep nfs
> ps aux|grep mount
>
> If these return nfsd and rpc.mountd as things running on the server then
> you already have nfs running Otherwise make sure that nfs-utils is
> installed.
>
> If not do
> service nfs start
>
> then put the directory you want to export into /etc/exports, run exportfs
> -a

Hi

Would the following perhaps the right order:

initscript to bring up netwriorking and nfs (how ??)

ps aux|grep nfs
ps aux|grep mount

If these return nfsd and rpc.mountd as things running on the server
then
you already have nfs running Otherwise make sure that nfs-utils is
installed.

If not do
service nfs start

then put the directory you want to export into /etc/exports - Set up /
etc/exports to allow the system to export the
required directory. On the other machine run
mount A:/path/of/the/directory /path/to/mount -t nfs

run exportfs (How do I do this?)

Re: Mounting a hard drive from another computer

am 08.04.2008 03:26:50 von Allistar

2007 wrote:

> On Apr 4, 10:18 pm, Unruh wrote:
>> 2007 writes:
>> >On Apr 4, 8:10 pm, Unruh wrote:
>> >> 2007 writes:
>> >> >Hi
>> >> >How do i mount a hard drive of another computer A t computer B?
>> >> >Runs on linux.
>>
>> >> Not sue what you mean. Get a screwdriver. Switch off computer A. open
>> >> the case. unplug the hard drive from both the poser supply and the
>> >> bus. undo the screws and remove the hard drive. Reverse these on the
>> >> second computer.
>>
>> >> Is that what you meant? Or did your mean mounting using nfs? You do
>> >> not tell us which version of linux. But run the initscript to bring up
>> >> netwriorking and nfs. Set up /etc/exports to allow the system to
>> >> export the required directory. On the other machine run
>> >> mount A:/path/of/the/directory /path/to/mount -t nfs
>>
>> >> >Thanks
>> >nfs, yes;
>> >Redhat Enterprise Linux latest version.
>>
>> ps aux|grep nfs
>> ps aux|grep mount
>>
>> If these return nfsd and rpc.mountd as things running on the server then
>> you already have nfs running Otherwise make sure that nfs-utils is
>> installed.
>>
>> If not do
>> service nfs start
>>
>> then put the directory you want to export into /etc/exports, run exportfs
>> -a
>
> Is the above is what you meant by "But run the initscript to bring up
> netwriorking and nfs"
>
> If not what is exactly "run the initscript"

Typically that's:

/etc/init.d/nfsd start

and

/etc/init.d/net.eth0 start

(the last command will vary quite a bit depending on distros and how you
network is setup. I would assume your network is up and running anyway.)
--
A.

Re: Mounting a hard drive from another computer

am 08.04.2008 16:09:47 von spike1

Edward Rosten did eloquently scribble:
> On Apr 4, 8:55 pm, 2007 wrote:
>> Hi
>>
>> How do i mount a hard drive of another computer A t computer B?
>> Runs on linux.

> NFS or sshfs are two good options. sshfs is pretty slow, but very
> secure and needs nothing more than an SSH server (pretty common)
> running on the remote machine. You can reliably use this whereve you
> would be happy to use SSH. Once you have sshfs setup on B, you can
> mount as many A's as you like without any real effort. sshfs requires
> a FUSE.

Wow, that zx spectrum emulator's getting versatile.
:)
--
____________________________________________________________ __________________
| spike1@freenet.co.uk | |
|Andrew Halliwell BSc(hons)| "The day Microsoft makes something that doesn't |
| in | suck is probably the day they start making |
| Computer science | vacuum cleaners" - Ernst Jan Plugge |
------------------------------------------------------------ ------------------

Re: Mounting a hard drive from another computer

am 08.04.2008 16:51:00 von Ignoramus15795

On 2008-04-05, Edward Rosten wrote:
> On Apr 4, 8:55 pm, 2007 wrote:
>> Hi
>>
>> How do i mount a hard drive of another computer A t computer B?
>> Runs on linux.
>
> NFS or sshfs are two good options. sshfs is pretty slow, but very
> secure and needs nothing more than an SSH server (pretty common)
> running on the remote machine. You can reliably use this whereve you
> would be happy to use SSH. Once you have sshfs setup on B, you can
> mount as many A's as you like without any real effort. sshfs requires
> a FUSE.

NFS and Samba are two standard approaches. I use NFS and I am very
happy, it is perfect for a home setting. I use it to export my
directory with movies to all home computers. Directories are exported
read only, which adds a little extra safety.

i