Steam Link

Steam Link

USBMount: shortcut to mount USB drive to /mnt/disk
https://drive.google.com/file/d/0B2cSlWc2yl7EZHdWMzJJQkhHOHc/view?usp=sharing&resourcekey=0-Sz2FAbIHxz398tgjrE-bwA

Extract to FAT32 flash drive, boot with it plugged in.

As it turns out the shortcuts on the main screen can also just be basic scripts. After seeing mentions of auto mounting disks, figured I'd throw this together to let you mount it manually without having to use SSH.

Script is pretty basic and is as follows

#!/bin/sh if []; then mount /dev/block/sda1 /mnt/disk else mkdir /mnt/disk mount /dev/block/sda1 /mnt/disk fi

This could be vastly improved with checks to unmount on consecutive launches, but just wanted to throw this together for now.

Enjoy!
Last edited by parkerlreed [Linux represent]; Oct 22, 2021 @ 5:53pm
< >
Showing 1-15 of 15 comments
Awkwurdd Nov 24, 2017 @ 12:45pm 
Thanks for this
So much!
Also bump
Last edited by Awkwurdd; Nov 24, 2017 @ 12:45pm
P Jan 18, 2018 @ 2:58pm 
How include format (+32GB) NTFS ?
DavidHelkowski Jan 21, 2018 @ 1:38pm 
By the way, the Linux Kernel on the Steam Link is not configured to include NTFS write. If you want to be able to write to a NTFS formatted drive, then you will need to build a kernel module and load it to be able to do so.

To make writeable NTFS kernel module, the NTFS support itself must be built as a module. I am not sure if a dynamic loadable kernel module can overwrite something built in to the currently running kernel.
| EVIL5H7TSTREAM | Jan 24, 2018 @ 12:36pm 
Hello guys.
When mounting usb, the WI-FI driver falls off.
And after restarting STEAMLINK, I can not use wireless internet. Please tell me what to do.
KnightRyder Feb 1, 2018 @ 7:44pm 
Works! Thanks.
P Feb 4, 2018 @ 9:43am 
FAT32 only max 4GB file
P Feb 4, 2018 @ 11:29am 
If I use windows? NTFS... only add write in steamlink for steamlink :/
Last edited by P; Feb 4, 2018 @ 11:30am
John Lloyd Mar 17, 2018 @ 6:28am 
Havent tried your script yet, However THANKS in advance :steamhappy:
vic1707 Apr 8, 2018 @ 7:36am 
does anyone know how I can do to use my 2tb hard drive formatted in ExFAT?
CeScO85 Apr 9, 2018 @ 4:53am 
VVV
Last edited by CeScO85; Apr 9, 2018 @ 4:54am
CeScO85 Apr 9, 2018 @ 4:53am 
Originally posted by Vict1707:
does anyone know how I can do to use my 2tb hard drive formatted in ExFAT?
I think the steamlink only use the FAT32
vic1707 Apr 9, 2018 @ 9:21am 
Ok! If someone can validate this, because I have many movies really heavy around 8-9Gb...
Pinhead Sep 3, 2018 @ 11:25pm 
If got some Inspiration from your App @parkerlreed [Linux represent] and I tryed to make an SSH Enabler App but it wont recreate the enable_ssh.txt file after I removed it.

This is my Shell Script:
#!/bin/sh > /mnt/config/system/enable_ssh.txt
Its pretty basic too.

From Terminal I can remove and recreate the enable_ssh.txt file.
Last edited by Pinhead; Sep 3, 2018 @ 11:27pm
Originally posted by Pïnhëåd:
If got some Inspiration from your App @parkerlreed [Linux represent] and I tryed to make an SSH Enabler App but it wont recreate the enable_ssh.txt file after I removed it.

This is my Shell Script:
#!/bin/sh > /mnt/config/system/enable_ssh.txt
Its pretty basic too.

From Terminal I can remove and recreate the enable_ssh.txt file.

Umm why not

#!/bin/sh if [[ -f /mnt/config/system/enable_ssh.txt ]]; then rm /mnt/config/system/enable_ssh.txt else touch /mnt/config/system/enable_ssh.txt fi

That way every time you run the "application" it will toggle SSH on and off.
Last edited by parkerlreed [Linux represent]; Sep 6, 2018 @ 4:00am
clach04 Jun 6, 2019 @ 8:22pm 
I just posted https://github.com/clach04/steamlink-usbmounttoggle - supports umount (it toggles between mount and unmount).
< >
Showing 1-15 of 15 comments
Per page: 1530 50