November 13, 20223 yr I'm trying to setup a autostart encrypted unraid system. I was using space invaders video on how to do so but it seems to not work on the current unraid version. I think all i have to do is make a file called keyfile with my password inside it then upload it to my domain.com and add a line to the go file on the USB Flash drive. Can anyone tell me if this will work? Spaceinvader says it will load into the ram so anytime you power off it's gone. wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile Edited November 13, 20223 yr by david97
November 13, 20223 yr 5 minutes ago, david97 said: I'm trying to setup a autostart encrypted unraid system. I was using space invaders video on how to do so but it seems to not work on the current unraid version. I think all i have to do is make a file called keyfile with my password inside it then upload it to my domain.com and add a line to the go file on the USB Flash drive. Can anyone tell me if this will work? Spaceinvader says it will load into the ram so anytime you power off it's gone. wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile Have you put this into the go fi!e before the emhttp start. /boot/config/go Edited November 13, 20223 yr by SimonF
November 13, 20223 yr 6 minutes ago, david97 said: How do i access my flash drive without putting it into another PC? open term cd /boot/config nano go root@Tower:~# cat /boot/config/go #!/bin/bash # Start the Management Utility wget --ftps-implicit --user=pi --password='x' ftp://x/files/keyfile -O /root/keyfile /usr/local/sbin/emhttp & root@Tower:~#
November 13, 20223 yr Author I know very little about command line. My go file contains this as stock. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & I modify my go file like this? #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile What file extension should the keyfile be? I'm using notepad ++ Thanks for the help! Edited November 13, 20223 yr by david97
November 13, 20223 yr 23 minutes ago, david97 said: I know very little about command line. My go file contains this as stock. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & I modify my go file like this? #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile What file extension should the keyfile be? I'm using notepad ++ Thanks for the help! No extension, you need to put the wget before the emhttp line as that is the line that starts the GUI.
November 13, 20223 yr Author Like so? #!/bin/bash # Start the Management Utility wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile /usr/local/sbin/emhttp &
November 13, 20223 yr 25 minutes ago, david97 said: Like so? #!/bin/bash # Start the Management Utility wget --ftps-implicit --user=myusername--password='1234' ftp://mydomain/keyfile -0 /root/keyfile /usr/local/sbin/emhttp & Yes
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.