Slashdot Mirror


USB-Based NIC Torrents While Your PC Sleeps

jangel sends us to WindowsForDevices.com for news on a prototype device created by researchers from Microsoft and UC San Diego. It's a USB-based NIC that includes its own ARM processor and flash storage, and can download files or torrent while a host PC is sleeping. As a result, its inventors say, the "Somniloquy" device slashes power usage by up to 50x. The device requires a few tweaks on the host OS side save state before sleeping. The prototype works with a Vista host but the hardware comprising the NIC is based on a Linux stack. Here is the research paper (PDF).

5 of 246 comments (clear)

  1. Re:Perfect for the computer lab by Aranykai · · Score: 4, Interesting

    This is why I bought an eee. Run quite awhile when the monitor is turned off :P

    With a 26GB cap on my down pipe a month, it really saves me that I can stash this thing at the library and pull all my low priority large files.

    --
    If sharing a song makes you a pirate, what do I have to share to be a ninja?
  2. Re:Perfect for the computer lab by igny · · Score: 5, Interesting

    You better use the competitor of your favorite coffee shop.

    --
    In theory there is no difference between theory and practice. In practice there is. - Yogi Berra
  3. Torrents should be the router's job by Dr.+Spork · · Score: 4, Interesting

    This is dumb. I mean, every house already has a running device with an ARM processor: their router! It would be so much more logical if torrents ran on the router than on a PC. For one thing, the router could throttle back the torrent if computers on the network were asking for data, and it could upload full bore when everyone is asleep.

    Before you post links to routers with a USB port and a shoddy torrent client: I know about these, and it's a step in the right direction, but the interface needs to be much better. I should click on a torrent file on my bedroom computer and have that torrent be loaded into my router.

    I like the idea that this thing accepts SD flash cards. Pretty soon, 8GB will be trivially cheap, and that could serve as cache. Periodically, as the cache fills up, the router could wake up a computer, transfer finished files to it and put it back to sleep. This wouldn't be hard - any proper geek could write a script to do this.

    1. Re:Torrents should be the router's job by SpazmodeusG · · Score: 4, Interesting

      Well if the router is always on anyway why have the services only switch to the router when the computer goes to sleep? Why not have the services permanantly running on the router?
      A lot of people run rtorrent on their WL-500g's and use an rtorrent front end on the PC. It works perfectly well. rTorrent continuosly downloads on the router and the front end transparantly displays information as if it was downloading locally. No moving of the service to have it running on the PC or embedded device is required.

      Really this board in the article has no advantages over a bittorrent capable router that i can see. It only allows 1 computer to make use of the services on the embedded device, so you'd need 1 for each computer. It takes up 2 USB ports when really it already has connectivity to the computer via the LAN anyway so why the need for USB at all? It still requires the modem/router to be on to work, so it uses more power than just a bittorrent router. It doesn't work when the computer is in hibernate or off completely, only when in S3 or above. It doesn't have any other storage options but the SD-Card...
      I could go on but you get the idea.

  4. Re:Wow. by Hal_Porter · · Score: 5, Interesting

    PeerGuardian is a trap. Consider.

    Loads of people are torrenting at any one time. Probably the vast majority of them will torrent a few files and then stop. A small minority will torrent 24/7 maxing out their pipes.

    Now if you want to shut down filesharing it is this small minority that you want to target, firstly because they are a legally inviting target - it's hard for them to claim they are innocent if you can show they were maxing out their DSL connection 24/7. Also from a PR point of view it's better to sue the hard core pirates than the casual ones - you avoid headlines about grandmothers being sued for thousands of dollars because their grandkids downloaded a couple of songs. Last but not least they are the ones seeding most of the files because the casual torrenters download what they want and then shutdown the application.

    Normally of course there's no good way looking at one torrent to work out which torrenters are the hard core minority and which are casual torrenters.

    Enter PeerGuardian.

    The hard core torrenters will download and install it and the casual ones won't bother. Now you have an easy way to distinguish the two. Try to connect from a few IP addresses on the blocklist, and try to connect from a few that aren't. The last point is important - anti piracy organisations have lots of employees and could easily ask those employees to run some sort of tool from their home DSL connection, or they could buy a few DSL modems and stick them in the basement, or use a VPN to a pool of residential IP connections. I.e. it's quite easy for them to get hold of IP addresses which are not in their organisational IP block. So long as they don't attack torrents from those IP addresses there is no reason for those addresses to be blacklisted.

    So PeerGuardian provides no protection for downloaders and it provides very useful information to anti piracy organisations.

    If you don't want to get sued, don't seed and don't install things like PeerGuardian.

    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;