Replies: 1 comment
-
Sorry that the notification of this discussion has only send to my another Github account,so maybe the reply is late. #mount your microsd
mkdir -p test
mount /dev/block/mmcblk0p1 ./test
if [[ $? != 0 ]];then
LOOP=$(losetup -f)
losetup $LOOP /dev/block/mmcblk0p1
mount $LOOP ./test
fi
#start the daemon
ruri -D
#run the container in unshare mode
ruri -u -w ./test |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
well, first I want to apologize for asking again (the other time it was with the termux-container)
the question is: can i do the same thing with ruri? just like we did here ♡
Beta Was this translation helpful? Give feedback.
All reactions