Results 1 to 8 of 8
friendz..
how to share files in FC9.
me and my friend using FC9.... how to share files between two FC9.
normally i use shell link through mc... but i dont ...
- 05-29-2009 #1
linux to linux
friendz..
how to share files in FC9.
me and my friend using FC9.... how to share files between two FC9.
normally i use shell link through mc... but i dont have mc.
thanks in advance
- 05-29-2009 #2
If you want to transfer files/directory then use scp command
If you are interested in sharing directory with another machine,use nfs. It's pretty simple.
Make sure nfs daemons running on both machines.
First setup the server
Setting Up an NFS Server
and then client
Setting up an NFS Client- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 05-29-2009 #3
i did the following....
SERVER:
vi /etc/exports
/usr IPaddress_of_client(ro)
service nfs start
now im able to see nfs running..
CLIENT:
service nfs start
mount IPadd_of_server :/usr
but im not getting anything in client.....
- 05-29-2009 #4
In server you need to run the command
exportfs -va
and make sure you have correct entries in /etc/hosts.allow and /etc/hosts.allow files as mention in previous link.- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 05-29-2009 #5
error comes like
mount.nfs : Internel error
- 05-29-2009 #6
try disabling any firewall in both machines using command
Make sure all nfs daemons are getting stoppped and restarted while/etc/init.d/iptables stop
and then check this link looks like similar issue.service nfs restart
nfs internal error - FedoraForum.org
and post your exact error message with error numbers ,if any.- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 06-01-2009 #7
k..
can you give me an example how to use scp...
jay(10.x.x.xx) wants to share /usr/sample.txt with siva(10.x.x.yy)
i tried with man page and googled...
but "No such file or directory" is coming...scp siva@10.x.x.xx /usr/sample.txt
file is there im sure..
- 06-01-2009 #8
Copying a file called /home/lg/text.txt from local machine (10.237.214.254) to remote machine (10.237.214.250) under location /root
Here it's (I'm logged into localmachine)
Now it prompt for root password of remote machine . and files are transferred.scp /home/lg/text.txt root@10.237.214.250:/root
if you want copy remote machines files say /root/remote.txt to localmachine /tmp
then use
(I logged into localmachine)
scp root@10.237.214.250:/root/remote.txt /tmp
If you want to copy directory (/home/lg) then use -r option with scp
I think nowscp -r /home/lg root@10.237.214.250:/rootwill help youman scp- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------


Reply With Quote