Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

nslu2-general

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 6046
  • Category: Hardware
  • Founded: Aug 18, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 5259 - 5288 of 8988   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#5259 From: "bullfrog528" <yahoo@...>
Date: Tue Oct 10, 2006 12:28 pm
Subject: Re: Cron appends junk to my wget downloads!
bullfrog528
Send Email Send Email
 
Hi

I noticed this recently too on one of my downloads, however  i
normally used files that have been tar'ed. The tar xvf  must ignore
the junk at the end, however when I downloaded a file directly it to
had some junk on the end.

There appear to be several versions of wget it's part of busybox
which is installed as part of unslung but also can be installed
seperately i believe which installs in /opt/bin if i remember
correctly. I didn't look into it any further but it's possible the
bug only relates to one of these wget versions. Might be worth trying
the other one.

If I discover anything else I'll let you know.

regards

Bullfrog


--- In nslu2-general@yahoogroups.com, Airw0lf <aerwulfe@...> wrote:
>
> Hi all,
>
> Thanks to everyone's help here, I was able to get cron to run a
script that
> calls wget. However, I have another weird problem! I am using
Unslung v6.8.
>
> Here is my /etc/crontab line:
>
> 0 2 * * * root /root/wget_script &>/dev/null
>
> My wget_script is as follows:
>
> cd /public
> /opt/bin/wget -c -i /public/download.txt
>
> download.txt merely contains a list of URLs for wget to download.
>
> Now when I check the files downloaded by crontab, I always find
junk
> appended to the ends of the files! Here is an example of the bytes
appended
> to the end of one file:
>
> 31 30 30 25 20 20 20 37 36 2E 30 32 20 4B 42 2F 73 0A 0A
>
> Using a hex editor, I can identify this as "100%   76.02 KB/s..".
So it
> seems that output from the shell is being put inside my downloads!
>
> If I just execute "./wget_script" I get no problems. If I download
the SAME
> file using the cron job, my file is hopelessly corrupted.
>
> Can anyone explain why this is happening?
>

#5260 From: Thaths <thaths@...>
Date: Tue Oct 10, 2006 1:29 pm
Subject: Re: Cron appends junk to my wget downloads!
thaths
Send Email Send Email
 
On 10/10/06, Airw0lf <aerwulfe@...> wrote:
> My wget_script is as follows:
>
> cd /public
> /opt/bin/wget -c -i /public/download.txt
>
> download.txt merely contains a list of URLs for wget to download.
>
> Now when I check the files downloaded by crontab, I always find junk
> appended to the ends of the files! Here is an example of the bytes appended
> to the end of one file:
>
> 31 30 30 25 20 20 20 37 36 2E 30 32 20 4B 42 2F 73 0A 0A
>
> Using a hex editor, I can identify this as "100%   76.02 KB/s..". So it
> seems that output from the shell is being put inside my downloads!

Maybe redirecting the stdout of the cron script might help:

cd /public
/opt/bin/wget -c -i /public/downliad.txt > /dev/null 2>&1

Thaths
--
Homer: He has all the money in the world, but there's one thing he can't buy.
Marge: What's that?
Homer: (pause) A dinosaur.
                             -- Homer J. Simpson
Sudhakar Chandra                                    Slacker Without Borders

#5261 From: Airw0lf <aerwulfe@...>
Date: Wed Oct 11, 2006 6:06 am
Subject: Re: Cron appends junk to my wget downloads!
airwolf2k5
Send Email Send Email
 
Thaths <thaths@...> wrote in
news:1bc234630610100629p347df0by4891a99eefe19801@...:

> On 10/10/06, Airw0lf
> <aerwulfe@...> wrote:
>> My wget_script is as follows:
>>
>> cd /public
>> /opt/bin/wget -c -i /public/download.txt
>>
>> download.txt merely contains a list of URLs for wget to download.
>>
>> Now when I check the files downloaded by crontab, I always find junk
>> appended to the ends of the files! Here is an example of the bytes
>> appended to the end of one file:
>>
>> 31 30 30 25 20 20 20 37 36 2E 30 32 20 4B 42 2F 73 0A 0A
>>
>> Using a hex editor, I can identify this as "100%   76.02 KB/s..". So
>> it seems that output from the shell is being put inside my downloads!
>
> Maybe redirecting the stdout of the cron script might help:
>
> cd /public
> /opt/bin/wget -c -i /public/downliad.txt > /dev/null 2>&1
>
> Thaths

Thanks for that idea. I will look into it when I feel like learning some
more.

But for now I think I can manage by calling wget -q. This stops wget from
writing to stdout.

#5262 From: Airw0lf <aerwulfe@...>
Date: Wed Oct 11, 2006 6:05 am
Subject: Re: Cron appends junk to my wget downloads!
airwolf2k5
Send Email Send Email
 
I'm not sure if it's a wget+cron issue, or just a cron issue. I don't see
the problem for just calling wget.

The version I'm using is a separate install (from ipkg install wget) in
/opt/bin. I call /opt/bin/wget explicitly because I want to use this
"full-featured" wget version.

I managed to eliminate the problem by passing -q to wget. This stops all
console output. However, I don't think it should be necessary to do
this...

"bullfrog528" <yahoo@...> wrote in
news:egg3l8+10gjg@eGroups.com:

> Hi
>
> I noticed this recently too on one of my downloads, however  i
> normally used files that have been tar'ed. The tar xvf  must ignore
> the junk at the end, however when I downloaded a file directly it to
> had some junk on the end.
>
> There appear to be several versions of wget it's part of busybox
> which is installed as part of unslung but also can be installed
> seperately i believe which installs in /opt/bin if i remember
> correctly. I didn't look into it any further but it's possible the
> bug only relates to one of these wget versions. Might be worth trying
> the other one.
>
> If I discover anything else I'll let you know.
>
> regards
>
> Bullfrog
>
>
> --- In nslu2-general@yahoogroups.com, Airw0lf
> <aerwulfe@...> wrote:
>>
>> Hi all,
>>
>> Thanks to everyone's help here, I was able to get cron to run a
> script that
>> calls wget. However, I have another weird problem! I am using
> Unslung v6.8.
>>
>> Here is my /etc/crontab line:
>>
>> 0 2 * * * root /root/wget_script &>/dev/null
>>
>> My wget_script is as follows:
>>
>> cd /public
>> /opt/bin/wget -c -i /public/download.txt
>>
>> download.txt merely contains a list of URLs for wget to download.
>>
>> Now when I check the files downloaded by crontab, I always find
> junk
>> appended to the ends of the files! Here is an example of the bytes
> appended
>> to the end of one file:
>>
>> 31 30 30 25 20 20 20 37 36 2E 30 32 20 4B 42 2F 73 0A 0A
>>
>> Using a hex editor, I can identify this as "100%   76.02 KB/s..".
> So it
>> seems that output from the shell is being put inside my downloads!
>>
>> If I just execute "./wget_script" I get no problems. If I download
> the SAME
>> file using the cron job, my file is hopelessly corrupted.
>>
>> Can anyone explain why this is happening?
>>
>
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>     ne.org
>
>
>
>
>
>

#5263 From: MATTNOZ <matt@...>
Date: Wed Oct 11, 2006 8:20 am
Subject: Home website problems with nslu2, wrt54g and NTL
matt.julia
Send Email Send Email
 
I heard about the NSLU2 and wanted to setup a home web server. My broadband
connection is with NTL and limited to 50meg of web space, that is full!

So I bought a slug and followed the guide:
http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite

I am also using a WRT54G router, which will automatically update the
dyndns.org account settings. I have also set it to port-forward to my slug,
disabled the firewall and turned off all block WAN requests tick boxes.
(Filter Multicast etc…)

OK everything works fine within my LAN. If I type
“http://mywebsite.dyndns.com” into IE or Firefox I see my shiny new website.
However from the WAN side it doesn’t work.

However I can ping “mywebsite.dyndns.com” from the WAN side!! (and the slug
flashes)

Could it be a problem with my router or is it an NTL thing??

Any help would be appreciated
Matt (NSLU2 newbie)

--
View this message in context:
http://www.nabble.com/Home-website-problems-with-nslu2%2C-wrt54g-and-NTL-tf24218\
91.html#a6752284
Sent from the Nslu2 - General mailing list archive at Nabble.com.

#5264 From: Peter Richard <pdfrichard@...>
Date: Wed Oct 11, 2006 1:44 pm
Subject: Re: Home website problems with nslu2, wrt54g and NTL
nakedneko
Send Email Send Email
 
Its probably your router settings. You either need to open port 80 to
the NSLU2 internal LAN IP or put the NSLU2 into the router's DMZ (the
latter is better, if one than one service is provided by the slug).

On Oct 11, 2006, at 4:20 AM, MATTNOZ wrote:

>
> I heard about the NSLU2 and wanted to setup a home web server. My
> broadband
> connection is with NTL and limited to 50meg of web space, that is
> full!
>
> So I bought a slug and followed the guide:
> http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite
>
> I am also using a WRT54G router, which will automatically update the
> dyndns.org account settings. I have also set it to port-forward to
> my slug,
> disabled the firewall and turned off all block WAN requests tick
> boxes.
> (Filter Multicast etc)
>
> OK everything works fine within my LAN. If I type
> http://mywebsite.dyndns.com into IE or Firefox I see my shiny new
> website.
> However from the WAN side it doesnt work.
>
> However I can ping mywebsite.dyndns.com from the WAN side!! (and
> the slug
> flashes)
>
> Could it be a problem with my router or is it an NTL thing??
>
> Any help would be appreciated
> Matt (NSLU2 newbie)
>
> --
> View this message in context: http://www.nabble.com/Home-website-
> problems-with-nslu2%2C-wrt54g-and-NTL-tf2421891.html#a6752284
> Sent from the Nslu2 - General mailing list archive at Nabble.com.
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>

#5265 From: Peter Richard <pdfrichard@...>
Date: Wed Oct 11, 2006 3:16 pm
Subject: Re: Home website problems with nslu2, wrt54g and NTL
nakedneko
Send Email Send Email
 
Oops, I didn't see you entire note as my mail reader shows the upper
half and I didn't scroll down (I'm half-asleep).

So I  checked the wiki pages you referred to, This appears to cover
two solutions to keeping your WAN ip updated. One involves your
external NTL isp and your personal webspace on their servers, the
other uses a dynamic name server service.

Its not clear which method you are using by the questions you are
asking. If you are using dyndns.com correctly, NTL has nothing to do
with it except as providing the "wire" to the internet. If you are
using the first method, then your personal webspace has a index page
redirecting traffic to your WAN ip, and dyndns.com has to pont to
NTL's WAN ip. In this case NTL would have some influence.

How are you pinging from the WAN side? Are you going to a friend's
computer or are you pinging from home? I f the former you are truly
pinging from WAN, but in the latter situation, you are pinging from
the LAN to LAN. This happens to me. If I try to look at my website,
the browers first goes out to fetch my WAN ip,  but this is only the
WAN ip of my DSL/cable modem. The modem sees this as an internal LAN
traffic referring to it, that is using its WAN ip and serves up its
login page, instead of passing the traffic to the internet. To get
around this, I have to setup my hosts file to go to the internal ip
of my webserver.

I suspect from what say that when you refer to WAN, you are
connecting to the WAN port of your Linksys router and not the WAN
port of your ADSL/cable modem. So you have to test this from the net.
There are several places on the net that you enter your URL, it
fetches the page and presents a snap shot of your webpage back to
you. This is truly a WAN side access.

On Oct 11, 2006, at 4:20 AM, MATTNOZ wrote:.

>
> I heard about the NSLU2 and wanted to setup a home web server. My
> broadband
> connection is with NTL and limited to 50meg of web space, that is
> full!
>
> So I bought a slug and followed the guide:
> http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite
>
> I am also using a WRT54G router, which will automatically update the
> dyndns.org account settings. I have also set it to port-forward to
> my slug,
> disabled the firewall and turned off all block WAN requests tick
> boxes.
> (Filter Multicast etc)
>
> OK everything works fine within my LAN. If I type
> http://mywebsite.dyndns.com into IE or Firefox I see my shiny new
> website.
> However from the WAN side it doesnt work.
>
> However I can ping mywebsite.dyndns.com from the WAN side!! (and
> the slug
> flashes)
>
> Could it be a problem with my router or is it an NTL thing??
>
> Any help would be appreciated
> Matt (NSLU2 newbie)
>
> --
> View this message in context: http://www.nabble.com/Home-website-
> problems-with-nslu2%2C-wrt54g-and-NTL-tf2421891.html#a6752284
> Sent from the Nslu2 - General mailing list archive at Nabble.com.
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>

#5266 From: "siegfried" <siegfried@...>
Date: Wed Oct 11, 2006 5:21 pm
Subject: RE: How to have multiple partitions using parted?
Sieg_Heintze
Send Email Send Email
 
sieg> How do I do create such a special partition using Linux?



Marceln> The most easy way.



Marceln> 1) Create the partitions with the slug

Marceln> 2) Make a backup of partition 1 and 2

Marceln> 3) Repartition the disk and restore the files on partition 1 and 2.



Ah hah! Very interesting!  Since I am new to linux, I'm not sure what

you mean by backup. Do you mean dd? If so, I need a lot of room on

another drive.



Are there any busybox commands to create new partitions or must I do

it with the web interface?



When I said "Linux" I meant to say Fedora or SuSE linux. Can I plug my

USB drive directly into my PC and create these partitions so they are

compatible with the NSLU2?



sieg> I don't need to create the NTFS boot partition with unslung. I can

sieg> created it by using Knoppix's dd command to copy directly from my

sieg> multi-partition boot disk to my backup disk. I believe unslung

sieg> recognizes the resulting NTFS partition.



Marceln> You can use dd to copy the disk to a file on ext2 as well!

Marceln> This really no reason to support ntfs.



What if I want to be able to boot Windows from the disk when it is

plugged directly into the PC. Don't I need NTFS then?



Are you suggesting I don't need NTFS because I can boot windows via a

network boot?



sieg> I assume my unslung NSLU2 would behave the same way as long as it

sieg> is not trying to boot from it.



Marceln> Unslung won't boot from that disk. It will always use the kernel

Marceln> on the flash. The init will use pivot_root to use the external

Marceln> disk as rootfilesystem.



sieg> How would I do that? Use ssh and issue a mount command? I don't know

sieg> the device designator, however. I tried to do a "fdisk -l" but busy

sieg> box did not have fdisk.



Marceln> mount -t <filesystem type> /dev/sd[a|b]4 /mnt



Ah hah! Thanks! What are the exact designators for <filesystem type>?

ext2fs? Can it do ext3?



....



Marceln> You can expect 3 mb/s filesystem io over the network.



Whoa, I'm not getting anything near that when I have two NSLU2s

connected to windows and I copy a linux distro iso file from one NSLU2

to another. Is something wrong with my configuration? I'm only getting

180kbyte/s.



Thanks much!

siegfried



[Non-text portions of this message have been removed]

#5267 From: "James Lavery" <jlavery@...>
Date: Thu Oct 12, 2006 7:37 am
Subject: Getting spamd (Spamassassin) to run?
james_g_lavery
Send Email Send Email
 
Hi all,
I'm using Unslung 6.8.

I've been following the 'how to' on setting up an email server
(SetUpAnEmailServer2), and am nearly there.

Mark mentions that the spamd daemon should be running, which can be
done by running:

/opt/etc/init.d/S62spamd

However, this file hasn't been created on my Slug.  I've installed
Spamassassin via ipkg - is there something else I need to do to get
the startup script in init.d to be installed?

Alternatively, has someone got a copy of what needs to go into the
startup script, and I'll add it by hand.

Thanks,

James

#5268 From: John Carbee <johncarbee@...>
Date: Thu Oct 12, 2006 3:16 pm
Subject: Re: Home website problems with nslu2, wrt54g and NTL
johncarbee
Send Email Send Email
 
I had similiar problems with the wrt54g. It turned out
to be the parental control service that I have with Linksys.

#5269 From: "xtofparis13" <xtofparis13@...>
Date: Thu Oct 12, 2006 7:31 pm
Subject: attempt to access beyond end of device
xtofparis13
Send Email Send Email
 
Hi there,

I have plenty of message log like this :
<46>Oct 12 20:59:09 klogd: attempt to access beyond end of device
<46>Oct 12 20:59:09 klogd: 08:02: rw=1, want=0, limit=127968

The device/partition seems to be the swap partition on my 1 GB USB
stick on disk 2 where I unslung with version V2.3R63-uNSLUng-6.8-beta.

I can't find accurate feedback from my friend google with this
"want=0" which looks unusual with this error.

My device install looks pretty standard :
-bash-3.1# fdisk -l /dev/sda
Disk /dev/sda: 32 heads, 62 sectors, 1024 cylinders
Units = cylinders of 1984 * 512 bytes
    Device Boot    Start       End    Blocks   Id  System
/dev/sda1             1       766    759841   83  Linux
/dev/sda2           767       895    127968   83  Linux
/dev/sda3           896      1024    127968   82  Linux swap
-bash-3.1# mount
/dev/sda1 on /initrd type jffs2 (rw)
/dev/sda1 on / type ext3 (rw)
/proc on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
/dev/sda1 on /share/flash/data type ext3 (rw)
/dev/sda2 on /share/flash/conf type ext3 (rw,sync)

Any clue ? idea ? help ?
Thanks in advance

unslungly yours

Christophe

#5270 From: MATTNOZ <matt@...>
Date: Thu Oct 12, 2006 8:26 am
Subject: Re: Home website problems with nslu2, wrt54g and NTL
matt.julia
Send Email Send Email
 
Sorry for the confusion. The method I want to use as you say is just to use
my broadband connection as a pipe to my slug.

Luckily my router (wrt54g) has options to update dynamic DNS service’s. From
a drop down list I can select dynDNS then put in the account username and
password the router then automatically updates dynDNS whenever my randomly
issued IP changes. This seems to be working correctly and if I ping
“mywebsite.dyndns.com” it returns the correct IP address.

The other side is the NSLU2, which again seems to be working correctly. I
did change the config file so my website is now using port 80 (put the admin
on 8080) now when I browse to the slug I see my website without having to
reference the port number. (ie using 192.168.123.3 rather than
192.168.123.3:81)

So finally all I should have to do is link the two together:
I have port forwarded 80 to 192.168.123.3
Disabled the firewall and turned off all block WAN requests tick boxes.
Also I have now enabled DMZ to port 192.168.123.3

Once this has been setup I can browse to “mywebsite.dyndns.com” and I see my
website. However this is from the LAN side on my desktop 192.168.123.10

I then got a friend to browse to the same address but it just says, “The
connection has timed out”. However if he pings the address it replies and
when he does I see the slug com LED flash at my end too. (Just tried it at
work too. same problem!!)

It’s so close I can taste it!!




peter richard wrote:
>
> Oops, I didn't see you entire note as my mail reader shows the upper
> half and I didn't scroll down (I'm half-asleep).
>
> So I  checked the wiki pages you referred to, This appears to cover
> two solutions to keeping your WAN ip updated. One involves your
> external NTL isp and your personal webspace on their servers, the
> other uses a dynamic name server service.
>
> Its not clear which method you are using by the questions you are
> asking. If you are using dyndns.com correctly, NTL has nothing to do
> with it except as providing the "wire" to the internet. If you are
> using the first method, then your personal webspace has a index page
> redirecting traffic to your WAN ip, and dyndns.com has to pont to
> NTL's WAN ip. In this case NTL would have some influence.
>
> How are you pinging from the WAN side? Are you going to a friend's
> computer or are you pinging from home? I f the former you are truly
> pinging from WAN, but in the latter situation, you are pinging from
> the LAN to LAN. This happens to me. If I try to look at my website,
> the browers first goes out to fetch my WAN ip,  but this is only the
> WAN ip of my DSL/cable modem. The modem sees this as an internal LAN
> traffic referring to it, that is using its WAN ip and serves up its
> login page, instead of passing the traffic to the internet. To get
> around this, I have to setup my hosts file to go to the internal ip
> of my webserver.
>
> I suspect from what say that when you refer to WAN, you are
> connecting to the WAN port of your Linksys router and not the WAN
> port of your ADSL/cable modem. So you have to test this from the net.
> There are several places on the net that you enter your URL, it
> fetches the page and presents a snap shot of your webpage back to
> you. This is truly a WAN side access.
>
> On Oct 11, 2006, at 4:20 AM, MATTNOZ wrote:.
>
>>
>> I heard about the NSLU2 and wanted to setup a home web server. My
>> broadband
>> connection is with NTL and limited to 50meg of web space, that is
>> full!
>>
>> So I bought a slug and followed the guide:
>> http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite
>>
>> I am also using a WRT54G router, which will automatically update the
>> dyndns.org account settings. I have also set it to port-forward to
>> my slug,
>> disabled the firewall and turned off all block WAN requests tick
>> boxes.
>> (Filter Multicast etc…)
>>
>> OK everything works fine within my LAN. If I type
>> “http://mywebsite.dyndns.com” into IE or Firefox I see my shiny new
>> website.
>> However from the WAN side it doesn’t work.
>>
>> However I can ping “mywebsite.dyndns.com” from the WAN side!! (and
>> the slug
>> flashes)
>>
>> Could it be a problem with my router or is it an NTL thing??
>>
>> Any help would be appreciated
>> Matt (NSLU2 newbie)
>>
>> --
>> View this message in context: http://www.nabble.com/Home-website-
>> problems-with-nslu2%2C-wrt54g-and-NTL-tf2421891.html#a6752284
>> Sent from the Nslu2 - General mailing list archive at Nabble.com.
>>
>>
>>
>>
>>
>>
>>
>> Yahoo! Groups Links
>>
>>
>>
>>
>>
>>
>>
>>
>>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>

--
View this message in context:
http://www.nabble.com/Home-website-problems-with-nslu2%2C-wrt54g-and-NTL-tf24218\
91.html#a6772091
Sent from the Nslu2 - General mailing list archive at Nabble.com.

#5271 From: "mrkzander" <mark.zander@...>
Date: Fri Oct 13, 2006 4:02 am
Subject: Re: Home website problems with nslu2, wrt54g and NTL
mrkzander
Send Email Send Email
 
--- In nslu2-general@yahoogroups.com, MATTNOZ <matt@...> wrote:
>
>
> I heard about the NSLU2 and wanted to setup a home web server. My
broadband
> connection is with NTL and limited to 50meg of web space, that is
full!
>
> So I bought a slug and followed the guide:
> http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite
>
> I am also using a WRT54G router, which will automatically update
the
> dyndns.org account settings. I have also set it to port-forward to
my slug,
> disabled the firewall and turned off all block WAN requests tick
boxes.
> (Filter Multicast etc…)
>
> OK everything works fine within my LAN. If I type
> “http://mywebsite.dyndns.com” into IE or Firefox I see my
shiny new website.
> However from the WAN side it doesn’t work.
>
> However I can ping “mywebsite.dyndns.com” from the WAN side!!
(and the slug
> flashes)
>
> Could it be a problem with my router or is it an NTL thing??
>
> Any help would be appreciated
> Matt (NSLU2 newbie)
>

Make sure that your web server is reporting the
name 'mywebsite.dyndns.com' and not its internal IP address to
clients.
If your web server is saying that it is 192.168.1.254 then you will
be able to access it internally, but no external client will have a
route to that IP address. 'Cause it only exists on your internal
LAN.
I'm not sure what HTTP server you are using but with Apache2 it
would be in the http.conf file and a setting called 'ServerName'
If you have the 'ServerName' value properly set
then 'UseCanonicalName' may be set wrong.

Mark.

#5272 From: "bullfrog528" <yahoo@...>
Date: Fri Oct 13, 2006 6:04 pm
Subject: Re: Unable to Reflash Slug on unslung 6.8 - resolved - new wiki page
bullfrog528
Send Email Send Email
 
Hi

Sam sent me his NSLU2, and I fitted 4 pins to give access to the
serial port. I wasn't able to get the network connection to
work,however it wouldn't even ping itself.

So had to figure out how to do a complete upgrade using serial cable
only.

I've therefore generated a new wiki page on how to do this. However
my wiki skills aren't great and with the preview not working it may
require some tidying up visually.

The page is here if someone could add it to the how-to's.

http://www.nslu2-
linux.org/wiki/HowTo/RecoverFromABadFlashUsingOnlyTheSerialPort

Cheers

Jeremy (Bullfrog)


--- In nslu2-general@yahoogroups.com, "Sam" <sam@...> wrote:
>
> Cheers,
>
> Will email you!
>
>
> Sam
>
> --- In nslu2-general@yahoogroups.com, "bullfrog528" <yahoo@>
> wrote:
> >
> > Hi
> >
> > I'm in the UK if you want me to have a go then email at webmaster
> at
> > this site @pace-twin.org.uk and I'll sort you out with address
> > details.
> >
> > regards
> >
> > Bullfrog
> >
> > --- In nslu2-general@yahoogroups.com, "Sam" <sam@> wrote:
> > >
> > > My slug has been sitting there since july, and i'd love to get
> it
> > > back alive if someone can help
> > >
> > >
> > > Byron was going to send me a usb to serial cable, but he has
> been
> > > busy and such, and hasnt had time to sort it
> > >
> > >
> > > I was wondering if there is someone with some ideas, or someone
> who
> > > i could send it to in the UK to fix it for me?
> > >
> > >
> > > As the IRC group reckoned it would be revivable, just i wasnt
> able
> > > to do it via upslug or anything
> > >
> > > Cheers
> > >
> > >
> > >
> > > Sam
> > > --- In nslu2-general@yahoogroups.com, "Sam" <sam@> wrote:
> > > >
> > > > > If I'm able to help give me a shout.I've a JTAG programmer
> > which
> > > > I've
> > > > > successfully upgraded STB's with. Not tried it on a SLUG
> mind.
> > > If
> > > > you
> > > > > require me to program it for you then contact me by sending
> an
> > > email
> > > > > to the webmaster at this site www.pace-twin.org.uk.
> > > > >
> > > > > regards
> > > > >
> > > > > Bullfrog
> > > >
> > > > Thanks for the offer, its seeming more and more likely i will
> > need
> > > a
> > > > JTAG programmer as i couldnt get it to work from linux either.
> > > >
> > > > If theres someone uk based whoes done it already, it may be
> better
> > > >
> > > > I did find a JTAG programmer on eBay, which ive bought for a
> > > tenner...
> > > >
> > > >
> > > > But it does require some soldering it seems...
> > > >
> > > > Ugh!
> > > >
> > > > Can someone please advise me, as ive spent the last 2 or 3
> days
> > > > finding a linux live distro (other than ubuntu, cause its
> slow)
> > > that
> > > > had arping and GCC - Found PHLAK 0.3 which works
> > > >
> > > > Just my slug playing up!
> > > >
> > > >
> > > > Sam
> > > >
> > >
> >
>

#5273 From: "aixrus" <anatol@...>
Date: Fri Oct 13, 2006 5:39 pm
Subject: how edit smb.conf?
aixrus
Send Email Send Email
 
i edit /etc/samba/smb.conf but after reboot,he is restore to default.
why? and where i must do change my parameters?

thx

#5274 From: "nslu2345" <nslu2345@...>
Date: Fri Oct 13, 2006 4:22 pm
Subject: Flashdrive not detected after powerfail
nslu2345
Send Email Send Email
 
Hello,

after we had a powerfail my NSLU2 doesn't recognize my 1GB USB stick.
I've tryed to install original firmware, accessed redboot and deleted
configuration but neither helped. I got still following error message
in /var/log/messages or dmesg :

hub.c: new USB device 00:01.2-2, assigned address 38
usb.c: USB device not accepting new address=38 (error=-71)

I can mount the stick on other Linux systems without problems.


with kind regards

#5275 From: "Sam" <sam@...>
Date: Fri Oct 13, 2006 9:26 pm
Subject: Re: Unable to Reflash Slug on unslung 6.8 - resolved - new wiki page
sam_m_reed
Send Email Send Email
 
I added it to the How to for you earlier! Under "RedBoot/Flash"

Will wikify it a bit for you, im more used to Mediawiki, but the
principal is the same


If anyone knows why the NIC wasn't accesible (and still isnt! in
redboot) (But its fine in normal mode when booted up), i'd
appreciate someone being able to tell me!


Thanks Jeremy!



Sam

--- In nslu2-general@yahoogroups.com, "bullfrog528" <yahoo@...>
wrote:
>
> Hi
>
> Sam sent me his NSLU2, and I fitted 4 pins to give access to the
> serial port. I wasn't able to get the network connection to
> work,however it wouldn't even ping itself.
>
> So had to figure out how to do a complete upgrade using serial
cable
> only.
>
> I've therefore generated a new wiki page on how to do this.
However
> my wiki skills aren't great and with the preview not working it
may
> require some tidying up visually.
>
> The page is here if someone could add it to the how-to's.
>
> http://www.nslu2-
> linux.org/wiki/HowTo/RecoverFromABadFlashUsingOnlyTheSerialPort
>
> Cheers
>
> Jeremy (Bullfrog)
>
>
> --- In nslu2-general@yahoogroups.com, "Sam" <sam@> wrote:
> >
> > Cheers,
> >
> > Will email you!
> >
> >
> > Sam
> >
> > --- In nslu2-general@yahoogroups.com, "bullfrog528" <yahoo@>
> > wrote:
> > >
> > > Hi
> > >
> > > I'm in the UK if you want me to have a go then email at
webmaster
> > at
> > > this site @pace-twin.org.uk and I'll sort you out with address
> > > details.
> > >
> > > regards
> > >
> > > Bullfrog
> > >
> > > --- In nslu2-general@yahoogroups.com, "Sam" <sam@> wrote:
> > > >
> > > > My slug has been sitting there since july, and i'd love to
get
> > it
> > > > back alive if someone can help
> > > >
> > > >
> > > > Byron was going to send me a usb to serial cable, but he has
> > been
> > > > busy and such, and hasnt had time to sort it
> > > >
> > > >
> > > > I was wondering if there is someone with some ideas, or
someone
> > who
> > > > i could send it to in the UK to fix it for me?
> > > >
> > > >
> > > > As the IRC group reckoned it would be revivable, just i
wasnt
> > able
> > > > to do it via upslug or anything
> > > >
> > > > Cheers
> > > >
> > > >
> > > >
> > > > Sam
> > > > --- In nslu2-general@yahoogroups.com, "Sam" <sam@> wrote:
> > > > >
> > > > > > If I'm able to help give me a shout.I've a JTAG
programmer
> > > which
> > > > > I've
> > > > > > successfully upgraded STB's with. Not tried it on a SLUG
> > mind.
> > > > If
> > > > > you
> > > > > > require me to program it for you then contact me by
sending
> > an
> > > > email
> > > > > > to the webmaster at this site www.pace-twin.org.uk.
> > > > > >
> > > > > > regards
> > > > > >
> > > > > > Bullfrog
> > > > >
> > > > > Thanks for the offer, its seeming more and more likely i
will
> > > need
> > > > a
> > > > > JTAG programmer as i couldnt get it to work from linux
either.
> > > > >
> > > > > If theres someone uk based whoes done it already, it may
be
> > better
> > > > >
> > > > > I did find a JTAG programmer on eBay, which ive bought for
a
> > > > tenner...
> > > > >
> > > > >
> > > > > But it does require some soldering it seems...
> > > > >
> > > > > Ugh!
> > > > >
> > > > > Can someone please advise me, as ive spent the last 2 or 3
> > days
> > > > > finding a linux live distro (other than ubuntu, cause its
> > slow)
> > > > that
> > > > > had arping and GCC - Found PHLAK 0.3 which works
> > > > >
> > > > > Just my slug playing up!
> > > > >
> > > > >
> > > > > Sam
> > > > >
> > > >
> > >
> >
>

#5276 From: "Steve Gane" <steve@...>
Date: Sat Oct 14, 2006 10:38 am
Subject: Re: how edit smb.conf?
stevegane
Send Email Send Email
 
As you correctly observed, the Linksys firmware will restore
/etc/samba/smb.conf after every boot. It will also change this file if
you use the Web interface. But it will not change
/etc/samba/user_smb.conf, so make your changes in that file if you can.

This is mentioned in the Wiki page
http://www.nslu2-linux.org/wiki/HowTo/CreateASingleSambaShareFor2Harddisks

Steve

--- In nslu2-general@yahoogroups.com, "aixrus" <anatol@...> wrote:
>
> i edit /etc/samba/smb.conf but after reboot,he is restore to default.
> why? and where i must do change my parameters?
>
> thx
>

#5277 From: "alexmathew" <alexmathew@...>
Date: Sat Oct 14, 2006 3:58 pm
Subject: Final Word on mounting nslu2 ext3 formatted drive on Mac OS X 10.4.8
alexmathew
Send Email Send Email
 
I bought the nslu2 based on Toms Hardware review:
http://www.tomsnetworking.com/2004/07/06/
linksys_network_storage_link_for_usb_2_nslu2/index.html
and
http://www.tomsnetworking.com/2004/08/03/how_to_nslu2_hack_pt1/

specifically the part that says:
"Being too lazy to take my NSLU2 initialized disk downstairs to my Mandrake
Linux
system, I downloaded ext2 (a subset of ext3) drivers for my MacOs X iBook and
plugged
the disk into its USB port.
  Tip: The Mac OS X ext2 drivers I used can be downloaded from the ext2 for Mac
OS X
SourceForge project. There is also a read-only ext2 driver for Windows
NT/2000/XP that
you can try here. It was used to create the screenshot shown in Figure 3.
Up popped two mounted filesystems: a large filesystem with all of my data files
on it, and
a small ..."

I also used the nlsu2 Wiki as a reference - it did not address the specific
issue but I
assumed that things would go well when I tried to mount the EXT3 formatted drive
on my
Mac OS X.

However, after much trial and error and days of searching through the net - I
have come
to the following conclusions - please correct me if I am wrong - and then I will
post this
on the Wiki.

1. nslu2 must have a drive formattd in EXT3 to even change the basic admin
password - a
FAT formatted drive is open to everyone to login and you cannot setup additional
shares,
users and groups if there is only one FAT drive attached to the nslu2. (This was
not for me
- an unsecured drive on my network - with all my data!!)

2. The EXT3 format used by nslu2 is actually an EXT3 Journaled format - its not
possible
to force a simple EXT3 format.

3. EXT2FS, the utility mentioned in the review at
http://sourceforge.net/projects/ext2fsx
is broken with 10.4.8 with respect to mounting EXT3 Journaled drives - disks
will show in
the prefernce pane but cannot be mounted. USB or Firewire has nothing to do with
it. So I
have to asssume that Toms Hardware reviewer used an older version of Mac OS X
(which I
dont have) or I'm missing something.

Thus the nslu2 is unsuitable at this moment for Mac OS X 10.4.8 users who were
hoping
to get plug-n-play use from the EXT3 formatted drive from the nslu2.

I'm using the latest firmware from Linksys - no software or hardware hacks to
the nlsu2.

Thanks
AM

#5278 From: "Sam" <sam@...>
Date: Sat Oct 14, 2006 6:34 pm
Subject: Wiki Hyperlinks - Approving Sites
sam_m_reed
Send Email Send Email
 
Hi,
Can someone with the password please approve the links on
http://www.nslu2-linux.org/wiki/HowTo/AddASerialPort

Specifically:
'This is avaliable from
http://apple.clickandbuild.com/cnb/shop/ftdichip?op=catalogue-products-
null&prodCategoryID=47&title=Cables%3A+TTL-232R(approve sites)'

Link: http://www.nslu2-linux.org/wiki/HowTo/AddASerialPort?
action=approvesites



Cheers

Sam

#5279 From: "marcwlawrence" <lawrence@...>
Date: Sat Oct 14, 2006 3:51 pm
Subject: PSC Memory Specifications
marcwlawrence
Send Email Send Email
 
Dear All;

I am looking for further specifications for the PSC A2V56S408TP 32MB
ram chips used on the DS101g+ boards. The link on the nls2u wiki
points to a page with no specifications :(

Ideally im trying to find out what format PC133 (2-2-2 or 3-3-3) is
used; and how the memory is allocated; e.g. 4x8x4 (4 rows, 8 columsn,
4 banks) etc. Does anyone know?

Many thanks,

#5280 From: Chris Herrick <Christopher.M.Herrick@...>
Date: Mon Oct 16, 2006 8:19 am
Subject: RE: Setup for Slug as music server
cmhj30
Send Email Send Email
 
Hi James, this is a pretty difficult subject but I'd be happy to pass along
any knowledge that I have.  I don't know how much you know about linux (I
know virtually nothing) so let me know if you don't understand something.

There are a couple different keys to getting this working, one is spnego
which stands for sp negotiate (thanks to mujia for letting me know about
this).  Spnego is a bizarre and obscure variable that needs to be changed in
order for a pocket pc to work with a slug.  This is located in
/etc/samba/smb.conf and is by default "yes" even though you can't see it in
the config file.  Use Putty to talk to the slug.  If you're using the linux
text editor nano, navigate to the above directory and type "nano smb.conf".
You need to insert the new line at the top of the config "use spnego = no".
It won't work if you omit the spaces, but I don't think the case matters.
One minor problem with this is that the smb.conf file goes back to default
values after you reboot the slug.  I haven't gotten around to figuring out
how to do it but you can make it stick by writing a diversion script.  If
you figure this out let me know!

Next you need to connect the ppc to your wireless network.  Bear in mind
that it'll turn off wifi after a period of time unless it's plugged in and
your player will lock up and play an annoying 3 second loop of whatever
track it's on for 5 mins.  Mine does have a nice little revolving photograph
screensaver thing though that comes up when it's plugged in.  I actually
bought a little metal plate stand and it sits on it like a picture frame and
rotates pictures of me and my girlfriend.

After it's connected you need to map your slug as a network drive.  The
windows explorer program that comes with the ppc is too retarded to do this
so you need a third party program like vm netbrowser or resco pocket
explorer.  Vm netbrowser is better, but you should probably get resco as
it's more multi functional.  It can easily be found on torrent sites.  With
resco hold down the stylus on the network icon and select map network drive.
Type in the path, which will be something like \\slug\disk 2.  Mine happens
to be called  \\turboslug\disk 2.

If you got through all that then you need to get the third key, which is a
decent music player.  WM Player is too retarded to access network drives so
you need to use "pocket music" or "pocket player".  Pocket player is less
well known but far, far superior.  It allows one hand use (what a novelty),
has better tag filename display and it's much faster at indexing files.
However i'm using pocket music because I can't find a key for pocket player.
Either of these can access the network drive you just mapped, however you
have to log in every single time, which is annoying in itself but is also
made worse because you have to sit there for 25 seconds to wait for the
login screen to come up.  I can't really remember but I think the login and
pw end up being something you setup during your initial slug configuration
so try those.  Of course the remember password function doesn't work.  If
you figure out how to unpassword this again plz let me know.

It should work now, but there are a couple general problems:  don't try to
add a substantial amount of music to pocket player at once or it will lock
up.  You'll have to use a lot of playlists which is ok I guess. It can also
be a bit slow when opening your audio folder.  I have a wireless g router
and it takes an uncomfortably long time to open the folder I have all my
albums in.  I have about 350 albums and it takes up to 30 seconds to open
the folder.  So imagine sitting on your sofa listening to music then when
you want to change it you've got to get up and stand next to your stereo for
awhile.  Now if you have a long cord to your stereo you can sit comfortably
on your sofa but you'll still have to wait.  It'd be nice if there was a
good wireless solution from ppc to stereo but fm transmitters are a
nightmare and need power and I'm not aware of any Bluetooth solutions
available.  Bluetooth is also usually a nightmare to get working.

Possible solutions: Bluetooth connection to stereo, faster wireless network
(wireless N 300mbs versus 54mbs G), or really expensive ppc (I have an hp
rx3715).

The other problems are the config resetting and the password mentioned
above.

One final note:  a slug is about $100 and a hdd enclosure is about $25.  If
you're willing to spend an extra $400 you can a get home theater pc to
replace the slug.  You'll save yourself a tremendous pain in the ass and
you'll be able to do everything we've been trying to do with music with
video too, as well as having a DVR, etc., etc.  You can also use a remote
control with it.  The slug remains a cheap solution though.

That should be it, let me know how it goes!  I forwarded this to the list.


-Chris Herrick


-----Original Message-----
From: notify@yahoogroups.com [mailto:notify@yahoogroups.com] On Behalf Of
James Lavery
Sent: Saturday, October 14, 2006 3:02 AM
To: Chris Herrick
Subject: Setup for Slug as music server

Hi Chris,
I saw your 'all up and running' message on the Yahoo group, and am
intrigued as to the setup you've got working.

It looks like you've done just what I want to do...

I would like to have my Slug acting as a music server, and be able to
stream it to my current stereo.  I've got a spare Pocket PC device
(with wireless) which I'm hoping to use to control the music server
(via web interface?), and plug into the stereo (or feed the music to
the stereo via another route).

Could you let me know you managed to set things up, please?

Thanks,

James

#5281 From: Chris Herrick <Christopher.M.Herrick@...>
Date: Mon Oct 16, 2006 8:29 am
Subject: Re: how edit smb.conf?
cmhj30
Send Email Send Email
 
That file doesn't exist in my install, do I need to create it?



[Non-text portions of this message have been removed]

#5282 From: "Steve Gane" <steve@...>
Date: Mon Oct 16, 2006 2:49 pm
Subject: Re: how edit smb.conf?
stevegane
Send Email Send Email
 
I did refer you to a wiki page, which says:

"After that we have to add some lines to the samba configuration. But
rather than writing to the default samba config /etc/samba/smb.conf,
we will create a new file /etc/samba/user_smb.conf. This file is
loaded automatically by the Linksys firmware right after loading the
default /etc/samba/smb.conf."

Steve

--- In nslu2-general@yahoogroups.com, Chris Herrick
<Christopher.M.Herrick@...> wrote:
>
> That file doesn't exist in my install, do I need to create it?
>
>
>
> [Non-text portions of this message have been removed]
>

#5283 From: Perry Donham <pd@...>
Date: Mon Oct 16, 2006 4:34 pm
Subject: Re: RE: Setup for Slug as music server
n23824
Send Email Send Email
 
Many of us also use our Slugs, running the Twonkyvision music server, to talk
to a Netgear MP101 media player across an 802.11 network. It's a nice
combination, I have two MP101s in the house serving up half a terabyte of
music. The MP101s are cheap on eBay ($30 to $50).

The MP101s have trouble following HTTP streams from Internet radio stations
(such as those found on Shoutcast) but are rock solid on locally served MP3
streams.

Perry

On Monday 16 October 2006 04:19, Chris Herrick wrote:

> Hi Chris,
> I saw your 'all up and running' message on the Yahoo group, and am
> intrigued as to the setup you've got working.
>
> It looks like you've done just what I want to do...
>
> I would like to have my Slug acting as a music server, and be able to
> stream it to my current stereo.  I've got a spare Pocket PC device
> (with wireless) which I'm hoping to use to control the music server
> (via web interface?), and plug into the stereo (or feed the music to
> the stereo via another route).
>
> Could you let me know you managed to set things up, please?
>
> Thanks,
>
> James

#5284 From: "lance_benson" <lance_benson@...>
Date: Mon Oct 16, 2006 9:01 pm
Subject: Re: Setup for Slug as music server
lance_benson
Send Email Send Email
 
--- In nslu2-general@yahoogroups.com, Perry Donham <pd@...> wrote:
>
> .. use our Slugs, running the Twonkyvision music server, to talk
> to a Netgear MP101 media player across an 802.11 network. >
> Perry

I'm seconding what Perry said.  I use slugs in two locations running
Unslung 6.8 and 5.5 respectively to serve an MP101 and a DSM 320
wirelessly.  The DSM 320 also handles pictures (I've had only limited
success with video).  It also serves internet radio (my favorite,
WeenieCampbell.com, old-time country blues) with pretty good success.
It sometimes drops the connection.  I don't know if it would do better
in that regard if it were wired.  I can play any tune in my collection
with just a few clicks of the remote.

Lance

#5285 From: "Michael" <diveboy@...>
Date: Tue Oct 17, 2006 1:28 am
Subject: Re: Re: Setup for Slug as music server
mikey_boy98
Send Email Send Email
 
I have openslug 3.2 (slug de-de-clocked) with twonky serving mp101.

I was having issues with the mp101 dropping out using wireless, since
using the wired connection, the mp101/twonky on slug combo is rock
solid, never fails (longest streaming time has been 6 hours with out a
drop out off club 977 mix).

I'm thinking about dropping out of open slug and going to unslung 6.8,
mainly cause open slug is a cow when your linux noob.


On Mon, 16 Oct 2006 21:01:00 -0000, "lance_benson"
<lance_benson@...> said:
> --- In nslu2-general@yahoogroups.com, Perry Donham <pd@...> wrote:
> >
> > .. use our Slugs, running the Twonkyvision music server, to talk
> > to a Netgear MP101 media player across an 802.11 network. >
> > Perry
>
> I'm seconding what Perry said.  I use slugs in two locations running
> Unslung 6.8 and 5.5 respectively to serve an MP101 and a DSM 320
> wirelessly.  The DSM 320 also handles pictures (I've had only limited
> success with video).  It also serves internet radio (my favorite,
> WeenieCampbell.com, old-time country blues) with pretty good success.
> It sometimes drops the connection.  I don't know if it would do better
> in that regard if it were wired.  I can play any tune in my collection
> with just a few clicks of the remote.
>
> Lance
>
>
>
--
   Michael
   diveboy@...

#5286 From: MATTNOZ <matt@...>
Date: Tue Oct 17, 2006 7:37 am
Subject: Re: Home website problems with nslu2, wrt54g and NTL
matt.julia
Send Email Send Email
 
Cheers Mark

It does sound something like that because everything works OK while on the
LAN.

I’m using the inbuilt thttpd web server and can’t find any reference to
'ServerName' in the thttpd-www.conf file. How can I tell what my web server
is reporting to see if this is the definitely problem?

Matt


mrkzander-3 wrote:
>
> --- In nslu2-general@yahoogroups.com, MATTNOZ <matt@...> wrote:
>>
>>
>> I heard about the NSLU2 and wanted to setup a home web server. My
> broadband
>> connection is with NTL and limited to 50meg of web space, that is
> full!
>>
>> So I bought a slug and followed the guide:
>> http://www.nslu2-linux.org/wiki/HowTo/SimpleHomeWebsite
>>
>> I am also using a WRT54G router, which will automatically update
> the
>> dyndns.org account settings. I have also set it to port-forward to
> my slug,
>> disabled the firewall and turned off all block WAN requests tick
> boxes.
>> (Filter Multicast etc…)
>>
>> OK everything works fine within my LAN. If I type
>> “http://mywebsite.dyndns.com” into IE or Firefox I see my
> shiny new website.
>> However from the WAN side it doesn’t work.
>>
>> However I can ping “mywebsite.dyndns.com” from the WAN side!!
> (and the slug
>> flashes)
>>
>> Could it be a problem with my router or is it an NTL thing??
>>
>> Any help would be appreciated
>> Matt (NSLU2 newbie)
>>
>
> Make sure that your web server is reporting the
> name 'mywebsite.dyndns.com' and not its internal IP address to
> clients.
> If your web server is saying that it is 192.168.1.254 then you will
> be able to access it internally, but no external client will have a
> route to that IP address. 'Cause it only exists on your internal
> LAN.
> I'm not sure what HTTP server you are using but with Apache2 it
> would be in the http.conf file and a setting called 'ServerName'
> If you have the 'ServerName' value properly set
> then 'UseCanonicalName' may be set wrong.
>
> Mark.
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>

--
View this message in context:
http://www.nabble.com/Home-website-problems-with-nslu2%2C-wrt54g-and-NTL-tf24218\
91.html#a6850064
Sent from the Nslu2 - General mailing list archive at Nabble.com.

#5287 From: "absolutemagnitude" <mag@...>
Date: Tue Oct 17, 2006 5:03 am
Subject: Spinning down usb harddrives
absolutemagn...
Send Email Send Email
 
As per this page:

http://www.nslu2-linux.org/wiki/FAQ/SpinDownUSBHarddisks

I wanted to notify you guys that my usb-only "metal gear box"

(http://secure.newegg.com/NewVersion/Shopping/ShoppingItem.asp?ItemList=N82E1681\
7155204&MainItemList=N82E16817155204)

spins down just fine using sdparm --command=stop.

Somebody should update that page to list it as one of the working
enclosures.

Have fun,
Michael.

#5288 From: Chris Herrick <Christopher.M.Herrick@...>
Date: Tue Oct 17, 2006 3:53 pm
Subject: Re: Setup for Slug as music server
cmhj30
Send Email Send Email
 
I guess twonkyvision and slingboxes always put me off because I would have
to buy new hardware (I have way too much as it is!).  Also the fact that
these devices are pretty much unitaskers bothered me, but I really thought
of using the slug with ppc because I already had one and I could use the
slug and ppc in my car on a long move that I had planned across country.



But anyway I've been playing around with it more and there's a new release
of pocket player which is pretty exciting.  They've increased the browse
speed tremendously and it has a media library but unfortuneately I still
can't get it to index my 30 gigs of music into the library and have it
stick.  However they have a plugin now that allows it to be used as a upnp
device, so it can be used with twonkyvision!  I'll have to test it out as
soon as I get a chance.



[Non-text portions of this message have been removed]

Messages 5259 - 5288 of 8988   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help