How to get code from my computer to my PinePhone - 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 to get code from my computer to my PinePhone (/showthread.php?tid=10678) Pages:
1
2
|
RE: How to get code from my computer to my PinePhone - natasha - 07-21-2020 What " mount -o rw,remount / " is for? RE: How to get code from my computer to my PinePhone - wibble - 07-22-2020 (07-21-2020, 05:20 PM)natasha Wrote: What " mount -o rw,remount / " is for?UBPorts normally runs with the rootfs mounted read-only. This command remounts it as read-write so that the 'apt install' can write to it. RE: How to get code from my computer to my PinePhone - natasha - 07-22-2020 thanks So, if I want to save data on my phone do I need to mounted also in write mode? RE: How to get code from my computer to my PinePhone - wibble - 07-22-2020 (07-22-2020, 01:10 PM)natasha Wrote: thanksGenerally, no. UBPorts puts user data on a separate writeable partition, and that's all you're meant to need to write to. Installing apps via apt isn't something you're meant to be doing, but with a few extra steps it can be made to work if you really want to. It's a different arrangement to the usual linux installations. They've probably got some documentation about why they decided to structure it the way they did somewhere on their site. RE: How to get code from my computer to my PinePhone - natasha - 07-22-2020 thanks |