Oh wow - I've done it. I've no idea if I'm doing this the right way or the best way, but it works.
Create temp diskLinode manager > Create a new disk image > Give it a
name and keep it as type "ext3"
Assign the disk to Configuration ProfileLinode manager > Edit configuration profile > Block device assignment >
Select the
name from the dropdown against /dev/xvdc
Edit fstabMake a backup copy of your /etc/fstab
Edit /etc/fstab with nano
Code:
nano /etc/fstab
Add the line highlighted red
root@test:/test# cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/xvda / ext3 noatime,errors=remount-ro 0 1
/dev/xvdb none swap sw 0 0
/dev/xvdc /test ext3 noatime,errors=remount-ro 0 1(I have set this to mount as /test by default
Save the file and reboot your linode
Mount the devicemount /dev/xvdc /test
DoneYou now have a storage area that sits outside of your operating system, so you can back files up here and trash the O/S
I'm not very experienced with Linux, so I've no doubt that there are better ways of doing this - but this seems easy and works for me.