Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Discussion & Documentation Duplicate Threads
  • Search

How to fix 'Kernel panic: VFS: Unable to mount root fs'

Threads in this read-only forum cover topics discussed elsewhere in other forums.
Post Reply
Advanced search
85 posts
  • 1
  • 2
  • 3
  • 4
  • Next
Author
Message
Tazmanian
Apprentice
Apprentice
User avatar
Posts: 222
Joined: Tue Jul 01, 2003 9:11 am

How to fix 'Kernel panic: VFS: Unable to mount root fs'

  • Quote

Post by Tazmanian » Fri Jan 09, 2004 8:40 am

There have been much discussion on how to fix this. This summarizes some of the tips given so far in these discussions. Note that this error has nothing to do with /etc/fstab! If the kernel can't mount the root file system, then there's no way it can read /etc/fstab. This is purely a kernel configuration problem.

Fix your kernel boot parameters.

Make sure your kernel has a "root=" parameter passed to it in your bootloader and that the parameter points to your root file system. For example, my root file system is on /dev/hde2. My grub.conf contains:

Code: Select all

kernel (hd0,0)/boot/bzImage-2.6.1-rc2-gentoo-1 root=/dev/hde2
If you use LILO, then your lilo.conf should contain something analogous to:

Code: Select all

image=/boot/bzImage-2.6.1-rc2-gentoo-1
root=/dev/hde2
Remember to rerun lilo after editing lilo.conf!

If you don't know which partition is your root, then check /etc/fstab and look for the entry for / :

Code: Select all

/dev/hde2               /               reiserfs        noatime         1 2
Ensure the proper options and drivers are built into the kernel.

Don't forget to mount /boot when installing a new kernel!

devfs support
You need devfs support built in and mounted at boot time. In the 2.6 kernel, these are listed as:

Code: Select all

File systems
 -> Pseudo file systems
 -> /dev file system support (OBSOLETE)   DEVFS_FS
   -> Automatically mount at boot         DEVFS_MOUNT
In the 2.4 kernel, they are:

Code: Select all

File systems
 -> /dev file system support (EXPERIMENTAL)
      Automatically mount at boot
File system support
You need support for your root file system built in (not built as a module). My root file system is Reiser. So I have reiserfs built into my kernel. If you are unsure what your root file system is, check /etc/fstab.


Drive controller support
You need supoort for your drive controller built into the kernel. If you are unsure what to build, check with `lspci', part of the sys-apps/pciutils package. If all else fails, build them all and use the process of elimination.

IDE
Make sure you have support for your IDE chipset compiled in. In the 2.6 kernel, these can be found in

Code: Select all

Device Drivers
 -> ATA/ATAPI/MFM/RLL support
 -> Enhanced IDE/MFM/RLL disk/cdrom/tape/floppy support
 -> PCI IDE chipset support
 -> Generic PCI bus-master DMA support
For the 2.4 kernel, they are in

Code: Select all

ATA/IDE/MFM/RLL support
 -> IDE, ATA and ATAPI Block devices
 -> Enhanced IDE/MFM/RLL disk/cdrom/tape/floppy support
 -> Generic PCI IDE chipset support
You also need "Include IDE/ATA-2 DISK support" built in. This can be found in the "Enhanced IDE/MFM/RLL disk/cdrom/tape/floppy support" branch of the kernel configuration menu.

SCSI
Make sure you have support for your SCSI device compiled in. In the 2.6 kernel,

Code: Select all

Device drivers
 -> SCSI device support
 -> SCSI low-level drivers
In the 2.4 kernel,

Code: Select all

SCSI support
 -> SCSI low-level drivers
You also need "SCSI disk support" built in. This can be found in the "SCSI [device] support" branch of the kernel configuration menu.


Partition selection support
If you partitioned your drive under a different operating system, you may need to enable partition selection support in the kernel. In both the 2.4 and 2.6 kernels,

Code: Select all

File systems
 -> Partition types
 -> Advanced partition selection
Top
Tii
l33t
l33t
Posts: 733
Joined: Fri Jan 02, 2004 9:27 am

Re: HOWTO fix 'Kernel panic: VFS: Unable to mount root fs'

  • Quote

Post by Tii » Fri Jan 09, 2004 8:52 am

That's a good list!
Tazmanian wrote: devfs support
You need devfs support built in and mounted at boot time. In the 2.6 kernel, these are listed as:

Code: Select all

File systems
 -> Pseudo file systems
 -> /dev file system support (OBSOLETE)   DEVFS_FS
   -> Automatically mount at boot         DEVFS_MOUNT
In the 2.4 kernel, they are:

Code: Select all

File systems
 -> /dev file system support (EXPERIMENTAL)
      Automatically mount at boot
However, I am using 2.6 kernel and don't have

Code: Select all

-> Automatically mount at boot 
What do I need that for?
Top
Tazmanian
Apprentice
Apprentice
User avatar
Posts: 222
Joined: Tue Jul 01, 2003 9:11 am

Re: HOWTO fix 'Kernel panic: VFS: Unable to mount root fs'

  • Quote

Post by Tazmanian » Fri Jan 09, 2004 9:00 am

Derryth wrote:That's a good list!
Thanks! :)
Derryth wrote:However, I am using 2.6 kernel and don't have

Code: Select all

-> Automatically mount at boot 
What do I need that for?
I'm not sure, but I'm guessing that if I have "root=/dev/hde2" as a boot parameter, then the kernel needs /dev mounted at boot time to translate "/dev/hde2" into the proper node address.

It's also part of the Gentoo installation guide (Sec. 7, Code listing 6).
Top
Tii
l33t
l33t
Posts: 733
Joined: Fri Jan 02, 2004 9:27 am

Re: HOWTO fix 'Kernel panic: VFS: Unable to mount root fs'

  • Quote

Post by Tii » Fri Jan 09, 2004 9:02 am

Tazmanian wrote:
Derryth wrote:However, I am using 2.6 kernel and don't have

Code: Select all

-> Automatically mount at boot 
What do I need that for?
I'm not sure, but I'm guessing that if I have "root=/dev/hde2" as a boot parameter, then the kernel needs /dev mounted at boot time to translate "/dev/hde2" into the proper node address.

It's also part of the Gentoo installation guide (Sec. 7, Code listing 6).
I didn't even have devfs support at first because I though I didn't need it (it says it's obsolete in the setup). It worked just fine except every time at boot it would complain so I added that.
Top
Cheesepie
Apprentice
Apprentice
Posts: 154
Joined: Mon Jan 19, 2004 7:05 pm

  • Quote

Post by Cheesepie » Tue Jan 20, 2004 7:29 am

I checked and triple checked all of the above solutions to the kernel panic problem, and Im still getting it.

I am absolutely sure that the filesystem and controller are compiled into the kernel.

Im using 2.6.1, btw.

any other ideas?
===============
Problem Solved: I replaced the SATA cable on the drive and it works now. The cable seems to work in another machine, so it must have been making a bad connection with the drive or something.
Top
smellycheeseboy
Apprentice
Apprentice
User avatar
Posts: 263
Joined: Thu May 15, 2003 11:47 pm
Location: The Future

  • Quote

Post by smellycheeseboy » Tue Jan 20, 2004 9:15 am

I also checked and triple-checked all the settings and they were all right and I am still getting this error.

Help would be greatly appreciated.

Me
"No amount of fear can stop the rise of free media, or free software." --Jonathan Schwartz, Sun Microsystems
Top
Corw|n of Amber
Apprentice
Apprentice
User avatar
Posts: 221
Joined: Fri Aug 08, 2003 2:45 pm
Location: Socialist Sovietic Republic of Belgium

  • Quote

Post by Corw|n of Amber » Tue Jan 20, 2004 3:51 pm

Remove the initrd line in your grub.conf should get rid of that error. It's a highly irritating genkernel bug (or maybe combination_of_reiserfs+2.6+grub bug).

I'm pretty sure that would cure your computer as it did mine...
Whoever is enough of a fanatic to KILL people should be shot on sight.
Top
smellycheeseboy
Apprentice
Apprentice
User avatar
Posts: 263
Joined: Thu May 15, 2003 11:47 pm
Location: The Future

  • Quote

Post by smellycheeseboy » Tue Jan 20, 2004 9:04 pm

I don't have an initrd line because I didn't use genkernel. However I found that adding a notail option to my root partition (which is reiserfs) fixed the problem.

Me
"No amount of fear can stop the rise of free media, or free software." --Jonathan Schwartz, Sun Microsystems
Top
Corw|n of Amber
Apprentice
Apprentice
User avatar
Posts: 221
Joined: Fri Aug 08, 2003 2:45 pm
Location: Socialist Sovietic Republic of Belgium

  • Quote

Post by Corw|n of Amber » Tue Jan 20, 2004 9:14 pm

Oh. Yes. Forgot that one. Sorry :oops:
Whoever is enough of a fanatic to KILL people should be shot on sight.
Top
smellycheeseboy
Apprentice
Apprentice
User avatar
Posts: 263
Joined: Thu May 15, 2003 11:47 pm
Location: The Future

  • Quote

Post by smellycheeseboy » Tue Jan 20, 2004 9:22 pm

No prob. Thanks for the suggestions.
"No amount of fear can stop the rise of free media, or free software." --Jonathan Schwartz, Sun Microsystems
Top
secondshadow
Guru
Guru
Posts: 362
Joined: Mon Jun 23, 2003 1:06 am

  • Quote

Post by secondshadow » Wed Jan 21, 2004 5:16 am

Just to add my $0.02, the way I solved part of this problem was to use an experimental LiveCD (2.6) and pull its config from /proc/config.gz then strip out everything I didn't need. This fixed my problem and while its not the IDEAL solution, it works quite well.
Top
timmy334
n00b
n00b
User avatar
Posts: 69
Joined: Wed Sep 24, 2003 9:46 pm
Location: Montgomery, AL
Contact:
Contact timmy334
Website

IRQ scan failed

  • Quote

Post by timmy334 » Thu Jan 22, 2004 5:53 pm

I've always gotten this kernel panic and I just saw that when it's booting it does an IRQ scan for all my drives, and when it gets to hda(my drive) the scan doesn't find anything. Any idea what is causing this specifically?
It is by caffeine alone I set my mind in motion,
It is by the beans of Java my thoughts acquire speed,
My hands acquire shaking, the shaking becomes a warning,
It is by caffeine alone I set my mind in motion
Top
allancairns
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 80
Joined: Thu Dec 18, 2003 12:50 pm
Location: Perth, Western Australia

  • Quote

Post by allancairns » Sun Jan 25, 2004 1:26 am

Getting it here too on a 2.6.1 upgrade using genkernel.

I use reiserfs for my root (pattern?) but already have the notail option in fstab.

I double-checked my grub.conf for the root= and tried commenting out the initrd but no luck.

Any other ideas?

Thanks,

Allan
Top
allancairns
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 80
Joined: Thu Dec 18, 2003 12:50 pm
Location: Perth, Western Australia

  • Quote

Post by allancairns » Sun Jan 25, 2004 1:12 pm

allancairns wrote:Getting it here too on a 2.6.1 upgrade using genkernel.

I use reiserfs for my root (pattern?) but already have the notail option in fstab.

I double-checked my grub.conf for the root= and tried commenting out the initrd but no luck.

Any other ideas?

Thanks,

Allan
This thread http://forums.gentoo.org/viewtopic.php?p=805230 fixed mine. The syntax of grub for 2.6 is totally different from 2.4.

Cheers,

Allan
Top
cchee
Apprentice
Apprentice
User avatar
Posts: 214
Joined: Tue Jul 29, 2003 1:08 am
Location: NYC

  • Quote

Post by cchee » Sun Jan 25, 2004 9:26 pm

Read the /usr/share/genkernel/README
Top
Suicidal
l33t
l33t
User avatar
Posts: 959
Joined: Wed Jul 30, 2003 4:55 am
Location: /dev/null

  • Quote

Post by Suicidal » Sun Jan 25, 2004 9:30 pm

The syntax of grub for 2.6 is totally different from 2.4.
Actually the syntax for the new genkernel is different, It doesent have anything to do with the kernel. I have an old P1 box here that I do manually and the kernel line is still the same as 2.4
Top
allancairns
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 80
Joined: Thu Dec 18, 2003 12:50 pm
Location: Perth, Western Australia

  • Quote

Post by allancairns » Mon Jan 26, 2004 1:59 am

Suicidal wrote:
The syntax of grub for 2.6 is totally different from 2.4.
Actually the syntax for the new genkernel is different, It doesent have anything to do with the kernel. I have an old P1 box here that I do manually and the kernel line is still the same as 2.4
I stand corrected :)
Top
wegewijs
n00b
n00b
Posts: 8
Joined: Tue Feb 03, 2004 7:24 pm

Me too

  • Quote

Post by wegewijs » Wed Feb 04, 2004 9:00 pm

Total n00b to Gentoo (not to linux)
Have the above problem also.
Kernel 2.6.1 gentoo-dev-sources
Stage1 install ofcourse 8)

Checked al of the above ofcourse. No deal.

I have on-board RAID controller but not configured to use RAID at all.
Highpoint 370A or so... do I need to compile it into kernel also (didn't try yet cus' I cant find it in menuconfig).

:oops: SOLVED From this forum I guessed I left something out in the kernel. Indeed including the HPT37X drivers into the kernel solved the problem. :roll:
Time to start fooling around with this sooo cooool distro
Top
boroshan
l33t
l33t
User avatar
Posts: 730
Joined: Wed Apr 16, 2003 8:39 pm
Location: upside down
Contact:
Contact boroshan
Website

still no luck!

  • Quote

Post by boroshan » Thu Feb 19, 2004 2:22 pm

Hi all.

I've been suffering from this problem on one of my machines. The other two, one boots but the pci-pcmcia bridge is not supported yet, and the other works fine with 2.6.

Anyway, I've been through this topic and the searched forum in some detail. I don't pretend I've been exaustive, but l've read a lot. Here's my setup:

root and boot partitions:

Code: Select all

/dev/hdb3 on / type reiserfs (rw,noatime,notail)
/dev/hdb2 on /boot type ext2 (rw,noatime)
drive controller

Code: Select all

frankie # lspci | grep -i ide
00:07.1 IDE interface: Intel Corp. 82371AB/EB/MB PIIX4 IDE (rev 01)
selected grub.conf bits

Code: Select all

frankie # mount /boot
frankie # cat /boot/grub/grub.conf
default 1
fallback 0
timeout 10

title=Gentoo, Baby!
        root (hd0,1)
        kernel /kernel-2.4.22-gentoo-r5 root=/dev/hdb3 

title=Gentoo 2.6
        root (hd0,1)
        kernel /kernel-2.6.1-gentoo root=/dev/hdb3 

title=Love Gentoo 
        root (hd0,1)
        kernel /boot/kernel-2.6.3_rc2-love2 root=/dev/hdb3 
Hmm... grub partitions are back to front, probably because I installed
grub on hdb. 2.4 boots ok like that. Could it be a problem under 2.6? I find myself oddly reluctant to fiddle with it in case I break the whole system. Dunno why, I've fixed worse problems...

Anyway, I compiled a checklist:

root line in grub.conf: partition is /dev/hdb3 which is correct

devfs built in? mount at boot?

Code: Select all

[*] /dev file system support (OBSOLETE)
[*]   Automatically mount at boot
PC Partition supported:

Code: Select all

[*] Advanced partition selection
[*]   PC BIOS (MSDOS partition tables) support                      
[ ]   Windows Logical Disk Manager (Dynamic Disk) support       
reiserfs (root partition) supported

Code: Select all

<*> Reiserfs support             
 [ ]   Enable reiserfs debug mode
 [ ]   Stats in /proc/fs/reiserfs
ext2 (boot partition) supported

Code: Select all

<*> Second extended fs support
 [ ]   Ext2 extended attributes
drive controller built in?

Code: Select all

<*>         Intel PIIXn chipsets support
Generic PCI bus-master DMA support

Code: Select all

[*]       Generic PCI bus-master DMA support
Include IDE/ATA-2 DISK support

Code: Select all

<*>     Include IDE/ATA-2 DISK support
[*]       Use multi-mode by default
[*]       Auto-Geometry Resizing support
boot partition mounted/kernel copied across/modules installed:

Code: Select all

make menuconfig
make
make modules_install
mount /boot
cp arch/i386/boot/bzImage /boot/kernel-2.6.3_rc2-love2
Additionally:

I tried the experimental 2.6 LiveCD to see if I could adapt the config from /proc. Sadly, it hangs during the boot process. About the last message printed has it mis-identifying something (probably my adsl modem) as a USB storage device, which might have a bearing...

I tried genkernel ut was put off by the bugs in some of the earlier betas (I read the stuff about real_root /ram0 and linuxinit, but since it didn't help I went back to hand compiling. So - no initrd in grub.conf and hopefully none needed.

The machine causing the problem is an old P266 - a gateway G6-266 in fact. It's my firewall box and I would like to keep it reasonably up to date. Any ideas would be appreciated.

[ edited to reflect some other things tried ]
Last edited by boroshan on Wed Apr 28, 2004 10:06 pm, edited 1 time in total.
Don't let THEM immanentize the Eschaton!
Top
Epikuros
n00b
n00b
Posts: 56
Joined: Tue Aug 19, 2003 4:28 pm
Location: Helsinki, Finland

  • Quote

Post by Epikuros » Thu Feb 19, 2004 3:35 pm

Well maybe I just post my version of the problem: IDE-hard-drive with hda1(ext3) as the bootable filesystem(/boot) and hda4(reiserfs) as the root(/).

I configured my 2.6-kernel(development sources) manually so no genkernel is involved . I did do
make menuconfig && make && make modules_install
mount /boot && copy arch/i386/boot/bzImage /boot/bzImage-2.6

2.4 boots up just fine but 2.6 ends in the kernel panic.

In kernel-config IDE-things are enabled as well as reiserfs and ext3.
The full configuration-files can be in the following addresses:
config-file for 2.4 kernel
config-file for 2.6 kernel

I have also tried hundred and one different combinations with no success yet

Here is the grub.conf:
#################
default 0
timeout 10

title=Gentoo Kernel
root (hd0,0)
kernel (hd0,0)/bzImage-2.4 root=/dev/hda4 video=vesafb vga=792 hdd=scsi

title=Development Kernel
root (hd0,0)
kernel (hd0,0)/bzImage-2.6 root=/dev/hda4
#################
---
Epikuros
Top
irf2003
Veteran
Veteran
Posts: 1078
Joined: Wed Sep 10, 2003 12:57 pm

  • Quote

Post by irf2003 » Thu Feb 19, 2004 7:05 pm

"Automatically mount at boot" should be disabled if
you are using genkernel
the relevant parts of lilo.conf file should look something like this (please substitute with your kernel image)

Code: Select all

image = /boot/kernel-2.6.3-gentoo
	root = /dev/sda3
	vga=0x31A
	label = 2.6.3-gentoo
	initrd=/boot/initrd-2.6.3-gentoo
	append="root=/dev/ram0 real_root=/dev/sda3 init=linuxrc video=:vesa:ywrap,mtrr  splash=verbose"
HTH
Top
Epikuros
n00b
n00b
Posts: 56
Joined: Tue Aug 19, 2003 4:28 pm
Location: Helsinki, Finland

  • Quote

Post by Epikuros » Sat Feb 21, 2004 11:51 am

I've decided to post a little more info. Maybe that helps to solve the problem.

I installed the latest kernel-versions. The .config-files can still be found here:
config for 2.4.22-gentoo-r7
config for 2.6.3
both of these configs have the following:
Second extended fs support
Reiserfs-support
Ext3 journalling file system support
/dev file system support
Inculde IDE/ATA-2 DISK support
PCI IDE chipset support
Generic PCI bus-master DMA support
etc(if you want to see more detailed info check the config-files or if you are too lazy :wink: just ask me)

Still only the 2.4.22 boots while 2.6.3 ends up in kernel panic.

this time I used 'make install' so the new grub.conf looks like this(nothing changed but the names):
#########
default 0
timeout 10

title=Gentoo Kernel
root (hd0,0)
kernel (hd0,0)/vmlinuz-2.4.22-gentoo-r7 root=/dev/hda4 video=vesafb vga=792 hdd=scsi

title=Development Kernel
root (hd0,0)
kernel (hd0,0)/vmlinuz-2.6.3 root=/dev/hda4 video=vesafb vga=792
#########


the fstab looks like this(some comments stripped off):
#########
/dev/hda1 /boot ext3 noauto,noatime 1 2
/dev/hda2 none swap sw 0 1
/dev/hda3 /usr reiserfs notail 0 0
/dev/hda4 / reiserfs notail 0 0
/dev/cdroms/cdrom0 /mnt/cdrom1 iso9660 user,noauto,ro 0 0
/dev/cdroms/cdrom1 /mnt/cdrom iso9660 user,noauto,ro 0 0
/dev/fd0 /mnt/floppy ext2 user,noauto 0 0

# NOTE: The next line is critical for boot!
none /proc proc defaults 0 0

none /dev/shm tmpfs defaults 0 0
#########

Hard-drive is a normal ide-drive with capacity of 60GB(afaik Caviar Series from Western Digital), motherboard is asus P3B-F. Hardware however shouldn't be the issue here as 2.4-kernel(as have different versions of Windows) has always booted just fine.
---
Epikuros
Top
irf2003
Veteran
Veteran
Posts: 1078
Joined: Wed Sep 10, 2003 12:57 pm

  • Quote

Post by irf2003 » Sat Feb 21, 2004 8:56 pm

Epikuros, I had a look at your 2.6.3 config files, and
here are my observations:-
loopback device & ram disk support should be enabled.
also set in initial ram disk of 8k

Code: Select all

Device Drivers  --->
Block devices  --->
<*> Loopback device support
<*> RAM disk support
[8192] Initial RAM disk (initrd) support
you need to disable ATI Radeon display support,
you only need VESA VGA for the purposes of the
framebuffer.

Code: Select all

Device Drivers  --->
Graphics support  --->
[*]   VESA VGA graphics support
<>   ATI Radeon display support
enble this to have a nice bootup screen.

Code: Select all

Device Drivers  --->
Graphics support  --->
Bootsplash configuration  --->
[*] Bootup splash screen
Automatically mount at boot should be off,
/dev/pts was off it should be on.

Code: Select all

File systems  --->
Pseudo filesystems  --->
[*] /dev file system support (OBSOLETE)
[]   Automatically mount at boot
[*] /dev/pts file system for Unix98 PTYs (note this should be selectected)
[*] Virtual memory file system support (former shm fs)
now assuming that you are using genkernel to compile your kernel
the "Development Kernel" part of your grub.conf file should look
something like this (you may need to change the image and initrd names):-

Code: Select all

title=Development Kernel
root (hd0,0)
kernel (hd0,0)/boot/vmlinuz-2.6.3 root=/dev/ram0 init=/linuxrc real_root=/dev/hda4 vga=0x317
initrd (hd0,0)/boot/initrd-2.6.3
HTH
Top
alexlm78
Veteran
Veteran
User avatar
Posts: 1265
Joined: Mon Dec 08, 2003 7:05 pm
Location: Guatemala,Guatemala
Contact:
Contact alexlm78
Website

  • Quote

Post by alexlm78 » Sat Feb 21, 2004 9:04 pm

:arrow: Excelent !!!! :D
"This is a different kind of world, you need a different kind of software"

Linux User# 315201
100% Chapin hecho en Guatemala
Top
Epikuros
n00b
n00b
Posts: 56
Joined: Tue Aug 19, 2003 4:28 pm
Location: Helsinki, Finland

  • Quote

Post by Epikuros » Sun Feb 22, 2004 9:12 am

irf2003 wrote: now assuming that you are using genkernel to compile your kernel
the "Development Kernel" part of your grub.conf file should look
something like this (you may need to change the image and initrd names):-

Code: Select all

title=Development Kernel
root (hd0,0)
kernel (hd0,0)/boot/vmlinuz-2.6.3 root=/dev/ram0 init=/linuxrc real_root=/dev/hda4 vga=0x317
initrd (hd0,0)/boot/initrd-2.6.3
HTH
I'm not using genkernel. Should I start using it? Has it any benefits? Your suggestions also seem to demand an installation of the initrd. I will configure it and see if it works...
---
Epikuros
Top
Post Reply

85 posts
  • 1
  • 2
  • 3
  • 4
  • Next

Return to “Duplicate Threads”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic