Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
I spent 2 days installing Gentoo. Can I have my 2 days back?
View unanswered posts
View posts from last 24 hours

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
thomassisson
n00b
n00b


Joined: 12 Sep 2013
Posts: 3

PostPosted: Thu Sep 12, 2013 2:25 am    Post subject: I spent 2 days installing Gentoo. Can I have my 2 days back? Reply with quote

Okay, the question is flippant, but I'm seriously frustrated. I followed the instructions from www.gentoo.org/doc/en/handbook/handbook-amd64.xml from chroot. I don't understand where everything was installed. It installs a kernel, but can never find it.

The advice to go back and reinstall the kernel is just too much to take after spending so much time building everything. Perhaps the instructions should say something like, "If this is the first time you have installed Gentoo, use genkernel!" or whatever it's called.

I now have files mounted under /mnt/gentoo that I cannot unmount using umount outside or inside chroot.

I realize that I was not up to the challenge, but I want something beyond Ubuntu. I want up-to-date software with stability.

Maybe I should go back to Fedora or try a BSD derivative. (Is that flame bait?)
_________________
Still haven't figured out Gentoo and don't think I ever will.
Back to top
View user's profile Send private message
hadrons123
Tux's lil' helper
Tux's lil' helper


Joined: 08 Mar 2012
Posts: 90
Location: chennai

PostPosted: Thu Sep 12, 2013 4:24 am    Post subject: Reply with quote

Even I felt why did they not recommend genkernel first. But the whole idea of Gentoo handbook is doing things the generic way and not showing too much gentoo specific stuff in the handbook, I guess. Its more likely that a new user might be familiar with generic kernel building rather than genkernel even though genkernel may be easier. Apart from the kernel building one needs to know more basics of Linux computing in general in Terminal when you want to use Gentoo. It would be tough for people to graduate directly from ubuntu way of doing things. After you undergo the process of installing successfully once you most likely will have smooth sailing in Gentoo. I never imagined Gentoo to be this smooth after the turbulent period of installing.
_________________
LENOVO Y580 FHD Intel® Core™ i7-3630QM CPU @ 2.40GHz × 8 |660M GTX NVIDIA | 16GB SanDisk SSD
Back to top
View user's profile Send private message
Simba7
l33t
l33t


Joined: 22 Jan 2007
Posts: 706
Location: Billings, MT, USA

PostPosted: Thu Sep 12, 2013 4:40 am    Post subject: Reply with quote

Gentoo can also be used in a variety of ways. I operate a router (PowerEdge 1750) on Gentoo. I'm currently compiling Gentoo on a WD MyBook Live 3TB.

Gentoo can be made incredibly small for embedded use. It can be customized to work on different architectures.
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Thu Sep 12, 2013 5:08 am    Post subject: Reply with quote

There is generally lots of help but little sympathy available here.
Quote:
It installs a kernel, but can never find it.
What command did you issue? What response did you receive? If long, try posting pictures on a photo site.
_________________
Defund the FCC.
Back to top
View user's profile Send private message
genblood
Tux's lil' helper
Tux's lil' helper


Joined: 03 Dec 2003
Posts: 133
Location: New Hampshire

PostPosted: Thu Sep 12, 2013 6:28 am    Post subject: Reply with quote

Gentoo is different then other distro's. It has it's good and bad. When I first started
using Gentoo, it took 4 tries before I got it up and ruling. Now, I've learned alot
able linux and how Gentoo works. I prefer the quick guide and it gets me to a working state.
Then I install the other stuff ...
_________________
General Blood ..

Gentoo 2008.0 AMD Phemon X4 9850+ 8GB DDR2 1066
MSI K9A2 Platium Mother Board ATI 4830 PCI-e 512MB
1 Blu-Ray Drive
4 sata WD 500 GB drive
Back to top
View user's profile Send private message
PaulBredbury
Watchman
Watchman


Joined: 14 Jul 2005
Posts: 7310

PostPosted: Thu Sep 12, 2013 7:11 am    Post subject: Re: I spent 2 days installing Gentoo. Can I have my 2 days b Reply with quote

thomassisson wrote:
I want something beyond Ubuntu. I want up-to-date software with stability.

Manjaro seems popular, and will help you to gain more understanding of "raw" Linux.
Back to top
View user's profile Send private message
hadrons123
Tux's lil' helper
Tux's lil' helper


Joined: 08 Mar 2012
Posts: 90
Location: chennai

PostPosted: Thu Sep 12, 2013 7:16 am    Post subject: Re: I spent 2 days installing Gentoo. Can I have my 2 days b Reply with quote

PaulBredbury wrote:
thomassisson wrote:
I want something beyond Ubuntu. I want up-to-date software with stability.

Manjaro seems popular, and will help you to gain more understanding of "raw" Linux.
Why not sabayon?
Its more closer to Gentoo than manjaro is. The sabayon learning will be applicable to Gentoo.
_________________
LENOVO Y580 FHD Intel® Core™ i7-3630QM CPU @ 2.40GHz × 8 |660M GTX NVIDIA | 16GB SanDisk SSD
Back to top
View user's profile Send private message
creaker
l33t
l33t


Joined: 14 Jul 2012
Posts: 651

PostPosted: Thu Sep 12, 2013 11:27 am    Post subject: Reply with quote

Quote:
I don't understand where everything was installed. It installs a kernel, but can never find it.


Freshly built kernel should be located at /usr/src/linux/arch/x86_64/boot/ directory and named as bzImage.
You need to copy bzImage to your top level /boot directory and rename it as kernel-X.XX.X-gentoo. Here X.XX.X should match your kernel source version.

Quote:
Perhaps the instructions should say something like, "If this is the first time you have installed Gentoo, use genkernel!" or whatever it's called.

Using genkernel is the simplest way but you will get a bloated kernel that contains a lot of modules that you no need at all. You can use it to getting started.
Another one option that did not mentioned in handbook is "make localmodconfig". It analyzed lsmod output and disables modules that does not need for your hardware. As result you getting .config file and can run "make && make modules_install". The kernel built this way is more lightweight at faster than built by genkernel.

Quote:
The advice to go back and reinstall the kernel is just too much to take after spending so much time building everything

Kernel rebuild is much more faster than first build, because "make" does not rebuilds all the kernel but the changed options only.
Back to top
View user's profile Send private message
mrbassie
l33t
l33t


Joined: 31 May 2013
Posts: 770
Location: over here

PostPosted: Thu Sep 12, 2013 1:47 pm    Post subject: Re: I spent 2 days installing Gentoo. Can I have my 2 days b Reply with quote

thomassisson wrote:

I realize that I was not up to the challenge, but I want something beyond Ubuntu. I want up-to-date software with stability.


I got it working first time and broke it and started again a handful of times, then did it again on my ssd I think it took me 3 or 4 days in all. It is frustrating but If you perseveer you'll get it eventually and it is worth it for the learning experience alone. That and it's a great distro with some amazing tools.

If you decide to stick with it and if you start again from scratch, here's a video tutorial which I found very helpful: http://www.youtube.com/watch?v=sJwwcw56d6c and of course you have the handbook as a reference.
Back to top
View user's profile Send private message
John R. Graham
Administrator
Administrator


Joined: 08 Mar 2005
Posts: 10587
Location: Somewhere over Atlanta, Georgia

PostPosted: Thu Sep 12, 2013 2:15 pm    Post subject: Reply with quote

To the OP, as of this writing, there are over 50 thousand questions posted in the Installing Gentoo section of the forum, garnering nearly 300 thousand replies. Clearly, the Gentoo install process is not trouble free for a lot of people and, just as clearly, a lot of help has been provided when questions are asked. Why aren't any of those questions from you?

By the way, my first install took more than two days. :wink: (It was on a 90MHz Pentium I, though, so compile times were looong.)

- John
_________________
I can confirm that I have received between 0 and 499 National Security Letters.
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Fri Sep 13, 2013 12:14 am    Post subject: Reply with quote

Your two days are wasted only if you never ever return to Linux or any other POSIX compliant system.
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
cwr
Veteran
Veteran


Joined: 17 Dec 2005
Posts: 1969

PostPosted: Fri Sep 13, 2013 7:43 pm    Post subject: Reply with quote

I wish Stage3s came with a standard kernel .config file - if Ubuntu can build a standard kernel,
I don't see why Gentoo can't. It would give people a starting point when building a new system,
and they could use it as a base when building a kernel that fitted their system.

I don't really understand the prejudice against genkernel, either - I've always used it, via
a shell script to set up the options, and I've found it pretty convenient. I'm not sure it will
produce a system without an initramfs, but initramfs is getting to be a requirement anyway.


Will
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Fri Sep 13, 2013 8:59 pm    Post subject: Reply with quote

Quote:
I don't really understand the prejudice against genkernel, either


Me neither. I use the default config for the first install. It always boots. Once I boot into the new Gentoo system, I run genkernel --menuconfig and cut out all the hardware and file systems I don't have.
If I've screwed up, the original kernel is there until I verify the new leaner system and delete the old one. There seems to be some macho pleasure to building a kernel then copying and and renaming it, while, of course, never making a typing error. Maybe to some people "genkernel" means always using the default kernel instead of an automated tool to build whatever you want.
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Fri Sep 13, 2013 9:26 pm    Post subject: Reply with quote

Not sure about macho comment. For me kernel is the most important part of my Linux system and I do not hesitate to dedicate good deal of time to configuration. Never ever had a genkernel, I admit I tried once (I think it was 2008 when installer came out), but it errored out somehow and I lost interest.
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
thomassisson
n00b
n00b


Joined: 12 Sep 2013
Posts: 3

PostPosted: Sat Sep 14, 2013 3:51 am    Post subject: Reply with quote

Thanks, this actually answered my question.

creaker wrote:
Freshly built kernel should be located at /usr/src/linux/arch/x86_64/boot/ directory and named as bzImage.
You need to copy bzImage to your top level /boot directory and rename it as kernel-X.XX.X-gentoo. Here X.XX.X should match your kernel source version.


I had to walk away from it and then come back. I recall the documentation saying something about bzImage. I personally don't know why it isn't built with the name kernel-X.XX.X-gentoo in the first place.[/glsa]

I'm concerned that my system thinks that it is a DOS executable; however, grub does think it's a kernel. The reason you must delete, or at least move, the stage3 file is that grub tools will think it's kernel. It essentially is, but it does not actually boot anything Gentoo related. Instead, it boots a different kernel with a Lubuntu splash screen and starts LightDM.

  1. I'll see if the kernel boots.
  2. I'll try to install a desktop.

_________________
Still haven't figured out Gentoo and don't think I ever will.
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Sat Sep 14, 2013 4:07 am    Post subject: Reply with quote

The name does not matter. You can name your kernel ohohoo and it will boot if the bootloader calls it. My current kernel is called bzImage and the working backup is called bzImage.pre. Having it setup this way I do not need to edit grub.conf when upgrading. This is about machines that boot with GRUB indeed.
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
creaker
l33t
l33t


Joined: 14 Jul 2012
Posts: 651

PostPosted: Sat Sep 14, 2013 10:52 am    Post subject: Reply with quote

Yes, it is no matter how you kernel was named. Grub will load it anyway. Renaming just helps to distinguish kernels if you have a set of different kernels (for example with different modules sets).
If your grub loads lubuntu kernel, probably you have your grub mis-configured. It looks like you have a lubuntu partition and grub pointed to boot from it instead of booting from gentoo partition.

P.S.
stage3 does not disturb anyone. The reason to remove it is just freeing some extra spaces at your partition. Grub-mkconfig does not reacts to this file.
Back to top
View user's profile Send private message
cwr
Veteran
Veteran


Joined: 17 Dec 2005
Posts: 1969

PostPosted: Sat Sep 14, 2013 11:08 am    Post subject: Reply with quote

In fact typical genkernel output files are:
Code:

System.map-genkernel-x86-3.8.13-gentoo-r6-1
kernel-genkernel-x86-3.8.13-gentoo-r6-1
initramfs-genkernel-x86-3.8.13-gentoo-r6-1


with the trailing "-1" being a local number. I run "-1" kernels as the default boot kernel, and
"-2" kernels for testing. Once the testing is over, I build the next "-1" kernel with the "-2"
config file.


Will
Back to top
View user's profile Send private message
_______0
Guru
Guru


Joined: 15 Oct 2012
Posts: 521

PostPosted: Sat Sep 14, 2013 4:37 pm    Post subject: calculate ... Reply with quote

try calculate, gentoo based with binary install system.

At least that's what I got from their site. Solves the compiling dilema vs binary install by having both choices and switch to either by a flip of a keyboard.
Back to top
View user's profile Send private message
thomassisson
n00b
n00b


Joined: 12 Sep 2013
Posts: 3

PostPosted: Thu Sep 19, 2013 12:02 am    Post subject: I'm downloading Sabayon Reply with quote

I'm downloading Sabayon. I'm hoping that it will just work.

I'm also considering a ready-made version of BSD. I've decided that I need at least a base system that supports my hardware, boots from the boot menu, and can connect to the internet via wireless.

For me, installing Gentoo was an interesting and frustrating waste of time.

Thanks for the recommendations. I'm pretty sure I've decided which BSD distribution I will try. I'll do a virtual install or a live CD first, though.

I probably won't be back.
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Thu Sep 19, 2013 12:16 am    Post subject: Reply with quote

You didn't listen to the advice you were given.

Quote:
I'm hoping that it will just work.


If that's what you want, go here: http://www.ubuntu.com/download/desktop

It's a bloated Windows clone, but it will "just work", just as in "barely".
Back to top
View user's profile Send private message
Clad in Sky
l33t
l33t


Joined: 04 May 2007
Posts: 884
Location: Germany

PostPosted: Fri Sep 20, 2013 6:36 am    Post subject: Re: I'm downloading Sabayon Reply with quote

thomassisson wrote:

For me, installing Gentoo was an interesting and frustrating waste of time.

Doesn't really compute. If it was interesting, how can it be a waste of time?
Anyway, good luck with other distros. Gentoo is not for everyone. Many people used Gentoo and then went back to Win, OSX, another Distro or BSD, whatever, because of different reasons. They all seem to have found what they were looking for, so you might as well.

Just don't blame it on Gentoo alone. When I started with Linux I actually wanted Ubuntu, but a friend installed Gentoo for me. Kept it ever since, installed it on my own several times and never had unsolvable trouble since the documentation is really good and people are usually helpful.

Following the Handbook (and not the quick guide, but you linked to the handbook so I guess you used it) usually gives good results, IF you read it and don't just fly from code listing to code listing. The handbook tells you about genkernel, btw. It also contains this precious line: cp arch/x86_64/boot/bzImage /boot/kernel-3.4.9-gentoo.

I recommend using Pappy's Kernel seeds if you're unsure about kernel configuration and can't or don't want to figure out genkernel:
SITE LIST:
Main: http://www.kernel-seeds.org
Mirror: http://kernel-seeds.grytpype-thynne.org/
Mirror 2: http://kernel-seeds.gentoostudio.org/
Mirror 3: http://www.elilabs.com/~pappy/
Mirror 4: http://62.3.120.142/~seeds/
_________________
Kali Ma
Now it's autumn of the aeons
Dance with your sword
Now it's time for the harvest
Back to top
View user's profile Send private message
keenblade
Veteran
Veteran


Joined: 03 Oct 2004
Posts: 1087

PostPosted: Fri Sep 20, 2013 8:05 pm    Post subject: Re: I'm downloading Sabayon Reply with quote

thomassisson wrote:
For me, installing Gentoo was an interesting and frustrating waste of time.

In my first attemp, I could not managed to install gentoo, too. But giving up is not an option in my nature. So, finally I managed to see the gentoo desktop by the help of friends on this forum. And since then, no other distribution is enough for me. Every time I try another distro, I like gentoo more. Gentoo is a distro as you want it to be. Every gentoo is different unlike other binary distros. It is specific to its owner. It is so flexible that, you can make it a server, a gaming machine, a music production workstation, whatever you dream or all of them at once.
So I suggest you do not give up untill you see the gentoo desktop. And that two days will be a wise use of time. You will know if gentoo is good for you or not.
_________________
Anyway it's all the same at the end...
Need help to get it working: "x-fi surround 5.1"
Back to top
View user's profile Send private message
i92guboj
Bodhisattva
Bodhisattva


Joined: 30 Nov 2004
Posts: 10315
Location: Córdoba (Spain)

PostPosted: Sat Sep 21, 2013 8:21 am    Post subject: Re: I spent 2 days installing Gentoo. Can I have my 2 days b Reply with quote

thomassisson wrote:
Okay, the question is flippant, but I'm seriously frustrated. I followed the instructions from www.gentoo.org/doc/en/handbook/handbook-amd64.xml from chroot. I don't understand where everything was installed. It installs a kernel, but can never find it.

The advice to go back and reinstall the kernel is just too much to take after spending so much time building everything. Perhaps the instructions should say something like, "If this is the first time you have installed Gentoo, use genkernel!" or whatever it's called.


Using one or another method won't make a difference for you. The problem here seems to be that you don't understand the basics of the filesystem structure, and how the mount command works. The kernel is stored in the same way, regardless of the method you use to configure and build it.

Two days for a first installation of Gentoo is not bad, and having to go some steps back at some point to re-do something is not rare either. The last thing you should bring with you when trying Gentoo for first time is "impatience". Just an advise. ;)

Quote:
I now have files mounted under /mnt/gentoo that I cannot unmount using umount outside or inside chroot.


Without the error we can't be sure, but probably some process is using the fs, so you can't umount it. Make sure you close all the shells you might have open in other VTs.

Quote:

I realize that I was not up to the challenge, but I want something beyond Ubuntu. I want up-to-date software with stability.


Ubuntu and Gentoo are probably in opposite sides of the sprectrum. After Gentoo there's only LFS :P But I don't consider that as a showstopper. I know several newcomers to Linux whose first experience with it has been in Gentoo, and they did quite well, with some help from the forum or the ML.
Back to top
View user's profile Send private message
Yamakuzure
Advocate
Advocate


Joined: 21 Jun 2006
Posts: 2280
Location: Adendorf, Germany

PostPosted: Sat Sep 21, 2013 10:10 am    Post subject: Re: I spent 2 days installing Gentoo. Can I have my 2 days b Reply with quote

i92guboj wrote:
Two days for a first installation of Gentoo is not bad
I remember my first install of Gentoo (End of 2003 on a Pentium Pro 233 MMX) took five days until I had a desktop (XFCE if I remember correctly).

But really, installing Gentoo is not a one way ticket. It's part of the learning process. Now, ten years after, I have just build up a Gentoo VM for testing wayland and got a bootable system (Just the console, so no boot disc and chroot are required any more) in under 2 hours. Without genkernel.
i92guboj wrote:
Ubuntu and Gentoo are probably in opposite sides of the sprectrum. After Gentoo there's only LFS
Ah! No. LFS is just a beginners guide for people who are really wanting it hard core. Once you can do LFS on your own, the real thing awaits you: DIY Linux!
But although LFS is fun and a great learning source, DIY is too much for me to just "play around". However, LFS and DIY are very useful if you must get a working system very very small.
LFS Website wrote:
We installed a system that was just enough to run the Apache web server; total disk space usage was approximately 8 MB. With further stripping, that can be brought down to 5 MB or less. Try that with a regular distribution.
;)

Learning is never a waste!
_________________
Important German:
  1. "Aha" - German reaction to pretend that you are really interested while giving no f*ck.
  2. "Tja" - German reaction to the apocalypse, nuclear war, an alien invasion or no bread in the house.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum