LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 05-27-2014, 03:57 PM   #1
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Rep: Reputation: Disabled
Question How Do I Upgrade Linux Mint 16 (Petra) to 17 (Qiana)


I want to know how to upgrade without having to reinstall mint. There was a way to do it with 15 -> 16, so what about this one?

Thanks
 
Old 05-27-2014, 04:17 PM   #2
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Hi... http://community.linuxmint.com/tutorial/view/2 have fun.
 
Old 05-27-2014, 04:38 PM   #3
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
There was an easier way with 15 -> 16 via terminal. It upgraded the Ubuntu part of mint and then mint itself with some of these:
Code:
sudo apt-get upgrade ...
 
1 members found this post helpful.
Old 05-27-2014, 04:48 PM   #4
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Quote:
Originally Posted by techdude View Post
There was an easier way with 15 -> 16 via terminal. It upgraded the Ubuntu part of mint and then mint itself with some of these:
Code:
sudo apt-get upgrade ...
Should work as Mint is Debian based, I'd
Code:
sudo apt-get update && dist-upgrade
 
Old 05-28-2014, 09:10 PM   #5
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
I just tried that and it said <code> dist-upgrade: command not found </code>
 
Old 05-28-2014, 09:12 PM   #6
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,

was a typo. Should be
Code:
sudo apt-get dist-upgrade
However I would recommend doing and apt-get upgrade first. Eg the whole process would be.
Code:
sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade
Evo2.
 
1 members found this post helpful.
Old 05-29-2014, 02:34 PM   #7
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
When I run the sudo apt-get dist-upgrade, it returns that there is nothing to upgrade. I went into the system settings in case the regular upgrade did it, but nothing. I really don't want to copy everything onto an external HDD and re-install Mint.
 
Old 05-29-2014, 02:51 PM   #8
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Not positive on Mint but it is Debian based so /etc/apt/sources.list should have "petra" change it and\or other repository code accordingly to "qiana?" Then try updates etc...
http://www.ubuntuupdates.org/ppa/mint_main ?
 
1 members found this post helpful.
Old 05-29-2014, 03:32 PM   #9
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
How to I add that repository to Linux Mint?
 
Old 05-29-2014, 04:26 PM   #10
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Not sure what the content should be but you must edit as root so
Code:
cd /etc/apt
sudo cp sources.list sources.list.backup
sudo gedit
or 'sudo vi sources.list'

Last edited by jamison20000e; 05-29-2014 at 08:22 PM.
 
Old 05-30-2014, 10:24 AM   #11
techdude
Member
 
Registered: Oct 2013
Distribution: Linux Mint
Posts: 66

Original Poster
Rep: Reputation: Disabled
That worked (to some extent). When I went into the System Settings -> About System -> "Linux Mint 17 'Qiana'. I thought it worked. Until I restarted the computer. Cinnamon won't load... Soooo, now I have to do what I didn't want to do in the first place. Waste a DVD to burn Linux Mint 17. Copy my files onto an external HDD. And install 17.

Thanks anyway.
 
Old 06-18-2014, 12:15 PM   #12
ponytailbob
LQ Newbie
 
Registered: Apr 2014
Posts: 4

Rep: Reputation: Disabled
re: upgrade from Petra to Qiana

I was looking to do the same. Followed Evo2"s suggestions. Then the link provided by Jamison20000e:http://www.ubuntuupdates.org/ppa/mint_main. After running all commands, I re-booted, installed all updates and am now running Qiana! Thanks to all. I'm only semi-computer literate, emphasis on "semi"
 
1 members found this post helpful.
Old 06-19-2014, 10:17 AM   #13
Soadyheid
Senior Member
 
Registered: Aug 2010
Location: Near Edinburgh, Scotland
Distribution: Cinnamon Mint 20.1 (Laptop) and 20.2 (Desktop)
Posts: 1,675

Rep: Reputation: 487Reputation: 487Reputation: 487Reputation: 487Reputation: 487
Quote:
I have to do what I didn't want to do in the first place. Waste a DVD to burn Linux Mint 17. Copy my files onto an external HDD. And install 17.
Can I just say that if you have to go down this road that it may be advisable to re-partition your drive to have three partitions; "/", "/usr", and "/home".

I've recently had to rebuild my system due to a Mobo failure, it was running Ubuntu 10.04 lts. I tried the new 14.04 but had problems and didn't like the Unity desktop. I've now run a fresh install of Mint 17 with the partitions as above, specifying "Don't format" the /home partition.

Absolutely amazing! It picked up all my Firefox bookmarks, Thunderbird worked straight off with all my emails and contacts intact (OK, I did have to pull in the upgrades before it could be selected from the desktop.) I also loaded up KWalletManager and it picked up all the passwords I thought I'd lost. Very impressed!
I'd moved all the .config files in /home/<myname> to a temp folder in /home (well, as many as I could!)

Another benefit of having separate partitions is that if the drive has a head crash and you can't boot from it, in all probability you should be able to mount the /home partition with a Live CD and retrieve your data. The crash is likely to be on a system partition as it's accessed more. (The can't-boot thing would be a hint)

Play Bonny!

 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Next Three Linux Mint Releases After “Qiana” to Be Based on Ubuntu 14.04 LTS LXer Syndicated Linux News 0 03-25-2014 03:31 AM
LXer: Linux Mint 17 to Be Called “Qiana,” Release Date Announced LXer Syndicated Linux News 0 03-21-2014 11:00 AM
[SOLVED] how to compiz in linux mint petra? rubankumars Linux Mint 1 03-05-2014 10:59 AM
LXer: Petra backports available in Linux Mint 13 LXer Syndicated Linux News 0 12-20-2013 04:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 03:04 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration