UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. gunnygordon
    G
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Groups 0

    gunnygordon

    @gunnygordon

    0
    Reputation
    15
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    gunnygordon Unfollow Follow

    Latest posts made by gunnygordon

    • RE: Import Contacts To Ubuntu Touch

      @normandc thanks for sharing.

      posted in Support
      G
      gunnygordon
    • RE: Import Contacts To Ubuntu Touch

      @dobey that is awesome. Thank you for sharing.

      posted in Support
      G
      gunnygordon
    • RE: Install CA-certificate

      You may get some ideas from the wlan certificate post below...

      askubuntu.com/questions/688522/wlan-certificate-on-ubuntu-touch

      posted in Support
      G
      gunnygordon
    • 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!

      posted in Support
      G
      gunnygordon