Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Storage | ||||||||
Line: 16 to 16 | ||||||||
The majority of PPE Linux machines are configured to mount home and data areas automatically. Home areas are located in /home , and data areas in /data . | ||||||||
Deleted: | ||||||||
< < | Most Linux machines are provided with world-writable scratch space located in /pcdisk/<HOSTNAME> . All users have permission to read and write files in this location. This scratch space is contained on the machine's local disk as opposed to being mounted over the network, and as such may be used to improve the performance of heavily I/O-dependent programs. You should transfer any important files out of this space after your program has completed, and should also clean up any temporary files. | |||||||
If you want to access storage from a Linux machine which has not been configured to mount these storage areas automatically, you can use CIFS![]() $ mount -t cifs cifs://ppesmb<PATH> <MOUNT_PATH> -o user=guphysics/<USERNAME> | ||||||||
Changed: | ||||||||
< < | For example, if user rabbit wished to mount the /data/carrots directory locally as /mnt , the following command would be needed: | |||||||
> > | For example, if user rabbit wished to mount the /data/carrots directory locally as /mnt/yummy , the following command would be needed: | |||||||
Changed: | ||||||||
< < | $ mount -t cifs cifs://ppesmb/data/carrots /mnt -o user=guphysics/rabbit | |||||||
> > | $ mount -t cifs cifs://ppesmb/data/carrots /mnt/yummy -o user=guphysics/rabbit | |||||||
Microsoft Windows |