Page 75 of 94 FirstFirst ... 2565737475767785 ... LastLast
Results 741 to 750 of 931

Thread: Grub 2 Basics

  1. #741
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    How to prononuce older version of kernel as default...

    Grub(Natty): Is there a way (yet) to make some other than first kernel in the list as a default. I’m talking about this new Grub version with separation of latest and previous kernels into two pages...
    When that appeared as a feature, I've made a contraption as a sort of a solution by editing appropriate file (there is a thread somewhere here about that) but... That is not a good solution...

    Does Customizer work with NN version of grub? Yet, I do not like to fiddle with such a thing as a Grub through some SW...
    Last edited by zika; March 14th, 2011 at 05:06 PM.

  2. #742
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Grub 2 Basics

    Quote Originally Posted by Gonzalo_VC View Post
    THANKS! It worked perfectly.


    PS: the older kernels are removed by apt-get autoremove, that I apply after apt-get upgrade, if I am not mistaken.
    I beg to differ. I'm using autoremove every day several times and never (ever) it offered me to remove any of kernels, and believe me, there were lots of them...

  3. #743
    Join Date
    Apr 2008
    Location
    Brazil & Uruguay
    Beans
    8
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How to prononuce older version of kernel as default...

    As fas as I saw, you can choose which version is to be booted by default: the first or second, or any other. They are listed from newer to older, but it is not mandatory to boot by the first one in the list.

    I am running 10.04/Lucid Lynx. Don't know about 11.04 Natty Narwhal.

    Good luck.

  4. #744
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by Gonzalo_VC View Post
    I am running 10.04/Lucid Lynx. Don't know about 11.04 Natty Narwhal.
    I think it is different...
    I wish it was not... Feature that looks like a bug...

  5. #745
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by zika View Post
    Grub(Natty): Is there a way (yet) to make some other than first kernel in the list as a default. I’m talking about this new Grub version with separation of latest and previous kernels into two pages...

    Does Customizer work with NN version of grub? Yet, I do not like to fiddle with such a thing as a Grub through some SW...
    I haven't spent a lot of time with Grub 1.99 yet, as Natty won't be 'officially' released until next month and the Grub 2 files may still change further.

    If you just want to boot a submenu entry, changing the "DEFAULT=" value in /etc/default/grub still appears to work, even though you may not see the menuentry on the grub screen. You can determine the number to use in the DEFAULT entry with this command, which counts and numbers the menuentries (or just count them manually in /boot/grub/grub.cfg):
    Code:
    grep menuentry /boot/grub/grub.cfg | cut -b 1-11 --complement | cut -d "'" -f1 | cut -d "\"" -f 1 | nl --starting-line-number=0
    or more simply:
    grep menuentry /boot/grub/grub.cfg  # Count menuentries starting with 0.
    If you want to display all the kernels and eliminate the submenu feature, here is an edit of /etc/grub.d/10_linux that will eliminate the linux kernel submenu. These lines (uncommented) appear at the bottom of the file. Do not comment the "done" line.

    # if [ "$list" ] && ! $in_submenu; then
    # echo "submenu \"Previous Linux versions\" {"
    # in_submenu=:
    # fi
    done

    #if $in_submenu; then
    # echo "}"
    #fi
    Run "sudo update-grub" after saving the changes.

    I can probably come up with a way to display only specific kernels in the main menu, but I haven't done it yet and will probably not do so until Natty is released. At that point, if I come up with a solution, I'll put it in my "Tweaks" thread, linked to in my signature line.
    Back to Xorg...

    Retired.

  6. #746
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by drs305 View Post
    I haven't spent a lot of time with Grub 1.99 yet, as Natty won't be 'officially' released until next month and the Grub 2 files may still change further.

    If you just want to boot a submenu entry, changing the "DEFAULT=" value in /etc/default/grub still appears to work, even though you may not see the menuentry on the grub screen. You can determine the number to use in the DEFAULT entry with this command, which counts and numbers the menuentries (or just count them manually in /boot/grub/grub.cfg):
    Code:
    grep menuentry /boot/grub/grub.cfg | cut -b 1-11 --complement | cut -d "'" -f1 | cut -d "\"" -f 1 | nl --starting-line-number=0
    or more simply:
    grep menuentry /boot/grub/grub.cfg  # Count menuentries starting with 0.
    If you want to display all the kernels and eliminate the submenu feature, here is an edit of /etc/grub.d/10_linux that will eliminate the linux kernel submenu. These lines (uncommented) appear at the bottom of the file. Do not comment the "done" line.


    Run "sudo update-grub" after saving the changes.

    I can probably come up with a way to display only specific kernels in the main menu, but I haven't done it yet and will probably not do so until Natty is released. At that point, if I come up with a solution, I'll put it in my "Tweaks" thread, linked to in my signature line.
    You are writing exactly (as far as I recall) the „patch“ that I posted as soon as I wrote about this „problem“, months ago...
    At that time changing „default“ in /etc/default/grub did not work and it did not work numerous times in between, when I tried...
    It works, at my place, only in conjunction with the patch, until grub gets upgraded...
    I'm at peace with that but not happy...

    UPDATE: @drs305: I am sorry. You are right. Behaivour have changed and, now, changing „default“ works, even though it is not shown in GRUB menu. Thank You for making me try that again... I, simply, gave up...
    Last edited by zika; March 15th, 2011 at 09:19 AM.

  7. #747
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by zika View Post
    UPDATE: @drs305: Behaivour have changed and, now, changing „default“ works, even though it is not shown in GRUB menu. Thank You for making me try that again... I, simply, gave up...
    Glad it's working for you now. As I mentioned, Grub 1.99 is still getting some of the kinks worked out of it. I remember when the "DEFAULT" setting didn't work when the submenu was introduced - in fact I discussed it with the devs at the time. That's probably when you were trying it. Fortunately they have fixed that issue.
    Back to Xorg...

    Retired.

  8. #748
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by drs305 View Post
    Glad it's working for you now. As I mentioned, Grub 1.99 is still getting some of the kinks worked out of it. I remember when the "DEFAULT" setting didn't work when the submenu was introduced - in fact I discussed it with the devs at the time. That's probably when you were trying it. Fortunately they have fixed that issue.
    Well, it sort of doesn't... It fooled me that it works for kernels inside that submenu. But it doesn't. If You choose n=2 it invokes the first from the sub-menu. That made me happy too early... If You set n=3 it will go to the 3rd in main menu. So, all but the first in sub-menu are, still, inaccessible...
    So, nothing, really, changed...

  9. #749
    Join Date
    Jan 2007
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by zika View Post
    Well, it sort of doesn't... It fooled me that it works for kernels inside that submenu.
    Interesting. If you post RESULTS.txt from the boot info script I can take a look and see if I can find out what's going on.

    Added:
    If you haven't run the script don't bother. I spent about 20 minutes testing various submenu options and it appears the feature is still pretty buggy. I didn't have enough time to isolate exactly what is failing but if I figure out a pattern I'll submit a bug report and let you know.
    Last edited by drs305; March 17th, 2011 at 07:19 PM.
    Back to Xorg...

    Retired.

  10. #750
    Join Date
    Oct 2008
    Location
    ExodusHair<Čubura
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: How to prononuce older version of kernel as default...

    Quote Originally Posted by drs305 View Post
    Interesting. If you post RESULTS.txt from the boot info script I can take a look and see if I can find out what's going on.

    Added:
    If you haven't run the script don't bother. I spent about 20 minutes testing various submenu options and it appears the feature is still pretty buggy. I didn't have enough time to isolate exactly what is failing but if I figure out a pattern I'll submit a bug report and let you know.
    Yeah, I know. I've run that script several times, for my own sake. Problem is that submenu is made but no infrastructure is provided to call anything from it. Several lines of code would suffice... I've corrected 10_linux, again, and will do that couple of times in future. I hate, only, when I forget it, after grub upgrade, and end up in memorytest or similar, Windows, even worse, in the early morning... But, that is the only time I get back to that partition which keeps old stuff... Memories...

Page 75 of 94 FirstFirst ... 2565737475767785 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •