Debian 6 Squeeze stableからベータ版に切り替える

Debian 6 Squeeze stableからベータ版に切り替える

私は持っていますこの問題私は汚れたDebian Squeezeシステムをベータ版にアップグレードすることについて友達に助言を求めました。だからそれが私がしたことです。まず、/etc/apt/sources.listテストストアを使用するためにファイルを変更しました。それからsudo apt-get updateそしてその後sudo apt-get dist-upgrade。長い時間が経つにつれて、すべてがアップグレードされました。その後、システムを再起動するようにシステム警告が表示されました。完璧。

再起動後、最初に驚いたのはGRUBローダーでした。との2つのオプションがあるだけでなく、Debian 2.6.x.x新しいDebian 2.6.x.x (recovery)バージョンDebian 3.0.xx(grubリストの最初のバージョン)とDebian 3.0.xx。選択しましたが、Debian 3.0.xx画面全体がめちゃくちゃになりました。カラーピクセルだけがあるだけで何も見ることができません。私がこの問題をどのように扱うべきかを知っている人はいますか?

PS Debian 2.6.xxを選択すると動作しますが(言い換えれば正確です)、デザインが変更され、左上にシステムメニューがなくなります。 +デスクトップで右クリックすることはできません。

Gilesが提案したように出力を投稿しました。/boot/grub/grub.cfg

maistora@maistora:~$ vi /boot/grub/grub.cfg 


#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
  insmod part_msdos
  insmod ext2
  set root='(hd0,msdos1)'
  search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
  set locale_dir=($root)/boot/grub/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
insmod png
if background_image /usr/share/images/desktop-base/spacefun-grub.png; then
  set color_normal=light-gray/black
  set color_highlight=white/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 3.0.0-1-686-pae' --class debian --class gnu-linux --class gnu --class os {
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
        echo    'Loading Linux 3.0.0-1-686-pae ...'
        linux   /boot/vmlinuz-3.0.0-1-686-pae root=UUID=94dc5612-177b-4222-b426-f9fa5bad2664 ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-3.0.0-1-686-pae
}
menuentry 'Debian GNU/Linux, with Linux 3.0.0-1-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
        echo    'Loading Linux 3.0.0-1-686-pae ...'
        linux   /boot/vmlinuz-3.0.0-1-686-pae root=UUID=94dc5612-177b-4222-b426-f9fa5bad2664 ro single
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-3.0.0-1-686-pae
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class gnu-linux --class gnu --class os {
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
        echo    'Loading Linux 2.6.32-5-686 ...'
        linux   /boot/vmlinuz-2.6.32-5-686 root=UUID=94dc5612-177b-4222-b426-f9fa5bad2664 ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set=root 94dc5612-177b-4222-b426-f9fa5bad2664
        echo    'Loading Linux 2.6.32-5-686 ...'
        linux   /boot/vmlinuz-2.6.32-5-686 root=UUID=94dc5612-177b-4222-b426-f9fa5bad2664 ro single
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

lspci

maistora@maistora:~$ lspci
00:00.0 Host bridge: Silicon Integrated Systems [SiS] 671MX
00:01.0 PCI bridge: Silicon Integrated Systems [SiS] PCI-to-PCI bridge
00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS968 [MuTIOL Media IO] (rev 01)
00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev 01)
00:03.0 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f)
00:03.1 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f)
00:03.3 USB Controller: Silicon Integrated Systems [SiS] USB 2.0 Controller
00:04.0 Ethernet controller: Silicon Integrated Systems [SiS] 191 Gigabit Ethernet Adapter (rev 02)
00:05.0 IDE interface: Silicon Integrated Systems [SiS] SATA Controller / IDE mode (rev 03)
00:06.0 PCI bridge: Silicon Integrated Systems [SiS] PCI-to-PCI bridge
00:07.0 PCI bridge: Silicon Integrated Systems [SiS] PCI-to-PCI bridge
00:0f.0 Audio device: Silicon Integrated Systems [SiS] Azalia Audio Controller
01:00.0 VGA compatible controller: ATI Technologies Inc Mobility Radeon HD 3400 Series
02:00.0 Network controller: Atheros Communications Inc. AR928X Wireless Network Adapter (PCI-Express) (rev 01)

dpkg -l Linux-Image-*

maistora@maistora:~$ dpkg -l linux-image-\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                   Version                                Description
+++-======================================-======================================-============================================================================================
un  linux-image-2.6                        <none>                                 (no description available)
un  linux-image-2.6-486                    <none>                                 (no description available)
ii  linux-image-2.6-686                    3.0.0+39                               Linux for modern PCs (dummy package)
un  linux-image-2.6-686-bigmem             <none>                                 (no description available)
un  linux-image-2.6-amd64                  <none>                                 (no description available)
un  linux-image-2.6-k7                     <none>                                 (no description available)
un  linux-image-2.6-openvz-686             <none>                                 (no description available)
un  linux-image-2.6-vserver-686            <none>                                 (no description available)
un  linux-image-2.6-vserver-686-bigmem     <none>                                 (no description available)
un  linux-image-2.6-xen-686                <none>                                 (no description available)
ii  linux-image-2.6.32-5-686               2.6.32-38                              Linux 2.6.32 for modern PCs
ii  linux-image-3.0.0-1-686-pae            3.0.0-3                                Linux 3.0.0 for modern PCs
ii  linux-image-686-pae                    3.0.0+39                               Linux for modern PCs (meta-package)

すべてが正しいことを願っています。

ベストアンサー1

安定版からベータ版にアップデートするときも同じ問題が発生し、クリーン版からベータ版を再インストールするのが最善の方法だと思いました。これは、更新時に多くの依存関係が壊れる可能性があり、以前のライブラリと連携するためにインストールしたソフトウェアに問題がある可能性があるためです。また、クローズドドライバfglrxをインストールすると、以前のバージョンのカーネル用にビルドされているため、新しいバージョンでは破損する可能性があります。また、paeカーネルも問題になる可能性があります。そのため、壊れた依存関係やドライバーと相談したくない場合は、新しくインストールすることをお勧めします。

おすすめ記事