Is it possible to migrate my iPhone 5c contacts to a Moto G with Android 5.1 installed by using Ubuntu 16.04?
My iPhone 5c was almost destroyed. Luckily I have a backup in my PC, I use Ubuntu 16.04. I got a Moto G phone from a friend to replace my broken phone. It runs with Android 5.1. So now I want to "translate" this iPhone backup to info that can be understood by devices using Android, so that I can have access to my contacts, pictures, etc. Is it possible to do this? If so, how? Thanks in advance.
16.04 android iphone
New contributor
add a comment |
My iPhone 5c was almost destroyed. Luckily I have a backup in my PC, I use Ubuntu 16.04. I got a Moto G phone from a friend to replace my broken phone. It runs with Android 5.1. So now I want to "translate" this iPhone backup to info that can be understood by devices using Android, so that I can have access to my contacts, pictures, etc. Is it possible to do this? If so, how? Thanks in advance.
16.04 android iphone
New contributor
How was the backup made?
– vidarlo
5 hours ago
add a comment |
My iPhone 5c was almost destroyed. Luckily I have a backup in my PC, I use Ubuntu 16.04. I got a Moto G phone from a friend to replace my broken phone. It runs with Android 5.1. So now I want to "translate" this iPhone backup to info that can be understood by devices using Android, so that I can have access to my contacts, pictures, etc. Is it possible to do this? If so, how? Thanks in advance.
16.04 android iphone
New contributor
My iPhone 5c was almost destroyed. Luckily I have a backup in my PC, I use Ubuntu 16.04. I got a Moto G phone from a friend to replace my broken phone. It runs with Android 5.1. So now I want to "translate" this iPhone backup to info that can be understood by devices using Android, so that I can have access to my contacts, pictures, etc. Is it possible to do this? If so, how? Thanks in advance.
16.04 android iphone
16.04 android iphone
New contributor
New contributor
New contributor
asked 7 hours ago
Francisco AlonsoFrancisco Alonso
1
1
New contributor
New contributor
How was the backup made?
– vidarlo
5 hours ago
add a comment |
How was the backup made?
– vidarlo
5 hours ago
How was the backup made?
– vidarlo
5 hours ago
How was the backup made?
– vidarlo
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
There are two ways to do this, one of which will be fast and easy, the other of which uses Ubuntu.
Fast and Easy
- Get a google g-mail account.
- Sync your iphone contacts to google
- Edit your contacts on the google webpage (if desired)
- Hook your android phone up to sync with your google acount
- Sync your contacts...
Using your Ubuntu installation
If you have time and energy, you can setup a CardDav server on your ubuntu system.
Install Radicale a CardDav server. This is available in the [Ubuntu Universe Repository[(https://packages.ubuntu.com/search?keywords=radicale), and can be installed via
sudo apt install radicale
If you do not have pip
installed
sudo apt install python3-pip
Now Finish the installation
python3 -m pip install --upgrade radicale
And run Radicale with a basic configuration.
python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
Login to Radicale on a web browser at address http://localhost:5232/ and create a user or two.
There is a bit of setup that can be done to make a secure Radical, and more setup if you want to run it as a service at startup. This will require reading through the setup guide at https://radicale.org/setup/
Your android phone will need to be able to connect to your server, which required a download from the Play Store. This link is for one such application, and hopefully you are in the same local network, or can ping your newly installed server. If so you should be able to connect your android to the server. Being lazy, I will not check this.
Your iphone will also need to connect to the CardDav server. This link from iMore describes a method to connect your iphone to the server. Not having an I phone, I will not verify this!
Assuming that you have setup both phones correctly, they should be synchronizing and sharing Contact info at this time.
Bonus Section
You can also synchronize Thunderbird with this contact info! Provider for CalDAV & CardDAV provides an extension to sync your Thunderbird account!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Francisco Alonso is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1122584%2fis-it-possible-to-migrate-my-iphone-5c-contacts-to-a-moto-g-with-android-5-1-ins%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are two ways to do this, one of which will be fast and easy, the other of which uses Ubuntu.
Fast and Easy
- Get a google g-mail account.
- Sync your iphone contacts to google
- Edit your contacts on the google webpage (if desired)
- Hook your android phone up to sync with your google acount
- Sync your contacts...
Using your Ubuntu installation
If you have time and energy, you can setup a CardDav server on your ubuntu system.
Install Radicale a CardDav server. This is available in the [Ubuntu Universe Repository[(https://packages.ubuntu.com/search?keywords=radicale), and can be installed via
sudo apt install radicale
If you do not have pip
installed
sudo apt install python3-pip
Now Finish the installation
python3 -m pip install --upgrade radicale
And run Radicale with a basic configuration.
python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
Login to Radicale on a web browser at address http://localhost:5232/ and create a user or two.
There is a bit of setup that can be done to make a secure Radical, and more setup if you want to run it as a service at startup. This will require reading through the setup guide at https://radicale.org/setup/
Your android phone will need to be able to connect to your server, which required a download from the Play Store. This link is for one such application, and hopefully you are in the same local network, or can ping your newly installed server. If so you should be able to connect your android to the server. Being lazy, I will not check this.
Your iphone will also need to connect to the CardDav server. This link from iMore describes a method to connect your iphone to the server. Not having an I phone, I will not verify this!
Assuming that you have setup both phones correctly, they should be synchronizing and sharing Contact info at this time.
Bonus Section
You can also synchronize Thunderbird with this contact info! Provider for CalDAV & CardDAV provides an extension to sync your Thunderbird account!
add a comment |
There are two ways to do this, one of which will be fast and easy, the other of which uses Ubuntu.
Fast and Easy
- Get a google g-mail account.
- Sync your iphone contacts to google
- Edit your contacts on the google webpage (if desired)
- Hook your android phone up to sync with your google acount
- Sync your contacts...
Using your Ubuntu installation
If you have time and energy, you can setup a CardDav server on your ubuntu system.
Install Radicale a CardDav server. This is available in the [Ubuntu Universe Repository[(https://packages.ubuntu.com/search?keywords=radicale), and can be installed via
sudo apt install radicale
If you do not have pip
installed
sudo apt install python3-pip
Now Finish the installation
python3 -m pip install --upgrade radicale
And run Radicale with a basic configuration.
python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
Login to Radicale on a web browser at address http://localhost:5232/ and create a user or two.
There is a bit of setup that can be done to make a secure Radical, and more setup if you want to run it as a service at startup. This will require reading through the setup guide at https://radicale.org/setup/
Your android phone will need to be able to connect to your server, which required a download from the Play Store. This link is for one such application, and hopefully you are in the same local network, or can ping your newly installed server. If so you should be able to connect your android to the server. Being lazy, I will not check this.
Your iphone will also need to connect to the CardDav server. This link from iMore describes a method to connect your iphone to the server. Not having an I phone, I will not verify this!
Assuming that you have setup both phones correctly, they should be synchronizing and sharing Contact info at this time.
Bonus Section
You can also synchronize Thunderbird with this contact info! Provider for CalDAV & CardDAV provides an extension to sync your Thunderbird account!
add a comment |
There are two ways to do this, one of which will be fast and easy, the other of which uses Ubuntu.
Fast and Easy
- Get a google g-mail account.
- Sync your iphone contacts to google
- Edit your contacts on the google webpage (if desired)
- Hook your android phone up to sync with your google acount
- Sync your contacts...
Using your Ubuntu installation
If you have time and energy, you can setup a CardDav server on your ubuntu system.
Install Radicale a CardDav server. This is available in the [Ubuntu Universe Repository[(https://packages.ubuntu.com/search?keywords=radicale), and can be installed via
sudo apt install radicale
If you do not have pip
installed
sudo apt install python3-pip
Now Finish the installation
python3 -m pip install --upgrade radicale
And run Radicale with a basic configuration.
python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
Login to Radicale on a web browser at address http://localhost:5232/ and create a user or two.
There is a bit of setup that can be done to make a secure Radical, and more setup if you want to run it as a service at startup. This will require reading through the setup guide at https://radicale.org/setup/
Your android phone will need to be able to connect to your server, which required a download from the Play Store. This link is for one such application, and hopefully you are in the same local network, or can ping your newly installed server. If so you should be able to connect your android to the server. Being lazy, I will not check this.
Your iphone will also need to connect to the CardDav server. This link from iMore describes a method to connect your iphone to the server. Not having an I phone, I will not verify this!
Assuming that you have setup both phones correctly, they should be synchronizing and sharing Contact info at this time.
Bonus Section
You can also synchronize Thunderbird with this contact info! Provider for CalDAV & CardDAV provides an extension to sync your Thunderbird account!
There are two ways to do this, one of which will be fast and easy, the other of which uses Ubuntu.
Fast and Easy
- Get a google g-mail account.
- Sync your iphone contacts to google
- Edit your contacts on the google webpage (if desired)
- Hook your android phone up to sync with your google acount
- Sync your contacts...
Using your Ubuntu installation
If you have time and energy, you can setup a CardDav server on your ubuntu system.
Install Radicale a CardDav server. This is available in the [Ubuntu Universe Repository[(https://packages.ubuntu.com/search?keywords=radicale), and can be installed via
sudo apt install radicale
If you do not have pip
installed
sudo apt install python3-pip
Now Finish the installation
python3 -m pip install --upgrade radicale
And run Radicale with a basic configuration.
python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections
Login to Radicale on a web browser at address http://localhost:5232/ and create a user or two.
There is a bit of setup that can be done to make a secure Radical, and more setup if you want to run it as a service at startup. This will require reading through the setup guide at https://radicale.org/setup/
Your android phone will need to be able to connect to your server, which required a download from the Play Store. This link is for one such application, and hopefully you are in the same local network, or can ping your newly installed server. If so you should be able to connect your android to the server. Being lazy, I will not check this.
Your iphone will also need to connect to the CardDav server. This link from iMore describes a method to connect your iphone to the server. Not having an I phone, I will not verify this!
Assuming that you have setup both phones correctly, they should be synchronizing and sharing Contact info at this time.
Bonus Section
You can also synchronize Thunderbird with this contact info! Provider for CalDAV & CardDAV provides an extension to sync your Thunderbird account!
edited 4 hours ago
answered 6 hours ago
Charles GreenCharles Green
13.8k73858
13.8k73858
add a comment |
add a comment |
Francisco Alonso is a new contributor. Be nice, and check out our Code of Conduct.
Francisco Alonso is a new contributor. Be nice, and check out our Code of Conduct.
Francisco Alonso is a new contributor. Be nice, and check out our Code of Conduct.
Francisco Alonso is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1122584%2fis-it-possible-to-migrate-my-iphone-5c-contacts-to-a-moto-g-with-android-5-1-ins%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How was the backup made?
– vidarlo
5 hours ago