Slashdot Mirror


User: imagi

imagi's activity in the archive.

Stories
0
Comments
15
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 15

  1. Rethink the problem and use bluetooth. on GSM and Asterisk Integration? · · Score: 1

    If it is just being able to make outgoing calls with your cellphone, then why not make them using the bluetooth audio channel that your phone probably supports. Have a look at the software on: http://crazygreek.co.uk/chan_bluetooth
    This allows you to pair your cellphone with your asterisk phone and make outgoing calls via bluetooth.

  2. PAM and LDAP. on Enterprise-Level Authentication for Linux? · · Score: 2, Informative

    I wrote a document on authenticating enterprise systems agains LDAP. May be of some use to you: http://imaginator.com/~simon/ldap/ It's actually pretty easy!

  3. Some Software on SonicBlue Rio Digital Audio Receiver · · Score: 0, Redundant

    The reciever requires that you have a windows computer running to push files to it via http. There are 2 projects I could find that allow you to stream to the Dell Reciver from your linux server: http://sourceforge.net/projects/das/ and http://www.mock.com/receiver/

  4. Re:Neato on Review of the Audiotron Stereo MP3 Component · · Score: 1

    I you may want to look at this as a way to access your big wad of MP3's It's an HTML interface that selects songs and allows you to stream them to yourself.

    http://www.turnstyle.com/andromeda/

  5. Re:prompt on What Does Your Command Prompt Look Like? · · Score: 1

    Zsh Rules: PROMPT="%{$COLOR3%}[%{$COLOR1%}%n%{$COLOR3%}@%{$CO LOR1%}%m%{$COLOR3%}[%{$COLOR1%}tty%l%{$COLOR3%}]%{ $COLOR1%}%~%{$COLOR3%}]%{$COLOR1%}%(#.#.$)%{$COLOR 4%}

  6. Chaneges color when uid=0? on What Does Your Command Prompt Look Like? · · Score: 1

    Does anyone have a method to maybe change the color of the prompt or background when you su to root. This would be very useful.

  7. Re:Hard Disk Drives are noisy on Building Quieter Computers · · Score: 1
    Disks are noisy especially the 7200 RPM drives. I run windows and Linux on my desktop. I became so fedup with the noise that I now netboot linux off my server next door. I still have to keep the 7200rpm disk in my desktop for when I boot into windows. Under linux I netboot (via a PXE capable eepro100), and then run the command:

    scsi-spin --down /dev/sg0

    for silence.

    I still have fan noise but the high pitch whine is gone.

  8. Here's a solution on Distributed Video Systems Under Linux? · · Score: 1

    I remember reading that Alan Cox had done something similar and asked him about it:

    "Right now Im using netcat, mp1e to encode off a bttv card and mpegtv to play it (the free player wont handle the non .VOB format yet)"

    I haven't tried this yet but would be interested in anyone's feedback.

  9. Opensource Tivo on Linux Box As Digital VCR · · Score: 2

    Looks like these guys have come up with a redimentary opensource tivo: http://www.stanford.edu/~jjd1/opendvr/. Looks like a fun and very promising school project! Aparently they could not solve the realtime encoding problem. S

  10. Re:This "feet from the office" thing seems hokey. on DSL Woes · · Score: 1

    So what do you think a T1 runs off? It's 26 gauge twisted pair too.

  11. hdparm - more details.. on Western Digital Pulling Out Of SCSI HD Business · · Score: 4

    Here's a tip sent around our company concering tweaking IDE perf. Thanks to Andrew Tridgell for the info.

    This tip is useful for just about any Linux box, and is probably the
    simplest way to significantly speed up your IDE based Linux box
    without changing the hardware.

    If you are impatient then just add the following near the top of your
    /etc/rc.d/rc.sysinit (or equivalent startup script):

    /sbin/hdparm -u 1 -d 1 /dev/hda
    /sbin/hdparm -u 1 -d 1 /dev/hdc

    (and so on for any IDE devices in your system)

    Now for a more complete explanation.

    By default Linux uses extremely conservative settings for IDE. In
    particular the default settings do two things that make IDE perform
    really badly:

    1) DMA is not used. That means all data coming to/from the hard disk
    or cdrom is processed a byte at a time by the CPU. That is not very
    efficient. With a fast processor that isn't doing anything else at
    the time this can appear fast in simple minded benchmarks but it is
    a big drain on CPU resources when you are actively using the
    machine.

    2) hardware interrupts are masked during IDE transfers. That means
    that while a lump of data is being transferred to/from a IDE device
    no other interrupts are processed. This includes interrupts from
    other IDE devices, from network devices, from serial ports and from
    mice. Your whole machine is effectively clagged up doing nothing
    but waiting for a horrendously slow device to say "I'm done". Not
    good.

    If you want to see just how slow this is on your system then do the
    following:

    1) put a CDROM in the drive.

    2) run the following commands:

    hdparm -d 0 -u 0 /dev/hda
    hdparm -d 0 -u 0 /dev/hdc
    cat /dev/hdc > /dev/null &
    hdparm -t /dev/hda
    hdparm -d 1 -u 1 /dev/hda
    hdparm -d 1 -u 1 /dev/hdc
    hdparm -t /dev/hda

    that shows you the hard disk speed while accessing the CDROM with the
    default settings and with the improved settings. On my system the hard
    disk speed goes from 3.8 MB/sec to 12.9 MB/sec. I've seen much bigger
    changes on some other systems.

    Even more importantly than the speedups is the fact that you will stop
    dropping your PPP connection while doing cdrom transfers, and you will
    be able to use your system while burning a cdrom without creating a
    coaster.

    You may wonder why the default settings are so poor. The reason is
    that there is some rare hardware out there that corrupts data during
    IDE transfers when you either use DMA or receive an interrupt during a
    transfer. If that happens then the kernel should detect the failure
    (in nearly every case) and fall back to the default
    settings. Unfortunately after the auto-fallback you are still left
    with corrupt data in your cache. Luckily systems that don't handle DMA
    and unmasked interrupts are really quite rare these days so it is a
    pretty safe bet to turn the options I suggested above, especially if
    your system isn't from the stone age.

    For more info and piles of options for fine tuning your IDE system try
    "man hdparm".

  12. Benchmarks: Servlets vs mod_perl on Mod Perl or Servlets? · · Score: 2
    We are in the same position here - we are a traditional mod_perl house, however a new project has us deplying Java servlets interfacing with GSP (Gnu Server pages - a kinda embeddable in html java) all running on mod_jserv.

    Have a peek at http://www.chamas.com/hello_world.html. This is a comprehensive benchmarking site for all types of backkends for webservers and includes mod_perl and jserv/servlets.

    According to the site your servlets will be running about 10 times slower than perl.

  13. Kinesys Kbds on JWZ on Dealing with Wrist Pain · · Score: 1

    Have a look at these - I'm using one and they really help out. Much better than the M$ ones.

  14. Not that cool. on Bay Area Bandwidth Coop Formed · · Score: 2

    I had a look at this - still runs to around 400/month with pacbell costs.

    I've been looking at www.sflan.com. It's a shared 10Mb/s radio network in SF. And best of all Free!

  15. Interception capabilities on Congress concerned about Echelon · · Score: 2

    If anyone is interested I have a copy of Duncan Camphbells report to the European Parliament on my site. See http://www.imag inator.com/simon/documentation/report/ic2kreport.h tm Some very interesting reading... s