View Single Post
Old 04-09-2004, 02:15 AM   #5 (permalink)
Latch
In Your Dreams
 
Latch's Avatar
 
Location: City of Lights
Quote:
Originally posted by nothingx
mmmm....

I was thinking he would want to do this from a boot disk since he's moving around /usr and that could have some OS stuff in it. I figured Linux would get unhappy if you started mucking around with the code it was running from. Maybe it wouldn't be a problem though, then maybe it's better to be safe.

Anyway, I was thinking there's no need for the /usrtmp dir because you can just throw the partition on /mnt. "mount /dev/hdb /mnt" or whatever. Then just cp -R /usr/* /mnt, umount /mnt, vi /etc/fstab, mount -a.

Edit: sorry if that isn't much of a coherent thought... I get that way when I start thinking about operating systems.
Makes sense to me

You may be right about the /usr/OS-stuff issue. I think because it loads that instance of the program into memory (and he's just doing a copy).. he'd be alright.

Mounting to /mnt or /usrtmp, doesn't make too much of a difference. Both do the same thing, just different names .
Latch is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73