@normandc thanks for sharing.
Latest posts made by gunnygordon
-
RE: Import Contacts To Ubuntu Touch
@dobey that is awesome. Thank you for sharing.
-
RE: Install CA-certificate
You may get some ideas from the wlan certificate post below...
askubuntu.com/questions/688522/wlan-certificate-on-ubuntu-touch
-
Import Contacts To Ubuntu Touch
Use Ubuntu to import your contacts into your Ubuntu Touch device
Export your contacts in .vcf format
Run to following command and (phone-contacts-touch.vcf) file will be created
$ cat contacts.vcf | sed -e "s/END:VCARD/END:VCARD\n/" > phone-contacts-touch.vcf
Enable Developer mode on your Ubuntu Touch device
Settings > About > Developer mode
Connect to your Ubuntu Touch device with a USB cable and run the following commands to push phone-contacts-touch.vcf to your device
$ sudo apt install adb
$ adb push phone-contacts-touch.vcf /home/phablet/Documents
From terminal on your Ubuntu Touch device and run the following command
$ syncevolution --import ~/Documents/phone-contacts-touch.vcf backend=evolution-contacts database=Personal
Import is complete. Have fun!