<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ubuntu.webarch.uk/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matthias</id>
	<title>UbuntuPhone - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ubuntu.webarch.uk/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matthias"/>
	<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/wiki/Special:Contributions/Matthias"/>
	<updated>2026-04-23T01:17:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.6</generator>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=USB_networking&amp;diff=36</id>
		<title>USB networking</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=USB_networking&amp;diff=36"/>
		<updated>2015-04-18T09:09:12Z</updated>

		<summary type="html">&lt;p&gt;Matthias: Created page with &amp;quot; USB networking: tethering   For networking the bq supports tethering via an USB device. Connect the phone with your Linux, FreeBSD, ... whatever workstation and run the  foll...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
USB networking: tethering&lt;br /&gt;
 &lt;br /&gt;
For networking the bq supports tethering via an USB device. Connect the phone with your Linux, FreeBSD, ... whatever workstation and run the &lt;br /&gt;
following in the terminal app:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
android-gadget-service enable rndis&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
that will switch the USB port in the phone from '''MTP''' to '''tethering''' and create a 'rndis0' network device whith the IP addr '''10.42.0.1''' (seems to be static or configured); at the same time it offers to the connected computer an IP via DHCP (somehow it takes sometime);&lt;br /&gt;
 &lt;br /&gt;
And SSH is fine too as:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
ssh phablet@10.42.0.1&lt;br /&gt;
Welcome to Ubuntu Utopic Unicorn (development branch) (GNU/Linux 3.4.67 armv7l) &amp;gt; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
The routing to Internet works as well fine and all is '''NAT'ed''' behind the best interface to use (wlan0 if Wifi is up too):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
netstat -rn&lt;br /&gt;
Kernel IP routing table&lt;br /&gt;
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface&lt;br /&gt;
0.0.0.0         192.168.2.1     0.0.0.0         UG        0 0          0 wlan0&lt;br /&gt;
10.42.0.0       0.0.0.0         255.255.255.0   U         0 0          0 rndis0&lt;br /&gt;
172.28.23.131   0.0.0.0         255.255.255.255 UH        0 0          0 ccmni0&lt;br /&gt;
192.168.2.0     0.0.0.0         255.255.255.0   U         0 0          0 wlan0&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
How can I set it as default to rndis enabled? &lt;br /&gt;
 &lt;br /&gt;
Oliver Grawert:&lt;br /&gt;
you cant, it is hardcoded on boot to always have working mtp (until&lt;br /&gt;
here is a UI option to turn it on or off, we want regular users to&lt;br /&gt;
lways be able to exchange files), but you can override it in a user&lt;br /&gt;
pstart job that runs at a later point ...&lt;br /&gt;
 &lt;br /&gt;
create /home/phablet/.config/upstart/rndis.conf with the following&lt;br /&gt;
content:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
start on started indicator-network&lt;br /&gt;
&lt;br /&gt;
task&lt;br /&gt;
&lt;br /&gt;
script&lt;br /&gt;
    android-gadget-service enable rndis&lt;br /&gt;
end script&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
when the interface rndis0 is enabled, somehow HTTPS access to&lt;br /&gt;
the Ubuntu's app store is no longer possible; investigating further ...&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
[[Category:SSH]] &lt;br /&gt;
[[Category:USB]]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=35</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=35"/>
		<updated>2015-04-18T08:54:03Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki has been created to document things you can do with the command line on an Ubuntu Phone.&lt;br /&gt;
&lt;br /&gt;
People with accounts with administrator permissions can [https://ubuntu-phone.host1.webarch.net/w/index.php?title=Special:UserLogin/signup create accounts for other people].&lt;br /&gt;
&lt;br /&gt;
== Content ==&lt;br /&gt;
&lt;br /&gt;
# [[SSH access through Wifi]] &amp;amp;mdash; How to get SSH access to the Ubuntu Phone via Wifi&lt;br /&gt;
# [[USB networking ]] &amp;amp;mdash; How to get SSH access through USB networking&lt;br /&gt;
# [[Install Packages]] &amp;amp;mdash; make the filesystem read-write and install additional &amp;lt;code&amp;gt;.deb&amp;lt;/code&amp;gt; packages&lt;br /&gt;
# [[Find Phone]] &amp;amp;mdash; this is a script to find your phone on the local network by it's Mac address&lt;br /&gt;
# [[Encrypted Home]] &amp;amp;mdash; add an additional account and create an encrypted home directory for it&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# this is a test of the syntax highlighting&lt;br /&gt;
echo &amp;quot;hello world!&amp;quot; | sed 's/world/Ubuntu phone/'&lt;br /&gt;
hello Ubuntu phone!&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Localisation#Translation_resources Localise MediaWiki for your language]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=34</id>
		<title>SSH access through Wifi</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=34"/>
		<updated>2015-04-18T08:43:46Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
How to get SSH access to the ubuntu-phone via Wifi:&lt;br /&gt;
&lt;br /&gt;
Login via terminal app, you will be user 'phablet' (the password is the unlock number).&lt;br /&gt;
&lt;br /&gt;
Enable SSH service with (remains after boot):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
android-gadget-service enable ssh&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fetch your public key to the Phone from some place:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
wget http://www.from.your.site/id_rsa.pub&lt;br /&gt;
mkdir .ssh&lt;br /&gt;
chmod 0700 .ssh&lt;br /&gt;
mv id_rsa.pub .ssh/authorized_keys&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can look up your IP on the phone and use ssh to connect:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
ip addr show wlan0|grep inet&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
from your workstation use:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
ssh phablet@IP-addr-from-above-command&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
SSH-in is even possible when the device is locked and black; don't know&lt;br /&gt;
if this is intention that it does not suspend; the configuration goes like this&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
&lt;br /&gt;
* [http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041 http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041]&lt;br /&gt;
* [[Find Phone]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:SSH]]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=27</id>
		<title>SSH access through Wifi</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=27"/>
		<updated>2015-04-18T07:22:10Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
How to get SSH access to the ubuntu-phone via Wifi:&lt;br /&gt;
&lt;br /&gt;
Login via terminal app, you will be user 'phablet' (the password is the unlock number).&lt;br /&gt;
&lt;br /&gt;
Enable SSH service with (remains after boot):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ android-gadget-service enable ssh&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fetch your public key to the Phone from some place:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ wget http://www.from.your.site/id_rsa.pub&lt;br /&gt;
$ mkdir .ssh&lt;br /&gt;
$ chmod 0700 .ssh&lt;br /&gt;
$ mv id_rsa.pub .ssh/authorized_keys&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can look up your IP on the phone and use ssh to connect:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ ip addr show wlan0|grep inet&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
from your workstation use:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ ssh phablet@IP-addr-from-above-command&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
SSH-in is even possible when the device is locked and black; don't know&lt;br /&gt;
if this is intention that it does not suspend; the configuration goes like this&lt;br /&gt;
&lt;br /&gt;
see also: &lt;br /&gt;
[http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041 http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=26</id>
		<title>SSH access through Wifi</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=SSH_access_through_Wifi&amp;diff=26"/>
		<updated>2015-04-18T07:19:16Z</updated>

		<summary type="html">&lt;p&gt;Matthias: Created page with &amp;quot;  How to get SSH access to the ubuntu-phone via Wifi:  Login via terminal app, you will be user 'phablet' (the password is the unlock number).  Enable SSH service with (remain...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
How to get SSH access to the ubuntu-phone via Wifi:&lt;br /&gt;
&lt;br /&gt;
Login via terminal app, you will be user 'phablet' (the password is the unlock number).&lt;br /&gt;
&lt;br /&gt;
Enable SSH service with (remains after boot):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ android-gadget-service enable ssh&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fetch your public key to the Phone from some place:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ wget http://www.unixarea.de/id_rsa.pub&lt;br /&gt;
$ mkdir .ssh&lt;br /&gt;
$ chmod 0700 .ssh&lt;br /&gt;
$ mv id_rsa.pub .ssh/authorized_keys&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can look up your IP on the phone and use ssh to connect:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ ip addr show wlan0|grep inet&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
from your workstation use:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
ssh phablet@IP-addr-from-above-command&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
SSH-in is even possible when the device is locked and black; don't know&lt;br /&gt;
if this is intention that it does not suspend; the configuration goes like this&lt;br /&gt;
&lt;br /&gt;
see also: &lt;br /&gt;
[http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041 http://askubuntu.com/questions/348714/how-can-i-access-my-ubuntu-phone-over-ssh/599041#599041]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=25</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=25"/>
		<updated>2015-04-18T07:13:16Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki has been created to document things you can do with the command line on an Ubuntu Phone.&lt;br /&gt;
&lt;br /&gt;
People with accounts with administrator permissions can [https://ubuntu-phone.host1.webarch.net/w/index.php?title=Special:UserLogin/signup create accounts for other people].&lt;br /&gt;
&lt;br /&gt;
== Content ==&lt;br /&gt;
&lt;br /&gt;
# [[SSH access through Wifi]] &amp;amp;mdash; How to get SSH access to the Ubuntu Phone via Wifi&lt;br /&gt;
# [[Install Packages]] &amp;amp;mdash; make the filesystem read-write and install additional &amp;lt;code&amp;gt;.deb&amp;lt;/code&amp;gt; packages&lt;br /&gt;
# [[Find Phone]] &amp;amp;mdash; this is a script to find your phone on the local network by it's Mac address&lt;br /&gt;
# [[Encrypted Home]] &amp;amp;mdash; add an additional account and create an encrypted home directory for it&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# this is a test of the syntax highlighting&lt;br /&gt;
echo &amp;quot;hello world!&amp;quot; | sed 's/world/Ubuntu phone/'&lt;br /&gt;
hello Ubuntu phone!&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Localisation#Translation_resources Localise MediaWiki for your language]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=24</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=24"/>
		<updated>2015-04-18T07:11:39Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki has been created to document things you can do with the command line on an Ubuntu Phone.&lt;br /&gt;
&lt;br /&gt;
People with accounts with administrator permissions can [https://ubuntu-phone.host1.webarch.net/w/index.php?title=Special:UserLogin/signup create accounts for other people].&lt;br /&gt;
&lt;br /&gt;
== Content ==&lt;br /&gt;
&lt;br /&gt;
# [[Install Packages]] &amp;amp;mdash; make the filesystem read-write and install additional &amp;lt;code&amp;gt;.deb&amp;lt;/code&amp;gt; packages&lt;br /&gt;
# [[Find Phone]] &amp;amp;mdash; this is a script to find your phone on the local network by it's Mac address&lt;br /&gt;
# [[Encrypted Home]] &amp;amp;mdash; add an additional account and create an encrypted home directory for it&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# this is a test of the syntax highlighting&lt;br /&gt;
echo &amp;quot;hello world!&amp;quot; | sed 's/world/Ubuntu phone/'&lt;br /&gt;
hello Ubuntu phone!&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Localisation#Translation_resources Localise MediaWiki for your language]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
	<entry>
		<id>https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=5</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ubuntu.webarch.uk/w/index.php?title=Main_Page&amp;diff=5"/>
		<updated>2015-04-17T20:12:43Z</updated>

		<summary type="html">&lt;p&gt;Matthias: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This wiki has been created to document things you can do with the command line on an Ubuntu Phone.&lt;br /&gt;
&lt;br /&gt;
People with accounts with administrator permissions can [https://ubuntu-phone.host1.webarch.net/w/index.php?title=Special:UserLogin/signup create accounts for other people].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# this is a test of the syntax highlighting&lt;br /&gt;
echo &amp;quot;hello world!&amp;quot; | sed 's/world/Ubuntu phone/'&lt;br /&gt;
hello Ubuntu phone!&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Localisation#Translation_resources Localise MediaWiki for your language]&lt;/div&gt;</summary>
		<author><name>Matthias</name></author>
	</entry>
</feed>