Results 1 to 7 of 7

Thread: Startup/shutdown quirks

  1. #1
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Startup/shutdown quirks

    While generally I would post each of these separately, I have the feeling they are all related somehow.

    Firstly, I don't get a "graphical" start with an Ubuntu loading screen. Instead, I get a black screen with text scrolling.
    Secondly, around 11.04 (I update, not reinstall), the halt and shutdown commands stopped work (shutdown -h). Instead, the system would shut down normally, and at the end of the shutdown process, would just print "system halted" and hang, power light still on, etc. Only way to fix this was to hold the power button (disks were shut off, so no data was ever lost). Since I run fluxbox and not gnome (too heavy for my system), I have to exit fluxbox to the login page and shut down from there if I want to completely power it off.
    Thirdly, just like on start, stop doesn't have a graphical shutdown. Instead, I see more white text on a black background.

    System specs:
    Code:
    $ lspci | grep VGA
    00:05.0 VGA compatible controller: NVIDIA Corporation C51 [GeForce 6150 LE] (rev a2)
    $ dpkg --list | grep nvidia
    ii  nvidia-96-modaliases                                        96.43.19-0ubuntu1                       Modaliases for the NVIDIA binary X.Org driver
    ii  nvidia-cg-toolkit                                           3.0.0016-0ubuntu1                       Cg Toolkit - GPU Shader Authoring Language
    ii  nvidia-common                                               1:0.2.44                                Find obsolete NVIDIA drivers
    Relevant part of /boot/grub/grub.cfg:
    if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi
    menuentry 'Ubuntu, with Linux 3.2.0-25-generic-pae' --class ubuntu --class gnu-l
    inux --class gnu --class os {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set=root 0a55d619-7f9c-419e-b955-04ccaa26
    e54d
    linux /boot/vmlinuz-3.2.0-25-generic-pae root=UUID=0a55d619-7f9c-419e-
    b955-04ccaa26e54d ro
    initrd /boot/initrd.img-3.2.0-25-generic-pae
    }
    Any ideas?

    Thanks,
    Cipherboy

  2. #2
    Join Date
    May 2010
    Location
    uk
    Beans
    9,249
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Startup/shutdown quirks

    Hi

    Do you have plymouth installed ? Do you have it configured to run in grub ?

    Can you post the output of

    Code:
    cat /etc/default/grub
    To shutdown your PC try the poweroff option

    Code:
    sudo shutdown -P now
    or

    Code:
    sudo poweroff
    Kind regards
    If you believe everything you read, you better not read. ~ Japanese Proverb

    If you don't read the newspaper, you're uninformed. If you read the newspaper, you're mis-informed. - Mark Twain

    Thinking about becoming an Ubuntu Member?

  3. #3
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Re: Startup/shutdown quirks

    Code:
    # If you change this file, run 'update-grub' afterwards to update
    # /boot/grub/grub.cfg.
    
    GRUB_DEFAULT=0
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
    GRUB_CMDLINE_LINUX_DEFAULT=""
    GRUB_CMDLINE_LINUX=""
    
    # Uncomment to enable BadRAM filtering, modify to suit your needs
    # This works with Linux (no patch required) and with any kernel that obtains
    # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
    #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
    
    # Uncomment to disable graphical terminal (grub-pc only)
    #GRUB_TERMINAL=console
    
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    #GRUB_GFXMODE=640x480
    
    # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
    #GRUB_DISABLE_LINUX_UUID=true
    
    # Uncomment to disable generation of recovery mode menu entries
    #GRUB_DISABLE_LINUX_RECOVERY="true"
    
    # Uncomment to get a beep at grub start
    #GRUB_INIT_TUNE="480 440 1"
    Looks like the GRUB_TERMINAL line is commented out.


    As for plymouth, it is installed, not sure how to check whether it is enabled or not.


    Cipherboy

  4. #4
    Join Date
    May 2010
    Location
    uk
    Beans
    9,249
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Startup/shutdown quirks

    Hi

    Open a terminal and type

    Code:
    sudo nano /etc/default/grub
    Enter your password. It will not be echoed to the screen.

    Scroll down to the line that says...

    Code:
    GRUB_CMDLINE_LINUX_DEFAULT=""
    and change it so it says

    Code:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    Pres ctrl + o to save and ctrl + x to exit.

    The type

    Code:
    sudo update-grub
    Wait for that to finish.

    Then reboot your PC. You you see the plymouth splash screen ?

    Kind regards
    If you believe everything you read, you better not read. ~ Japanese Proverb

    If you don't read the newspaper, you're uninformed. If you read the newspaper, you're mis-informed. - Mark Twain

    Thinking about becoming an Ubuntu Member?

  5. #5
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Re: Startup/shutdown quirks

    Ah, thank you. Forgot about that option.

  6. #6
    Join Date
    May 2010
    Location
    uk
    Beans
    9,249
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Startup/shutdown quirks

    Hi

    Did poweroff or shutdown -P help ?

    Kind regards
    If you believe everything you read, you better not read. ~ Japanese Proverb

    If you don't read the newspaper, you're uninformed. If you read the newspaper, you're mis-informed. - Mark Twain

    Thinking about becoming an Ubuntu Member?

  7. #7
    Join Date
    May 2010
    Beans
    627
    Distro
    Ubuntu Development Release

    Re: Startup/shutdown quirks

    Yes, both things worked, thank you.

    Marking as solved,
    Cpherboy

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
  •