-
-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't run or start #5
Comments
Hey @The-SamminAter, In the command This means hfs.main and hfs.sec must be in the directory that you run the docker command from. |
If you run this code, in one block, you won't have trouble. You need 30GB of space to run this: mkdir -p images
cd images
wget https://images.sick.codes/hfs.sec.zst
wget https://images.sick.codes/hfs.main.zst
# decompress images, uses about 15GB
zstd -d hfs.main.zst
zstd -d hfs.sec.zst
docker pull sickcodes/docker-eyeos:latest
docker run -it --privileged \
--device /dev/kvm \
-e RAM=6 \
-e HFS_MAIN=./images/hfs.main \
-e HFS_SEC=./images/hfs.sec \
-p 2222:2222 \
-v "$PWD:/home/arch/docker-eyeos/images" \
-e "DISPLAY=${DISPLAY:-:0.0}" \
-v /tmp/.X11-unix:/tmp/.X11-unix \
sickcodes/docker-eyeos:latest |
Those folders are in /home/webserver/Downloads/images though, and I did run the command from that directory. |
That is what I did, except I changed the directories to match those on my computer. |
You should use Line 283 in e5f196a
|
Yeah this is correct, sorry been a few weeks since I used it. |
Sorry about the non-descriptive title, but I'm not sure what the(s) is/are, and am not very familiar with docker.
I am trying to run this on Linux Mint 20, with kernel v5.4.0-52-generic. I have installed qemu, kvm, and docker, have pulled sickcodes/docker-eyeos, and have downloaded and decompressed hfs.main.zst and hfs.sec.zst into
~/Downloads/images/
, and am currently cd'd into that directory.Here is what I run:
sudo docker run -it --privileged --device /dev/kvn -e RAM=6 -e HFS_MAIN=./hfs.main -e HFS_SEC=./hfs.sec -p 2222:2222 -v "$PWD:/home/webserver/Downloads/images" -e "DISPLAY=${DISPLAY:-:0.0}" -v /tmp/.X11-unix:/tmp/.X11-unix sickcodes/docker-eyeos:latest
That gives me this output:
I tried to connect via ssh ~15 times, every time I got the message
connection refused
.Is there something easy that needs to be done to be able to run this? I noticed that you've hard-coded the directory
/home/arch/docker-eyeos/
, I'm not familiar with docker though, so I don't know whether that could be causing an issue.The text was updated successfully, but these errors were encountered: