Development
You can ssh to any running container to work in it (sudo lxc-start -n <container>
to start it)
Just run:
IP_C=$(( 150 + UID % 100 ))
ssh -i ssh-key/openxt build@192.168.${IP_C}.101 # 101 for oe, 102 for debian and 103 for centos
This should let you it without a password.
Note: ssh-ing as root is disabled, but root doesn't have a password. To login as root, either log in with the build user and sudo -i
, or lxc-attach -n <container>
as root. At this point, you may set a root password using passwd
.
TODO MORE TO COME....