Results 1 to 14 of 14

Thread: Ubuntu Patching - Help please!

  1. #1
    Senior Member
    Join Date
    Nov 2006
    Location
    London
    Posts
    433
    Thanks
    17
    Thanked
    0 times in 0 posts
    • timtim86's system
      • Motherboard:
      • Shuttle
      • CPU:
      • Athlon X2 5000+
      • Memory:
      • 6GB OCZ Gold 6400
      • Storage:
      • 2 x 250GB Seagates, 1 x 750GB Samsung
      • Graphics card(s):
      • 8800GS 384MB
      • PSU:
      • Shuttle 400W
      • Case:
      • Shuttle SN27P2
      • Operating System:
      • Windows 7 Pro
      • Monitor(s):
      • Dell 2007WFP

    Ubuntu Patching - Help please!

    Hi everyone,

    Basically I have an old-ish laptop that's very small and I decided to put Ubuntu Netbook edition on it.

    Having overcome various difficulties getting it installed, I have no come across another problem - the Netbook UI is very slow.

    The laptop has an Intel 855 GPU, and I had to enable Ubuntu i915 drivers to stop it crashing at boot (input i915.modeset=1).

    There is a patch here:

    http://kernel.ubuntu.com/git?p=ubunt...b6779e044d6afb

    that apparently is for this very problem (slow UI) but being new to linux I have ABSOLUTELY NO IDEA how to put it in.

    Can anyone help me?

    Thanks in advance

  2. #2
    The late but legendary peterb - Onward and Upward peterb's Avatar
    Join Date
    Aug 2005
    Location
    Looking down & checking on swearing
    Posts
    19,378
    Thanks
    2,892
    Thanked
    3,403 times in 2,693 posts

    Re: Ubuntu Patching - Help please!

    I can't remember if Ubuntu uses YUM or APT as it's application manager, but if that patch is available through the packages manager it is just a case of either using the GUI application manager or a command line like


    Code:
    # yum install package_name
    If it isn't in the package manager, the download and install process is usually described in either a README file or on the site you are downloading from.

    Edit:

    Just looked at the link you posted - that isn't the code or the download site - it is the Ubuntu fork of the debian kernel development site. (Ubuntu is based on the debian distribution (or distro).

    So the fix will be incorporated in a future release of the Kernel, which you will be able to download (possibly automatically) when it is released - using the package manager.

    There may be a patch but I haven't had a search for it.

    Sorry this isn't really the answer you were probably looking for. If I get some time over the W/E I'll try and look into it a bit more - but I'm not particularly familiar with Ubuntu (or debian)
    Last edited by peterb; 14-05-2010 at 11:39 AM.
    (\__/)
    (='.'=)
    (")_(")

    Been helped or just 'Like' a post? Use the Thanks button!
    My broadband speed - 750 Meganibbles/minute

  3. #3
    Jay
    Jay is offline
    Gentlemen.. we're history Jay's Avatar
    Join Date
    Aug 2006
    Location
    Jita
    Posts
    8,365
    Thanks
    304
    Thanked
    568 times in 409 posts

    Re: Ubuntu Patching - Help please!

    ubuntu uses apt
    □ΞVΞ□

  4. #4
    ɯʎɔɐɹsɐʌʍ mycarsavw's Avatar
    Join Date
    Feb 2007
    Posts
    4,945
    Thanks
    1,097
    Thanked
    653 times in 482 posts
    • mycarsavw's system
      • Motherboard:
      • P8H77-M Pro
      • CPU:
      • i5 3350P
      • Memory:
      • 16Gb
      • Storage:
      • Lots
      • Graphics card(s):
      • R9 285
      • PSU:
      • HX 620w
      • Case:
      • FD Define Mini
      • Operating System:
      • W10
      • Monitor(s):
      • BenQ G2420HDBL + GL2450HT
      • Internet:
      • Sky

    Re: Ubuntu Patching - Help please!

    Ubuntu is;

    Code:
    apt-get install <packagename>
    Just so I understand fully, you're trying to load a patch that'll make the Ubuntu NE GUI quicker?
    |Kata: "Read title as 'fisting'. Not sure why I clicked. Relieved, really."|
    |TAKTAK: "It was so small that mine wouldn't fit into it"|

  5. #5
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Ubuntu Patching - Help please!

    If all you want to do is force modesetting for the i915 module, all you have to do is use your text editor to open a file in /etc/modprobe.d.. say.. /etc/modprobe.d/forcemodesetting.conf, and put the following in it:
    Code:
    options i915 modeset=1
    Then reboot.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  6. #6
    Senior Member
    Join Date
    Nov 2006
    Location
    London
    Posts
    433
    Thanks
    17
    Thanked
    0 times in 0 posts
    • timtim86's system
      • Motherboard:
      • Shuttle
      • CPU:
      • Athlon X2 5000+
      • Memory:
      • 6GB OCZ Gold 6400
      • Storage:
      • 2 x 250GB Seagates, 1 x 750GB Samsung
      • Graphics card(s):
      • 8800GS 384MB
      • PSU:
      • Shuttle 400W
      • Case:
      • Shuttle SN27P2
      • Operating System:
      • Windows 7 Pro
      • Monitor(s):
      • Dell 2007WFP

    Re: Ubuntu Patching - Help please!

    Quote Originally Posted by mycarsavw View Post
    Ubuntu is;

    Code:
    apt-get install <packagename>
    Just so I understand fully, you're trying to load a patch that'll make the Ubuntu NE GUI quicker?
    Yes I guess so, something about enabling MCHBAR on the i915 chipset - apparently a few people were having problems with it being really slow.

    If all you want to do is force modesetting for the i915 module, all you have to do is use your text editor to open a file in /etc/modprobe.d.. say.. /etc/modprobe.d/forcemodesetting.conf, and put the following in it:
    Code:

    options i915 modeset=1

    Then reboot.
    Put that one in already, that's the only reason the screen actually works

  7. #7
    ɯʎɔɐɹsɐʌʍ mycarsavw's Avatar
    Join Date
    Feb 2007
    Posts
    4,945
    Thanks
    1,097
    Thanked
    653 times in 482 posts
    • mycarsavw's system
      • Motherboard:
      • P8H77-M Pro
      • CPU:
      • i5 3350P
      • Memory:
      • 16Gb
      • Storage:
      • Lots
      • Graphics card(s):
      • R9 285
      • PSU:
      • HX 620w
      • Case:
      • FD Define Mini
      • Operating System:
      • W10
      • Monitor(s):
      • BenQ G2420HDBL + GL2450HT
      • Internet:
      • Sky

    Re: Ubuntu Patching - Help please!

    You have to patch the kernel - that's not something for beginners to even attempt imho.

    https://patchwork.kernel.org/patch/28308/

    The patch itself is at the end of the messages.
    |Kata: "Read title as 'fisting'. Not sure why I clicked. Relieved, really."|
    |TAKTAK: "It was so small that mine wouldn't fit into it"|

  8. #8
    Gentoo Ricer
    Join Date
    Jan 2005
    Location
    Galway
    Posts
    11,048
    Thanks
    1,016
    Thanked
    944 times in 704 posts
    • aidanjt's system
      • Motherboard:
      • Asus Strix Z370-G
      • CPU:
      • Intel i7-8700K
      • Memory:
      • 2x8GB Corsiar LPX 3000C15
      • Storage:
      • 500GB Samsung 960 EVO
      • Graphics card(s):
      • EVGA GTX 970 SC ACX 2.0
      • PSU:
      • EVGA G3 750W
      • Case:
      • Fractal Design Define C Mini
      • Operating System:
      • Windows 10 Pro
      • Monitor(s):
      • Asus MG279Q
      • Internet:
      • 240mbps Virgin Cable

    Re: Ubuntu Patching - Help please!

    Agreed, look for an appropriately patched ppa on launchpad, and use their kernel packages instead.
    Quote Originally Posted by Agent View Post
    ...every time Creative bring out a new card range their advertising makes it sound like they have discovered a way to insert a thousand Chuck Norris super dwarfs in your ears...

  9. #9
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: Ubuntu Patching - Help please!

    You're forcing modesetting on? Odd, the kernel package changelogs suggest the opposite approach:

    * SAUCE: i915 KMS -- support disabling KMS for known broken devices
    - LP: #563277
    * SAUCE: i915 KMS -- blacklist i855
    - LP: #511001, #541511, #563277

  10. #10
    Senior Member
    Join Date
    Nov 2006
    Location
    London
    Posts
    433
    Thanks
    17
    Thanked
    0 times in 0 posts
    • timtim86's system
      • Motherboard:
      • Shuttle
      • CPU:
      • Athlon X2 5000+
      • Memory:
      • 6GB OCZ Gold 6400
      • Storage:
      • 2 x 250GB Seagates, 1 x 750GB Samsung
      • Graphics card(s):
      • 8800GS 384MB
      • PSU:
      • Shuttle 400W
      • Case:
      • Shuttle SN27P2
      • Operating System:
      • Windows 7 Pro
      • Monitor(s):
      • Dell 2007WFP

    Re: Ubuntu Patching - Help please!

    Well this seems to have become far too difficult for me to deal with, being a linux noobie. Quite liking it so far though! And thanks for your help explaining things.

    Last question - Ubuntu or Windows 7?! What do you think?

    (Intel Centrino 1.1 GHz, 512 Ram, 60gb HDD)

    Thanks as always

  11. #11
    A shadowy flight. MSIC's Avatar
    Join Date
    Oct 2005
    Location
    London/Herts
    Posts
    3,413
    Thanks
    394
    Thanked
    229 times in 168 posts
    • MSIC's system
      • Motherboard:
      • ASRock H170M-ITX
      • CPU:
      • Core i5 6500
      • Memory:
      • 2 x 4GB Corsair Veng DDR4 2666
      • Storage:
      • 240GB SSD (boot) +1TB Samsung F3
      • Graphics card(s):
      • ASUS GeForce 750Ti
      • PSU:
      • Silverstone 450W ST455F
      • Case:
      • Silverstone SG06-450
      • Operating System:
      • Win10
      • Monitor(s):
      • Dell S2309W
      • Internet:
      • PlusNet FiberTTC

    Re: Ubuntu Patching - Help please!

    Win7 is a great Operating System, so i'd probably vouch for that if you are willing / able to afford, however Ubuntu is clearly free, so why not both?

    Edit: Just realised you said 512Mb RAM. Win7 may well run, but it wouldnt be a good fit. Either fit more memory, or Linux all the way.
    I'm commenting on an internet forum. Your facts hold no sway over me.
    - Another poster, from another forum.

    System as shown, plus: Microsoft Wireless mobile 4000 mouse and Logitech Illuminated keyboard.
    Sennheiser RS160 wireless headphones. Creative Gigaworks T40 SII. My wife.
    My Hexus Trust

  12. Received thanks from:

    timtim86 (16-05-2010)

  13. #12
    Senior Member
    Join Date
    Nov 2006
    Location
    London
    Posts
    433
    Thanks
    17
    Thanked
    0 times in 0 posts
    • timtim86's system
      • Motherboard:
      • Shuttle
      • CPU:
      • Athlon X2 5000+
      • Memory:
      • 6GB OCZ Gold 6400
      • Storage:
      • 2 x 250GB Seagates, 1 x 750GB Samsung
      • Graphics card(s):
      • 8800GS 384MB
      • PSU:
      • Shuttle 400W
      • Case:
      • Shuttle SN27P2
      • Operating System:
      • Windows 7 Pro
      • Monitor(s):
      • Dell 2007WFP

    Re: Ubuntu Patching - Help please!

    Quote Originally Posted by MSIC View Post
    Win7 is a great Operating System, so i'd probably vouch for that if you are willing / able to afford, however Ubuntu is clearly free, so why not both?

    Edit: Just realised you said 512Mb RAM. Win7 may well run, but it wouldnt be a good fit. Either fit more memory, or Linux all the way.
    Great, thank you for the advice!

  14. #13
    A shadowy flight. MSIC's Avatar
    Join Date
    Oct 2005
    Location
    London/Herts
    Posts
    3,413
    Thanks
    394
    Thanked
    229 times in 168 posts
    • MSIC's system
      • Motherboard:
      • ASRock H170M-ITX
      • CPU:
      • Core i5 6500
      • Memory:
      • 2 x 4GB Corsair Veng DDR4 2666
      • Storage:
      • 240GB SSD (boot) +1TB Samsung F3
      • Graphics card(s):
      • ASUS GeForce 750Ti
      • PSU:
      • Silverstone 450W ST455F
      • Case:
      • Silverstone SG06-450
      • Operating System:
      • Win10
      • Monitor(s):
      • Dell S2309W
      • Internet:
      • PlusNet FiberTTC

    Re: Ubuntu Patching - Help please!

    Just for info, on my Acer Aspire One with the usual Atom 1.6 (so overall a weaker system than a Centrino 1.1 Ghz setup) I upgraded my standard 512MB with an extra 1 Gig, thinking that it would be useful.
    Under Ubuntu NBR (firstly 9.04, then 9.10, and now 10.04) the 'System Monitor' application shows me that I can have firefox open with a few tabs, banshee running in the background playing tunes, skype running in the background, and it never goes above about 300 MB used.
    All in all, the extra 1 Gig was a complete waste really (although i havent removed it, it makes me feel better that its there! LOL).
    I'm commenting on an internet forum. Your facts hold no sway over me.
    - Another poster, from another forum.

    System as shown, plus: Microsoft Wireless mobile 4000 mouse and Logitech Illuminated keyboard.
    Sennheiser RS160 wireless headphones. Creative Gigaworks T40 SII. My wife.
    My Hexus Trust

  15. #14
    Senior Member
    Join Date
    Nov 2006
    Location
    London
    Posts
    433
    Thanks
    17
    Thanked
    0 times in 0 posts
    • timtim86's system
      • Motherboard:
      • Shuttle
      • CPU:
      • Athlon X2 5000+
      • Memory:
      • 6GB OCZ Gold 6400
      • Storage:
      • 2 x 250GB Seagates, 1 x 750GB Samsung
      • Graphics card(s):
      • 8800GS 384MB
      • PSU:
      • Shuttle 400W
      • Case:
      • Shuttle SN27P2
      • Operating System:
      • Windows 7 Pro
      • Monitor(s):
      • Dell 2007WFP

    Re: Ubuntu Patching - Help please!

    Quote Originally Posted by MSIC View Post
    Just for info, on my Acer Aspire One with the usual Atom 1.6 (so overall a weaker system than a Centrino 1.1 Ghz setup) I upgraded my standard 512MB with an extra 1 Gig, thinking that it would be useful.
    Under Ubuntu NBR (firstly 9.04, then 9.10, and now 10.04) the 'System Monitor' application shows me that I can have firefox open with a few tabs, banshee running in the background playing tunes, skype running in the background, and it never goes above about 300 MB used.
    All in all, the extra 1 Gig was a complete waste really (although i havent removed it, it makes me feel better that its there! LOL).
    Really appreciate that input, thank you. I was wondering whether to put another 512mb in there, seems to be relatively expensive though. You also answered another question I was thinking about - how this would compare to a cheap-ish netbook. Basically I have a 10.4" Vaio - so it's very small - but it also has the benefit of a DVD-RW drive. Pleased that it would stand up well to a new netbook!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Ubuntu Install - For a newb on XP
    By sleepyhead in forum Software
    Replies: 21
    Last Post: 14-08-2009, 04:16 PM
  2. My review: Acer Aspire One & Ubuntu Netbook Remix
    By MSIC in forum PC Hardware and Components
    Replies: 13
    Last Post: 07-06-2009, 09:23 PM
  3. Ubuntu
    By just_laze in forum Software
    Replies: 22
    Last Post: 07-04-2008, 09:14 AM
  4. Ubuntu - utter junk? (A rant)
    By stroberaver in forum Software
    Replies: 18
    Last Post: 26-02-2008, 02:14 PM
  5. Speedtouch 330 and Virgin.net under Ubuntu
    By PeteSmith in forum Networking and Broadband
    Replies: 14
    Last Post: 13-08-2007, 10:11 AM

Posting Permissions

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