Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-23-2017, 06:05 AM
|
#1
|
Member
Registered: Mar 2016
Posts: 94
Rep: 
|
Upgrade Debian Jessie to 8.8
Hello Sirs,
I have Debian Jessie 8.7 and as i see there is new release of Debian 8.8. How to upgrade my 8.7 to new one? Should i install again system or what? Please help me. Thanks in advanced. any support will be great appreciated.
|
|
|
05-23-2017, 06:23 AM
|
#2
|
Senior Member
Registered: Mar 2004
Location: UK
Distribution: CentOS 6/7
Posts: 1,375
|
Would have thought a simple system update would do it, from cli that should be:
Code:
apt-get update && apt-get upgrade
Since this is only a minor version upgrade.
|
|
1 members found this post helpful.
|
05-23-2017, 06:35 AM
|
#3
|
Member
Registered: Mar 2016
Posts: 94
Original Poster
Rep: 
|
Quote:
Since this is only a minor version upgrade.
|
Thanks for replay friend.
Minor? is there a lot updates or advise me to do it?
|
|
|
05-23-2017, 07:20 AM
|
#4
|
Senior Member
Registered: Mar 2004
Location: UK
Distribution: CentOS 6/7
Posts: 1,375
|
most software generally goes major.minor.revision for build numbers.
Anyways more detail can be found at: https://wiki.debian.org/DebianReleases/PointReleases
Quote:
Version scheme
Previously, the initial release had r0 appended, but normally omitted: for example Debian Etch started off as 4.0r0. Point Releases increment the digit after the "r" to specify a certain revision of a release with updates included.
At Lenny's first point release, this scheme changed. A micro version number was used to indicate a point release (e.g. 5.0.1). 1
At Wheezy's first point release, this scheme changed. The minor version number is now used to indicate a point release (e.g. 7.1).23
|
I'd recommend staying up-to-date really, so if there are a lot of updates then I'd make sure to update it all. Unless it is an enterprise system and having an application fail needs to be carefully managed, then it shouldn't be a big issue.
Last edited by r3sistance; 05-23-2017 at 07:22 AM.
|
|
1 members found this post helpful.
|
05-23-2017, 08:47 AM
|
#5
|
Member
Registered: May 2016
Location: Belgrade, Serbia
Distribution: Debian
Posts: 229
Rep: 
|
As other said, staying up to date is good thing for you. And you want to do next thing as root, or with sudo, whatever you use:
Code:
apt-get update && apt-get upgrade
If you see message that there are some packaged held back, use after that:
Code:
apt-get dist-upgrade
followed by
Do all 3 steps and you will be up to date. Also, it is recommended to do first step at least once per week.
|
|
1 members found this post helpful.
|
05-23-2017, 03:43 PM
|
#6
|
Moderator
Registered: Mar 2008
Posts: 22,361
|
https://www.cyberciti.biz/howto/ques...heat-sheet.php helpful info to know. While that is old commands they provide similar to the now use is "apt"
Last edited by jefro; 05-23-2017 at 07:27 PM.
|
|
1 members found this post helpful.
|
05-23-2017, 04:08 PM
|
#7
|
Member
Registered: May 2016
Location: Belgrade, Serbia
Distribution: Debian
Posts: 229
Rep: 
|
Quote:
Originally Posted by jefro
|
That link has a bit misleading info about apt-get dist-upgrade, It is not usually used to upgrade from one release to other, but rather to handle situations when dependencies must be resolved in a way that will remove some packages, or install new ones. That often happens in cases of new linux kernels, xorg updates and stuff like that. Also, apt-get and friends like apt-cache and others are not just old, they are well used and well tested and very well documented. Many refuse to use newish apt, for various reasons. Those that prefer tools with some advance things that you might, or might not need, often end up using aptitude. Those that want to avoid command line, go for synaptic. Anyway, to find more of these tools, man apt-get and man apt-cache are your friend. As for examples of how to use them for various things, net is full of tutorials that quick search will provide.
|
|
2 members found this post helpful.
|
05-23-2017, 07:27 PM
|
#8
|
Moderator
Registered: Mar 2008
Posts: 22,361
|
|
|
1 members found this post helpful.
|
05-23-2017, 09:35 PM
|
#9
|
LQ Guru
Registered: Jan 2005
Location: USA and Italy
Distribution: Debian testing/sid; OpenSuSE; Fedora; Mint
Posts: 5,524
|
If you just upgrade the packages it should stay up to date. Dist upgrade is for when testing drops down to stable.
|
|
1 members found this post helpful.
|
05-24-2017, 02:09 AM
|
#10
|
Member
Registered: May 2016
Location: Belgrade, Serbia
Distribution: Debian
Posts: 229
Rep: 
|
Quote:
Originally Posted by AwesomeMachine
If you just upgrade the packages it should stay up to date. Dist upgrade is for when testing drops down to stable.
|
If you by dist upgrade refer to apt-get dist-upgrade, while it will be used in that case for sure, that is not quite true. Read my previous post, or even better, read manuals. There are upgrades in stable that might require apt-get dist-upgrade.
|
|
1 members found this post helpful.
|
05-24-2017, 02:39 AM
|
#11
|
Senior Member
Registered: Mar 2012
Posts: 1,882
|
Quote:
Originally Posted by dejank
If you by dist upgrade refer to apt-get dist-upgrade, while it will be used in that case for sure, that is not quite true. Read my previous post, or even better, read manuals. There are upgrades in stable that might require apt-get dist-upgrade.
|
It would be very unusual to need a dist-upgrade (or aptitude full-upgrade)to upgrade packages on a stable system.
Much more likely on testing/sid for transitions between major versions of upstream software or changes in packaging protocols for a given software.
|
|
1 members found this post helpful.
|
05-24-2017, 03:01 AM
|
#12
|
Member
Registered: May 2016
Location: Belgrade, Serbia
Distribution: Debian
Posts: 229
Rep: 
|
Quote:
Originally Posted by descendant_command
It would be very unusual to need a dist-upgrade (or aptitude full-upgrade)to upgrade packages on a stable system.
Much more likely on testing/sid for transitions between major versions of upstream software or changes in packaging protocols for a given software.
|
Unusual on stable yes, but that it is because Debian stable is very, very much stable and tested. It still can happen though. As for use on testing/unstable yes, but it is not quite just because of transition and changes of protocols, but rather because of changes in dependencies of packages. Like in cases when it must remove some packages, or to add new ones to solve dependencies. Anyway, point of my posts was not to get OP confused by name of dist-upgrade and to explain that it is not command that will get him to new distribution release, but rather keep his current one up to date, in case of need.
Last edited by dejank; 05-24-2017 at 03:02 AM.
|
|
1 members found this post helpful.
|
05-24-2017, 05:32 AM
|
#13
|
Member
Registered: Mar 2016
Posts: 94
Original Poster
Rep: 
|
Thanks friends for your kind supports, i appreciate that. I will do as you provided me and will inform when i be at home, i am out of city at the moment. Thanks friends.
|
|
|
05-24-2017, 10:53 AM
|
#14
|
Member
Registered: Mar 2016
Posts: 94
Original Poster
Rep: 
|
Thanks friend for your help. I did everything and it is upgraded. u great!
|
|
|
05-24-2017, 12:24 PM
|
#15
|
LQ Veteran
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Rep: 
|
I love the Documentation, personally.
https://debian-handbook.info/browse/stable/
or/and
Code:
sudo apt-get install debian-handbook
In your brower-of-choice, open the
File Menu | Open File and navigate to /usr/share/doc/debian-handbook/html/index.html
Have fun!
|
|
1 members found this post helpful.
|
All times are GMT -5. The time now is 08:46 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|