The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Ubuntu + KDE

    Discussion in 'Linux Compatibility and Software' started by Bog, Jan 26, 2007.

  1. Bog

    Bog Losing it...

    Reputations:
    4,018
    Messages:
    6,046
    Likes Received:
    7
    Trophy Points:
    206
    Having just upgraded to a more spacious hard drive, my interest in Linux has been renewed and I'm ready to try again.

    With Ubuntu, my wireless works, but with Kubuntu it doesn't. Something about KDE messes it up perhaps. In any case I've tried everything, including installing Ubuntu and then upgrading it to Kubuntu using the sudo command line.

    So this time I'd like to install Ubuntu and install JUST the KDE package, NOT the Kubuntu package from adept. What command do I use to do this?

    Also, I don't really like the behaviour of the GRUB bootloader. Every time it asks me whether I want to use Windows/Linux, and I have to give a keyboard input, otherwise the computer does nothinf for 30 seconds. I'd rather have to press some key within 3 seconds or so to boot Linux, otherwise it boots Windows. How do I set this up?

    Any help is much appreciated.
     
  2. kldsckldslklasd

    kldsckldslklasd Guest

    Reputations:
    0
    Messages:
    11
    Likes Received:
    0
    Trophy Points:
    0
    "sudo apt-get install kde" will install kde without the kubuntu packages. I'd say you've got a problem with one of them not configuring your card correctly. By Kubuntu do you mean installing the kubuntu packages, using a kubuntu livecd, or actually installing kubuntu straight from a kubuntu cd?

    for grub, do "sudo gedit /boot/grub/menu.lst", then change the "timeout" line to whatever amount of time you want, in seconds. You can also change the "default" entry from "0" to "saved" (all of this without the quotes), which will make grub automatically load whatever OS you chose to load last time (very handy when installing a dozen windows updates that all need reboots).
     
  3. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    You probably want to install "knetworkmanager", which will let you deal with your wireless card easier under KDE. It's what I use.
     
  4. Bog

    Bog Losing it...

    Reputations:
    4,018
    Messages:
    6,046
    Likes Received:
    7
    Trophy Points:
    206
    Thanks alot for the help guys.

    "for grub, do "sudo gedit /boot/grub/menu.lst", then change the "timeout" line to whatever amount of time you want, in seconds. You can also change the "default" entry from "0" to "saved" (all of this without the quotes), which will make grub automatically load whatever OS you chose to load last time (very handy when installing a dozen windows updates that all need reboots)."

    In case I make it automatic, how would I load Linux?
     
  5. zephyrus54

    zephyrus54 Notebook Guru

    Reputations:
    35
    Messages:
    55
    Likes Received:
    0
    Trophy Points:
    15
    Also, if you don't want to see the grub menu, you can uncomment the line "hiddenmenu". It would look something like this after the modifications:

    ## timeout sec
    # Set a timeout, in SEC seconds, before automatically booting the default entry
    # (normally the first entry defined).
    timeout 0

    ## hiddenmenu
    # Hides the menu by default (press ESC to see the menu)
    hiddenmenu

    If you need to see the menu to log into your alternate os, then just press escape when the screen says that it's "starting up", and the grub menu will appear.