Linux

Debian 版本與核心版本和 source.list 不匹配

  • April 10, 2016

**前奏:**由於我遇到了 apt-get 的問題,通過註釋掉它的最後一行(附在本文末尾)解決了這個問題,我開始研究我正在執行什麼版本的 Debian(2012 年左右的 MineOS Turnkey -2014 更準確)因為顯然 Wheezy 的安全支持即將被放棄。

**問題:**按照這個問題的公認答案,我得到了關於如何找到我的 Debian(-based) OS 版本的說明。這似乎是傑西 8.3。

除了sources.list(最後附上)似乎屬於Wheezy,不是嗎?

核心也是版本3.2.0-4-amd64與 Wheezy 匹配

還有一些命令返回的這個 deb7u2 是什麼: #1 SMP Debian 3.2.65-1+deb7u2 x86_64"

命令的結果:

cat /etc/*-release
#returns this:
PRETTY_NAME="Debian GNU/Linux 8 (jessie)"
NAME="Debian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=debian
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

cat /proc/version
#returns this:
Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.65-1+deb7u2

lsb_release -a
#returns this:
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.3 (jessie)
Release:        8.3
Codename:       jessie

uname -a
#returns this:
Linux pc_name 3.2.0-4-amd64 #1 SMP Debian 3.2.65-1+deb7u2 x86_64 GNU/Linux

cat /etc/apt/sources.list.d/sources.list
#returns this:
deb http://ftp.ee.debian.org/debian stable main contrib

deb http://ftp.debian.org/debian/ wheezy-updates main contrib

deb http://security.debian.org/ wheezy/updates main contrib

#Third Parties Repos
#Debian Mozilla team
deb http://backports.debian.org/debian-backports squeeze-backports main

**我的終極問題是:**我怎樣才能將這個系統更新到一個不錯的水平,或者我應該下載一個新的基於 Debian Jesse 的 .iso嗎?

最後,為了穩定,我決定重新安裝整個系統。

  1. 我真的不知道除了我修復的子系統之外還有多少子系統損壞了
  2. 我不知道我是否真的解決了我的問題
  3. .iso 文件肯定已經完成了所有互動

引用自:https://unix.stackexchange.com/questions/272247