Elmojo
-
Posts
5 -
Joined
-
Last visited
Reputation Activity
-
Elmojo reacted to mkultra in CSC Armbian for RK3318/RK3328 TV box boards
easy peasy!
ie
apt install docker.io apparmor
docker pull adguard/adguardhome:beta
docker run blah blah
eg https://hub.docker.com/r/adguard/adguardhome
have fun!
edit: to add a bit more...
with docker you download images then you 'create a container' which you then just stop/start
so ie I've just created a jellyfin container with
docker pull hotio/jellyfin:release
docker run --rm \ --name jellyfin \ -p 8096:8096 \ -e PUID=1000 \ -e PGID=1000 \ -e UMASK=002 \ -e TZ="Etc/UTC" \ hotio/jellyfin
now I just point a browser to ip:8096
keep a list of useful docker commands like
docker images
docker rmi <image name> (to remove an image)
docker ps -a (to list your containers)
docker rm <container>
docker stop/start <container>
-
Elmojo got a reaction from Ben N Voutour in CSC Armbian for RK3318/RK3328 TV box boards
Good evening all,
Using the excellent instructions by @jock in Post #1, I was able to get Debian Bullseye desktop [xfce] installed on my Pulierde T9 box.
Everything is up and running, I can connect to my network, etc... So .... now what? lol
I did this mostly as an interesting little exercise, and also because I'm loathe to throw away usable tech. However, now that it's a functional little linux box, what can I do with it?
I have no need of any sort media streamer/server box, since I have a full server in my house. I thought about maybe a pihole, or something to do with HomeAssistant, but I wouldn't know where to begin.
So here's my question: What should I do with this little beast now?
If it matters, this one is a RockChip 3328, 4GB RAM, 64GB ROM, Mali450 GPU
Thanks for all the hard work that went into making this project a possibility!
-E
-
Elmojo got a reaction from MX10.AC2N in CSC Armbian for RK3318/RK3328 TV box boards
Now that is something I may be interested in! Thanks for the ideas!
-
Elmojo got a reaction from Ben N Voutour in CSC Armbian for RK3318/RK3328 TV box boards
Now that is something I may be interested in! Thanks for the ideas!