0

I am fairly new to Ubuntu and I have just installed it like 10 minutes ago to replace Chrome OS. I do not know any commands currently or how to explore any Linux system to be exact. My question is; is it possible to use a USB drive for steam games and if so, how? When I try to download them onto the 16gb exsisting ssd I get the out of space message. When I try to save it on the usb I get a message saying something about the drive not having excute permission. Can I turn the FlashDrive into a harddrive?

  • It is nearly identicle but I am using an 32gb flashdrive that gives me the message "doesnt have execute permissions" I understand how to save in the location, I just dont know how to give my flashdrive executeable permissions – Tanner Horne Feb 22 '15 at 01:02
  • Try formatting the USB drive in ext4 format. Then you should be able to set the execute permission. – user68186 Feb 22 '15 at 04:15

1 Answers1

0

I wish you could turn a flash drive into a hard drive :P

But however you could use a usb for steam games (I think), all you have to do is create a soft link. Run this command replacing {YOUR_USERNAME} with your username and {YOUR_USB_PATH} with where your usb is mounted:

ln -s {YOUR_USB_PATH}/Steam /home/{YOUR_USERNAME}/.local/share/Steam

WARNING: This command is not tested, use at your own risk...

NOTE: How to find where your usb is mounted:

  1. Click on your USB in the sidebar.
  2. In the new window that opens, press CTRL+L
  3. The text at the top is where your usb is mounted, copy it and replace {YOUR_USB_PATH} in the command with it...
nulldev
  • 44