Just got my brand-new Aquaris M10 ubuntu edition - but I don't seem to get beyond the few apps that are on the left-hand menu. How do I get to the shell? How do I start sshd?
Asked
Active
Viewed 430 times
1 Answers
3
I got my Aquaris M10 today as well and figured our how to start the shell:
- slide in the Launcher bar by swipe in from the left and click the big orange icon
- slide in "Manage" by swipe in from the bottom
- click on Apps and there you'll find the "Terminal"
To make Terminal icon sticky in Launcher bar, tap and hold Terminal icon until a sub menu opens and stickt it.
I also struggled with sshd and all solutions I found in Internet were too hacky and didn't work. But I found out, how to get sshd running:
To start sshd in Aquarius M10 enter these commands in Terminal:
sudo su
ssh-keygen -A
mkdir /var/run/sshd
/usr/sbin/sshd
Then connect from a computer in same network to your Aquarius M10 by typing:
ssh phablet@192.168.1.153
...and you should be connected. Replace the IP address above with your M10's IP address.
Edit: I figured out, that the tablet only accepts ssh connections while Terminal is the active application on tablet. But the good thing is, even when in standby, sshd works.

Rainer Joswig
- 103

PeterN
- 91
openssh-server
package? – Apr 20 '16 at 05:35&
at the end of the/usr/bin/sshd
command will run it even when the Terminal is closed (assuming the Terminal on Phone hasbash
). – Apr 20 '16 at 05:52