Jump to content

DOlson

Members
  • Posts

    1215
  • Joined

  • Last visited

Posts posted by DOlson

  1. script I use:

     

    #!/bin/bash
    clear
    echo -----------=[Current System Stats ]=---------
    echo
    echo ____________________ System _____________________
    cat /etc/debian_version
    cat /etc/redhat-release
    cat /proc/version
    echo Uptime: `uptime`
    echo ____________________ Kernel _____________________
    echo Operating System: `uname -o`
    echo Kernel Version: `uname -sr`
    #echo Arch type: `uname -pi`
    echo _____________________ CPU _______________________
    cat /proc/cpuinfo | grep "model name"
    cat /proc/cpuinfo| grep "cpu MHz"
    cat /proc/cpuinfo | grep "bogomips"
    cat /proc/cpuinfo | grep "cache size"
    echo _____________________ RAM _______________________
    free -m
    cat /proc/meminfo | grep "MemTotal"
    cat /proc/meminfo | grep "MemFree"
    cat /proc/meminfo | grep "SwapTotal"
    cat /proc/meminfo | grep "SwapFree"
    
    echo _________________ Hard Disks ____________________
    df -h -l
    echo _________________   Devices  ____________________
    lspci -v |grep -i audio
    lspci -v |grep -i nvidia
    lspci -v |grep -i ethernet
    exit 0

     

    Do you know that you don't need to pipe catted output into grep?

     

    grep "model name" /proc/cpuinfo
    grep "cpu MHz" /proc/cpuinfo
    grep "bogomips" /proc/cpuinfo
    grep "cache size" /proc/cpuinfo

     

    and

     

    grep "MemTotal" /proc/meminfo
    grep "MemFree" /proc/meminfo
    grep "SwapTotal" /proc/meminfo
    grep "SwapFree" /proc/meminfo

     

    Both work. :)

  2. I'm not sure it could be related to the driver, since the same game works just fine in WineX. Yes, I still call it WineX. SoulSe, I'm not that familiar with the game, but does it use Direct3D or OpenGL in Windows/WineX? Also, could you test them both out with the sound disabled? It could be the something relating to sound support built into the Linux client.

  3. Hello,

     

    I need to get a wireless router and a PCMCIA card for my Debian laptop, as well as a wireless adaptor for my Xbox.

     

    What hardware do you recommend that isn't too expensive and will suffice for these needs? I don't run Windows at all, so it has to be fully Linux-compatible.

     

    Don't worry so much about the Xbox if you've never networked an Xbox before.

     

    I'm on a tight budget, and I'm in Canada, so if you know a good online store, let me know!

     

    Thanks in advance.

     

    Moved from Hardware by Darkelve

  4. If you're into compiling kernels, I recommend you grab the nitro patchset from http://www.sepi.be/nitro.php and patch a kernel with them.

     

    Seriously, I had doubts that this could help much, but I can now actually play the Doom 3 demo and I'm told that UT2004 plays smoothly as well. And I don't have very advanced hardware, and Doom 3 was very very choppy before I patched with this.

     

    You do need to know what you're doing as far as kernels go, but it's really quite worth it.

     

    This was a patch that came out of the Gentoo community I believe, but I'm running it on Debian just fine (only one small issue with XMMS sometimes skipping, but I'm just using RhythmBox until I resolve it).

  5. I hope they contribute it back to upstream... Anything to make Gnome better is welcome, and if they have to fork it (that GoneMe thing perhaps) then I may have to reevaluate...

     

    Anyhow, yeah, just make a .hidden file on your desktop, then put in it all the names of the icons you wanna hide. That should do it.

  6. Depends on who you're playing with.

     

    It works better playing across town than across the globe.

     

    The site has a list of supported games and mentions if they support the headset, and also how the traffic usage is, as it does vary between games.

  7. That device could be your TV card, since you have nothing else, I'm sure ti is. You could post the output of your lsmod and dmesg to us, and we could help more with it.

     

    I hate it when distros decide to put things in places where I don't want them. It's not handy, and it's not clever. Especially when the icon name is frickin' long like that.

     

    Did you try using a .hidden file to try hiding it? I don't know if it works if you're using the standard ~/Desktop as your desktop folder, but I am using ~ as my desktop, and I can edit my ~/.hidden file to remove things like public_html, tmp, and such. Works great.

     

    I have no clue if it would work on those dynamic icons forced on you by Mandrake.

×
×
  • Create New...