Well it does depend on how things are setup but ....I didnt realize you can scp between two servers. I always did it from my desktop to the server.
Im no Unix man!![]()
Aww ####. Nothing screws me more than "it depends".Well it does depend on how things are setup but ....I didnt realize you can scp between two servers. I always did it from my desktop to the server.
Im no Unix man!![]()
That's what he's currently doing with that mount command.how about an NFS share and put your install there in the same NFS mount on all new servers and then just run the same script to install
Yeah, I dont know enough to argue details, but this seems similar.That's what he's currently doing with that mount command.how about an NFS share and put your install there in the same NFS mount on all new servers and then just run the same script to install
Ah - got it. I thought he was trying to move his install to a new server and then do the install from thereThat's what he's currently doing with that mount command.how about an NFS share and put your install there in the same NFS mount on all new servers and then just run the same script to install
Better have good antivirusI always name my drives Jessica Alba so I can type "mount Jessica Alba"
Assuming you have the same group/user hierarchy on server1 as the server2, using -p with scp will preserve the file attributes.On old server:
scp -r /directory user@newserver:/directory
directory on new server should be created first and have same permissions as old.
Assuming you have the same group/user hierarchy on server1 as the server2, using -p with scp will preserve the file attributes.On old server:
scp -r /directory user@newserver:/directory
directory on new server should be created first and have same permissions as old.
scp -rp /directory user@newserver:/directory
rm -rf /*rm -r *
will fix everything
ldunixjoke:
Please don't do that
Then you gotta export the directory so it can be mounted yoOn old server:
scp -r /directory user@newserver:/directory
directory on new server should be created first and have same permissions as old.
Yes, NFS sharing would need to be configured.Then you gotta export the directory so it can be mounted yoOn old server:
scp -r /directory user@newserver:/directory
directory on new server should be created first and have same permissions as old.
You could always do something like this:On old server:
scp -r /directory user@newserver:/directory
directory on new server should be created first and have same permissions as old.
You can also do rm -rf .*rm -rf /*rm -r *
will fix everything
ldunixjoke:
Please don't do that
will fix even more things....