LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 08-03-2020, 06:58 AM   #16
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled

So, it's buster-backports. Then
Code:
sudo apt -t buster-backports install linux-image-amd64
 
1 members found this post helpful.
Old 08-03-2020, 07:06 AM   #17
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by shruggy View Post
So, it's buster-backports. Then
Code:
sudo apt -t buster-backports install linux-image-amd64
Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  aptitude-common libcwidget3v5
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  linux-image-5.6.0-0.bpo.2-amd64 wireless-regdb
Suggested packages:
  linux-doc-5.6 debian-kernel-handbook
The following NEW packages will be installed:
  linux-image-5.6.0-0.bpo.2-amd64
The following packages will be upgraded:
  linux-image-amd64 wireless-regdb
2 upgraded, 1 newly installed, 0 to remove and 146 not upgraded.
Need to get 50.4 MB of archives.
After this operation, 283 MB of additional disk space will be used.
Is it safe? I hope my wireless doesn't get broken. 😟
 
Old 08-03-2020, 08:14 AM   #18
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by shruggy View Post
Then try
Code:
sudo apt -t buster-backports upgrade
No to get the specific package from the repository.

Code:
sudo apt -t buster-backports install linux-image-amd64

Perhaps the install needs to be before the -t part. And the output of the apt-cache policy linux-image-amd64 would be nice to see.
 
Old 08-03-2020, 09:01 AM   #19
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by linustalman View Post
Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  aptitude-common libcwidget3v5
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  linux-image-5.6.0-0.bpo.2-amd64 wireless-regdb
Suggested packages:
  linux-doc-5.6 debian-kernel-handbook
The following NEW packages will be installed:
  linux-image-5.6.0-0.bpo.2-amd64
The following packages will be upgraded:
  linux-image-amd64 wireless-regdb
2 upgraded, 1 newly installed, 0 to remove and 146 not upgraded.
Need to get 50.4 MB of archives.
After this operation, 283 MB of additional disk space will be used.
Is it safe? I hope my wireless doesn't get broken. 😟
Appears to be a package of information about the setting to be used with drivers.

Code:
@haswell:~$ apt show wireless-regdb
Package: wireless-regdb
Version: 2016.06.10-1
Priority: optional
Section: net
Maintainer: Ben Hutchings <ben@decadent.org.uk>
Installed-Size: 22.5 kB
Suggests: crda
Homepage: https://wireless.wiki.kernel.org/en/developers/regulatory/wireless-regdb
Tag: admin::hardware, role::app-data
Download-Size: 8,064 B
APT-Sources: http://ftp.de.debian.org/debian buster/main amd64 Packages
Description: wireless regulatory database
 This package contains the wireless regulatory database used by the Central
 Regulatory Database Agent (CRDA) to configure wireless devices to operate
 within the radio spectrum allowed in the local jurisdiction.
 .
 This regulatory information is provided with no warranty either expressed or
 implied. Only Linux drivers which use cfg80211 framework can make use of the
 regulatory database and CRDA.

N: There is 1 additional record. Please use the '-a' switch to see it
Should be safe enough to install I would think.
 
Old 08-03-2020, 09:39 AM   #20
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by HappyTux View Post
No to get the specific package from the repository.

Code:
sudo apt -t buster-backports install linux-image-amd64

Perhaps the install needs to be before the -t part. And the output of the apt-cache policy linux-image-amd64 would be nice to see.
Output of apt-cache policy linux-image-amd64:

Code:
linux-image-amd64:
  Installed: 5.4.19-1~bpo10+1
  Candidate: 5.6.14-2~bpo10+1
  Version table:
     5.6.14-2~bpo10+1 100
        100 http://ftp.debian.org/debian buster-backports/main amd64 Packages
 *** 5.4.19-1~bpo10+1 100
        100 /var/lib/dpkg/status
     4.19+105+deb10u5 500
        500 http://ftp.ie.debian.org/debian buster/main amd64 Packages
 
Old 08-03-2020, 09:59 AM   #21
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,726

Original Poster
Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Thumbs up

Quote:
Originally Posted by shruggy View Post
So, it's buster-backports. Then
Code:
sudo apt -t buster-backports install linux-image-amd64
It worked!

My current kernel after a reboot is: 5.6.0-0.bpo.2-amd64

Cheers, shruggy!
 
Old 08-03-2020, 11:03 AM   #22
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by linustalman View Post
It worked!

My current kernel after a reboot is: 5.6.0-0.bpo.2-amd64

Cheers, shruggy!
Perfect, nice to hear it worked for you, just remember it in the future. When an app will not install from the backports you will most likely need the -t option to specify where it will be installed from. And apparently you have the updated grub packages installed as it rebooted properly for you too.
 
  


Reply

Tags
buster, debian 10, kernel kept back



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
[SOLVED] After upgrade to Jessie, db5.1-util is being held back erik2282 Debian 11 04-21-2015 07:57 PM
Kubuntu not detecting keyboard keys being held down reledi Linux - Newbie 2 12-05-2009 02:18 PM
Aptitude -- Packages being held back snuffy115 Debian 2 02-19-2007 12:18 AM
Reason for packages being held back Whitman Debian 7 07-23-2004 06:54 PM
My Files Are Being Held Hostage!! biggsjm Linux - Networking 2 10-12-2003 05:14 AM

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

All times are GMT -5. The time now is 11:27 AM.

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