LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Building kernel from source at /usr/src as user (https://www.linuxquestions.org/questions/slackware-14/building-kernel-from-source-at-usr-src-as-user-937221/)

Alkin 03-30-2012 02:24 AM

Building kernel from source at /usr/src as user
 
Up until recently I've been building my kernels as a root. Today I had some free time and decided to read the whole README file accompanying the latest kernel-source (3.2.13, Slackware). The author of this file (Linus Torvalds?) clearly states the we should avoid building the kernel as root. Does anybody know why? If that is the case why slackpkg preserves root:root ownership during kernel-source installation? I am aware that this is a Slackware related issue, since one can download the vanilla source in his home directory and build it without su permission.

There are some opinions that one can change the ownership of /usr/src to root:xxx granting write access to user from the group xxx, but after installing a new kernel-source the ownership is reverted back to root:root and I need to change to ownership of the directory every time I install a new kernel-source.

Does anybody has a clue what would be the safest (without using another machine) and elegant way to build and install new kernels?

Cheers

business_kid 03-30-2012 02:32 AM

Install the kernel in ~/ - that's the safest way. You need most of a gig in home to do that, but whatever blows up, it will stay as a luser.

BTW I take these discussions with a grain of salt, because a kernel compile is the most tried & tested build system anywhere. Heads debate how safe is safe; It's really _you_ is the danger. The scripts work, but what are you going to type.

GazL 03-30-2012 06:50 AM

I wrote this for my own use but you're welcome to take a look/use it if you wish. It's a little unconventional.

It works best if you have set LOCALVERSION in your config files. I use "-generic" and "-custom" for mine, depending on whether it's based on Pat's .config file or my own..

Alkin 03-30-2012 07:15 AM

Interesting and useful. Many thanks for sharing!

dugan 03-30-2012 08:59 AM

This is the definitive guide to building a new kernel on Slackware.

http://alien.slackbook.org/dokuwiki/...kernelbuilding

hf2046 03-30-2012 09:17 AM

Quote:

Originally Posted by Alkin (Post 4640386)
Does anybody has a clue what would be the safest (without using another machine) and elegant way to build and install new kernels?

And this is the definitive guide to building Linux kernels, written by a kernel maintainer. He gives an example why you shouldn't build as root.

http://www.kroah.com/lkn/

Alkin 03-31-2012 02:09 AM

The paragraph

Sometimes it is easier to have the source code for the kernel tree in a read-only
location (such as on a CD-ROM, or in a source code control system), and place
the output of the kernel build elsewhere, so that you do not disturb the original
source tree. The kernel build system handles this easily, by requiring only the
single argument O= to tell it where to place the output of the build. For example, if
the kernel source is located on a CD-ROM mounted on /mnt/cdrom/ and you wish
to place the built files in your local directory, enter:
$ cd /mnt/cdrom/linux-2.6.17.11
$ make O=~/linux/linux-2.6.17.11
All of the build files will be created in the ~/linux/linux-2.6.17.11/ directory.
Please note that this O= option should also be passed to the configuration options
of the build so that the configuration is correctly placed in the output directory
and not in the directory containing the source code.


from the book, Linux Kernel in a Nutshell, by Greg Kroah-Hartman, published by O'Reilly have helped me figure out an elegant way of building the Linux kernel as user. Still not very clear why I shouldn't build it as root though...
@hf2046 Thanks for the link, very helpful.

GazL 03-31-2012 02:39 AM

Quote:

Originally Posted by Alkin (Post 4641186)
The paragraph
...snip...

from the book, Linux Kernel in a Nutshell, by Greg Kroah-Hartman, published by O'Reilly have helped me figure out an elegant way of building the Linux kernel as user.

... which is exactly the approach my build script above takes, only my script has a bit added onto the end that packages it up.


The "don't build as root" thing is simply a "We might make a mistake in the Makefile and if we do and it's running as root anything can happen" sort of deal. Its more likely a consideration with the development kernels or release candidates though. By the time it gets to a release tarball these sorts of problems ought to have been discovered and shouldn't be an issue.

Even those who say "Don't build as root" generally tell you the 'make modules_install' has to be done as root, and if that has to be done as root then I really don't see much advantage from not doing the rest of it as root.

Alkin 03-31-2012 03:46 AM

I see... "O=" is something new for me, thanks. I can mark this thread as solved, thanks to everyone.

tmmukunn 03-31-2012 09:22 PM

Generally I like the idea of staying away from root as much as possible :). Only because I might be careless enough to leave myself in root and accidently bringing up an application that probably shouldn't be run as root.

Sometimes we have to protect us from ourselves :).

Anyways, my point in regards to this thread is that I haven't seen any issues at all in compiling the linux kernel as the user. As Gazl points out though, you can't get away w/ running make modules_install w/o running as root. And most likely to update your boot location, and also lilo, you'd have to run as root as well, but these don't take any time at all to do compared to compiling the kernel.

In the end, do what you got to do to get the job done with whatever security works for you.

GazL 04-01-2012 06:03 AM

Quote:

Originally Posted by tmmukunn (Post 4641739)
As Gazl points out though, you can't get away w/ running make modules_install w/o running as root.

Strictly speaking you can, but you'll need root at some point to make it possible (even if it's only a little chowning before and after). It all depends on how many hoops you're prepared to jump through to avoid it and whether it's worth the effort.

Alkin 04-01-2012 11:22 AM

Well it turns out that the method with outputting the build to another directory (O=) requires preliminary use of "make mrproper" which wants to remove "./kernel/bounds.s" and "./arch/x86/kernel/asm-offsets.s" files from the source directory. Is it save to remove these files? Are they unnecessary? I presume these are Slackaware specific?

GazL 04-01-2012 12:08 PM

They won't be slackware specific. And it's always a good idea to do make mrproper or make distclean before you build from the source.

Alkin 04-01-2012 12:22 PM

Ah I see, but then it requires su permissions...

GazL 04-02-2012 04:45 PM

I just updated to 3.2.14 and thought you might be interested in seeing my approach in action.
.
Code:

build@slackbox:~$ dmesg | head -1
Linux version 3.2.14-custom (build@slackbox) (gcc version 4.7.0 (GCC) ) #1 SMP Mon Apr 2 20:47:56 BST 2012

As you can see the new kernel was built by 'build' and not root.


And this is how I got there.

History of my 'build' user
Code:

  491  cd /local/mirrors/linux-stable/
  492  git fetch --all
  493  git pull
  494  git clean -d -f
  495  su root -c "mkdir /usr/src/linux-3.2.14 && cp -r * /usr/src/linux-3.2.14"
  496  cd
  497  ./kernel.SlackBuild -s /usr/src/linux-3.2.14

(I prefer to keep my git tree separate to the source I build from, but I could have built from the git tree if I had wanted to and avoided an additional step and a 'su' .)


And then as root:
Code:

  494  installpkg kernel-3.2.14_custom-x86_64-1_gazl.txz
  495  cd ../nvidia/
  496  ./NVIDIA-Linux-x86_64-295.33-no-compat32.run -s -K -k 3.2.14-custom
  497  cd
  498  VERSION=3.2.14-custom ./maint/initrd_build.sh
  499  vi /etc/lilo.conf
  500  /sbin/lilo

(Don't worry too much about the initrd_build script: it is just a front end to mkinitrd - nothing much of interest in there.)

... and job done... reboot to shiny new kernel.

Alkin 04-06-2012 06:33 AM

I see that you are fetching an untouched source of the Linux kernel (linux-stable) and thus avoiding to run of "make mrproper". I am obtaining my source through slackpkg and therefore need to run "make mrproper" :). I would be grateful if somebody explains what is the difference between the two sources. Thanks

Alkin

GazL 04-06-2012 07:28 AM

Not really avoiding a make mrproper, but the "git clean" does a similar job. I probably ought to be doing a "make distclean" before that cp step to be absolutely sure nothing slips through, but so far I've not had a problem skipping that step and I'm just being lazy and relying on git being in a clean state..


The slackware packaged kernel source tree appears to already contain a .config so it's not entirely clean. Which explains why you're having permission problems when running the make mrproper as a non-root user. If you want to clean up the slackware shipped sources then you're going to have to do it as root.

Alkin 04-06-2012 08:48 AM

Ahh I see, thanks.


All times are GMT -5. The time now is 04:55 PM.