简体   繁体   中英

When trying to install the alsa-base package on linux, ask to uninstall linux-headers on debian, how can I solve this?

我是 linux 的初学者,我在我的系统上安装了几个导致冲突的软件包,其中一个是 alsa base,它总是要求从内核中删除 linux 头文件。

If you installed some "packages" kernels set unusable, you can first issue the following commands:

1# check - Verify that there are no broken dependencies

$ sudo apt-get check 

2# autoremove - Remove automatically all unused packages

$ sudo apt-get autoremove 
  • If the above info did not work; we can check if you have installed the proper kernel on Debian, so check out your current kernel by

    $ uname -sr

Then you can uninstall those unused kernal-headers by:

$ sudo apt-get purge linux-headers-xxxx

reemplace the "xxxx" by the kernel you want delete.

I recommend you also take a look at thislink where talks more over about; and here a troubleshooting done by a user wanted to delete header-kernel in askubuntu.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM