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.

    New to Linux and using an old Dell 700m

    Discussion in 'Linux Compatibility and Software' started by madflava54, Aug 14, 2009.

  1. madflava54

    madflava54 Notebook Consultant

    Reputations:
    0
    Messages:
    166
    Likes Received:
    0
    Trophy Points:
    30
    Hi, I was wondering if anyone uses a Dell 700m. I downloaded Ubuntu 9.04 and it works really well except some flash or java sites. I usually just see a big Play button when I go to these websites. Anyways, some graphic things do seem sluggish and I was wondering if there is a driver that I am missing or might work better than the ones that came preloaded. Can anyone else me out? I think it's an Intel Extreme Graphics GM855 chipset.

    Also, is there something like disk defragger or CCleaner like in Windows? What can I do to maintain my computer? Thanks!
     
  2. The Fire Snake

    The Fire Snake Notebook Virtuoso

    Reputations:
    426
    Messages:
    2,889
    Likes Received:
    0
    Trophy Points:
    55
    Do you have flash installed? Check by opening up the Synaptic package manager and searching for flash-nonfree. There should be a green mark after it that means its installed. Also did you install the add on flashblock by any chance?
     
  3. madflava54

    madflava54 Notebook Consultant

    Reputations:
    0
    Messages:
    166
    Likes Received:
    0
    Trophy Points:
    30
    It was not installed for some reason. It is installed now and flashblock was not installed. Hulu does not work still.
     
  4. madflava54

    madflava54 Notebook Consultant

    Reputations:
    0
    Messages:
    166
    Likes Received:
    0
    Trophy Points:
    30
  5. archer7

    archer7 Notebook Evangelist

    Reputations:
    289
    Messages:
    647
    Likes Received:
    0
    Trophy Points:
    30
    Linux does not have a breakable registry like Windows does, and the ext4 filesystem has built-in functions to prevent fragmentation.
     
  6. joeelmex

    joeelmex Notebook Evangelist

    Reputations:
    229
    Messages:
    518
    Likes Received:
    1
    Trophy Points:
    31
    Hulu and HD you tube wont work unless you start using flash 10. Google the version of ubuntu you using with flash 10 and youll find many guides to solve that issue.
     
  7. The Fire Snake

    The Fire Snake Notebook Virtuoso

    Reputations:
    426
    Messages:
    2,889
    Likes Received:
    0
    Trophy Points:
    55
    This is true of ext3 also correct? I thought that all journalizing file systems were safe from the fragmentation effect. And since ext3 is a journalizing file system...
     
  8. Th3_uN1Qu3

    Th3_uN1Qu3 Notebook Deity

    Reputations:
    214
    Messages:
    1,192
    Likes Received:
    0
    Trophy Points:
    55
    NTFS is a journaling file system too and it still fragments, as a matter of fact sometimes the journal file gets out of control and occupies half the drive. But indeed, it is less prone to fragmentation than FAT or FAT32. Same for ext3/ext4. All file systems will fragment given enough time. It's a matter of whether the fragments do or do not affect performance. If a large video file breaks into say, 5 fragments, it won't matter, if 100 small files required to load the OS fragment, then it does.

    Now, if you all upgrade to SSDs you'll have better things to care about and fragmentation will be a non-issue due to the almost instant access times. Me, i stick to my mechanical drives, thank you.
     
  9. comrade_commissar7

    comrade_commissar7 Notebook Evangelist

    Reputations:
    87
    Messages:
    461
    Likes Received:
    0
    Trophy Points:
    30
    Just type this in a terminal to get flash:
    Code:

    sudo apt-get install flashplugin-nonfree

    java plugin:
    Code:

    sudo apt-get install sun-java6-fonts sun-java6-jre sun-java6-plugin
     
  10. v1k1ng1001

    v1k1ng1001 Notebook Deity

    Reputations:
    239
    Messages:
    738
    Likes Received:
    0
    Trophy Points:
    30
    The intel driver that works in jaunty is a bit of a work-in-progress. Once you've got the flash plugins installed, try reverting to the older Ibex driver:

    https://wiki.ubuntu.com/ReinhardTartler/X/RevertingIntelDriverTo2.4

    ^^^This helped flash run a bit smoother on my netbook. Also, a better intel driver exists and it should be showing up in ubuntu soon.

    Another idea might be to run crunchbang linux (lighter ubuntu derivative with openbox) rather than full ubuntu. You won't get the cool compiz effects but it will free up your ram to work with flash video.
     
  11. comrade_commissar7

    comrade_commissar7 Notebook Evangelist

    Reputations:
    87
    Messages:
    461
    Likes Received:
    0
    Trophy Points:
    30
    Did you try the commands I posted?