![]() |
How I am running ubports as a daily driver - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: UBPorts on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=125) +---- Thread: How I am running ubports as a daily driver (/showthread.php?tid=9323) Pages:
1
2
|
How I am running ubports as a daily driver - tahayassen - 03-01-2020 1. Write ubports image to emmc 2. Extend root filesystem to 16GB as per https://askubuntu.com/a/958145 Code: sudo parted /dev/mmcblk2 3. Wifi work-around. Code: nano /home/phablet/fix-wifi.sh: RE: How I am running ubports as a daily driver - quixote - 03-01-2020 Thanks for this! Off to try it now. RE: How I am running ubports as a daily driver - supernova - 03-02-2020 Any app recommendations at this point? I have found OnionBrowser and Stellarium work very well. FluffyChat works but without E2E right now. WireUT works with some keyboard overlay issues. I am able to play music from Terminal with ffplay. RE: How I am running ubports as a daily driver - colin hodsdon - 03-02-2020 (03-02-2020, 11:47 AM)supernova Wrote: Any app recommendations at this point? I have found OnionBrowser and Stellarium work very well. FluffyChat works but without E2E right now. WireUT works with some keyboard overlay issues. I am able to play music from Terminal with ffplay.have you explored "brax.Me" app , and all the stuff "Rob Braxman " does on youtube , and in his store ,vpn`s, etc, etc RE: How I am running ubports as a daily driver - quixote - 03-02-2020 Well, I'm stuck on very simple stupid stuff. SSH used to work, doesn't now for some frustrating reason ["no route"], so I figured I'd just use nano on the phone. I can't get at CTRL-X to save the laboriously typed in file! Aargh. What's up with that?? Doing the little nano menu at the bottom left above the keyboard, selecting "Ctrl" and hitting X on the keyboard just gets me a nice "X" typed into the file. I can't find any combination of keys that gives me a Ctrl-X either. Eg something like ^[[X. It all just echoes to the file. It isn't one of the preset choices starting with Ctrl-R of course. That would be too easy. Aargh. Again. The line about using dpkg-reconfigure tzdata, after a LOT of difficulty getting the selection to change in the ncurses menu, is the one and only method that's worked to get time working! Thanks! RE: How I am running ubports as a daily driver - faeredia - 03-02-2020 (03-02-2020, 05:03 PM)quixote Wrote: ... That 'Ctrl' doesnt send a ctrl, its the name of the shortcut menu. Press and hold that little handburger menu, drag up to 'nano' and release, that'll give you nano shortcuts, including CTRL-O and CTRL-X. RE: How I am running ubports as a daily driver - quixote - 03-02-2020 (03-02-2020, 10:25 PM)faeredia Wrote: That 'Ctrl' doesnt send a ctrl, its the name of the shortcut menu. Ohhhhhhhhhh. Thanks! RE: How I am running ubports as a daily driver - quixote - 03-03-2020 So, finally got it all entered, scripts set up. (I'd love to know why my ability to ssh vaporized! Problem for another day.) Restarted. /etc/rc.local didn't seem to run on startup. ?? It is executable, but there wasn't any sound until I ran it manually. (I copied it to an executable in /home/phablet and ran that. Don't know if that makes a difference.) Ran the start modem script and fix wifi script. It allows me to send and receive SMS. W00T! Voice calling is showing signs of life, but is not functional on my system. The phone app comes up, recognizes the SIM, and dials, but the phone app crashes as soon as there's a connection. Calling in from another number, the phone rings on the other phone, but not on the pinephone, and then it goes to voicemail. There's no visual sign on the display of an incoming call either. Sound is on and functions in other apps, eg if the keyboard click is set to on. Wifi refuses to appear at all, in any way. Any ideas for improvements from here? RE: How I am running ubports as a daily driver - supernova - 03-03-2020 (03-02-2020, 05:03 PM)quixote Wrote: SSH used to work, doesn't now for some frustrating reason ["no route"], Did your IP address on the phone change? You can check that with: $ ip a You can also make sure your ssh server is running: $ sudo service ssh status RE: How I am running ubports as a daily driver - tahayassen - 03-06-2020 (03-03-2020, 02:06 AM)quixote Wrote: So, finally got it all entered, scripts set up. (I'd love to know why my ability to ssh vaporized! Problem for another day.) Restarted. Can you run Code: cat /etc/rc.local Code: phablet@ubuntu-phablet:~$ cat /etc/rc.local Honestly, not sure why the wifi is not working for you. Make sure that wifi is enabled in the UI and then run Code: ./fix-wifi.sh |