Search the web
Sign In
New User? Sign Up
nslu2-linux · NSLU2-Linux (http://www.nslu2-linux.org)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 24096 - 24125 of 24171   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#24125 From: Marc Boris Dombrowa <marbordom@...>
Date: Sun Nov 22, 2009 2:44 pm
Subject: Re: [openslug] Send mail with nail in crontab
marbordom
Offline Offline
Send Email Send Email
 
Most likely your environment is different than the one of the user
running this cronjob
Therefore add an env debug statement to the crontab. Check your path to
the env binary.
It is  /usr/bin/env linked to opt/bin/env on my slug

33 23 * * *  /opt/bin/env > 1>/tmp/env.log 2>&1


You will then use env in your shell and dump output again to a file
env 1>~/env.log 2>&1

then diff both files

diff /tmp/env/log ~/env.log

and you will see that e.g. your LD_LIBRARY_PATH and other settings differ.
You need to adjust you settings either inside the crontab or source and
environment inside cron prior to executing nail.

Once done remove the env line in cron.

Marc

#24124 From: "rolandkbs" <roland.krebs@...>
Date: Sun Nov 22, 2009 12:22 pm
Subject: Re: [openslug] Send mail with nail in crontab
rolandkbs
Offline Offline
Send Email Send Email
 
I don't know 'nail', so I'm just guessing:
Nail tries to find sendmail in the path ($PATH) and if it's not found there then
in /usr/lib. So it looks like
1. your path ($PATH) is different from the crontab's, and
2. sendmail is not in /usr/lib, but maybe /usr/sbin

If nail has some configuration files, then you can probably set the
sendmail-location there, if not then you can extend $PATH in your bash-script.

regards, Roland

--- In nslu2-linux@yahoogroups.com, "tkayna" <tkayna@...> wrote:
>
> Thanks,
>
> It returns me this :
> $ cat /tmp/myLog.err
> /usr/lib/sendmail: No such file or directory
> . . . message not sent.
>
> And I have this in nail bin :
> $strings /usr/bin/nail | grep sendmail
> sendmail
> /usr/lib/sendmail
>
> But I don't understand why it works in shell.
>
> Thank you for your help
>
> --- In nslu2-linux@yahoogroups.com, "rolandkbs" <roland.krebs@> wrote:
> >
> > I don't see the cause, but maybe I can help you to find it:
> > Add to the end of your crontab line the following
> >  >/tmp/myLog.out 2>/tmp/myLog.err
> >
> > By inspecting the two files after the defined time has passed you will most
probably find the problem.
> >
> > regards, Roland
> >
> > --- In nslu2-linux@yahoogroups.com, "tkayna" <tkayna@> wrote:
> > >
> > > Hello,
> > >
> > > I made un script to send mail.
> > > My script works executing in shell but not in crontab.
> > > I also add full path for binaries but it's the same.
> > >
> > > Can someone help me ?
> > >
> > > ***BASH SCRIPT send_mail.sh :
> > >
> > > #!/opt/bin/bash
> > >
> > > nail='/usr/bin/nail'
> > > sleep='/bin/sleep'
> > > echo='/bin/echo'
> > >
> > >
> > > function mail_status ()
> > > {
> > > ${sleep} 1
> > > ${echo} $1  $2 | ${nail} -s "save_sites_SQL_$1_$2" myemail@;
> > > #echo $? > /tmp/testestest_sendmail.txt
> > > }
> > >
> > > #### DEBUG TESTS ####
> > >
> > > mail_status "Test" "succes";
> > >
> > > ***CRONTAB LINE :
> > >
> > > 33 23 * * * /opt/bin/bash /temp/testmail/send_mail.sh
> > >
> >
>

#24123 From: "tkayna" <tkayna@...>
Date: Sun Nov 22, 2009 11:48 am
Subject: Re: [openslug] Send mail with nail in crontab
tkayna
Offline Offline
Send Email Send Email
 
Thanks,

It returns me this :
$ cat /tmp/myLog.err
/usr/lib/sendmail: No such file or directory
. . . message not sent.

And I have this in nail bin :
$strings /usr/bin/nail | grep sendmail
sendmail
/usr/lib/sendmail

But I don't understand why it works in shell.

Thank you for your help

--- In nslu2-linux@yahoogroups.com, "rolandkbs" <roland.krebs@...> wrote:
>
> I don't see the cause, but maybe I can help you to find it:
> Add to the end of your crontab line the following
>  >/tmp/myLog.out 2>/tmp/myLog.err
>
> By inspecting the two files after the defined time has passed you will most
probably find the problem.
>
> regards, Roland
>
> --- In nslu2-linux@yahoogroups.com, "tkayna" <tkayna@> wrote:
> >
> > Hello,
> >
> > I made un script to send mail.
> > My script works executing in shell but not in crontab.
> > I also add full path for binaries but it's the same.
> >
> > Can someone help me ?
> >
> > ***BASH SCRIPT send_mail.sh :
> >
> > #!/opt/bin/bash
> >
> > nail='/usr/bin/nail'
> > sleep='/bin/sleep'
> > echo='/bin/echo'
> >
> >
> > function mail_status ()
> > {
> > ${sleep} 1
> > ${echo} $1  $2 | ${nail} -s "save_sites_SQL_$1_$2" myemail@;
> > #echo $? > /tmp/testestest_sendmail.txt
> > }
> >
> > #### DEBUG TESTS ####
> >
> > mail_status "Test" "succes";
> >
> > ***CRONTAB LINE :
> >
> > 33 23 * * * /opt/bin/bash /temp/testmail/send_mail.sh
> >
>

#24122 From: "rolandkbs" <roland.krebs@...>
Date: Sun Nov 22, 2009 10:32 am
Subject: Re: [openslug] Send mail with nail in crontab
rolandkbs
Offline Offline
Send Email Send Email
 
I don't see the cause, but maybe I can help you to find it:
Add to the end of your crontab line the following
  >/tmp/myLog.out 2>/tmp/myLog.err

By inspecting the two files after the defined time has passed you will most
probably find the problem.

regards, Roland

--- In nslu2-linux@yahoogroups.com, "tkayna" <tkayna@...> wrote:
>
> Hello,
>
> I made un script to send mail.
> My script works executing in shell but not in crontab.
> I also add full path for binaries but it's the same.
>
> Can someone help me ?
>
> ***BASH SCRIPT send_mail.sh :
>
> #!/opt/bin/bash
>
> nail='/usr/bin/nail'
> sleep='/bin/sleep'
> echo='/bin/echo'
>
>
> function mail_status ()
> {
> ${sleep} 1
> ${echo} $1  $2 | ${nail} -s "save_sites_SQL_$1_$2" myemail@...;
> #echo $? > /tmp/testestest_sendmail.txt
> }
>
> #### DEBUG TESTS ####
>
> mail_status "Test" "succes";
>
> ***CRONTAB LINE :
>
> 33 23 * * * /opt/bin/bash /temp/testmail/send_mail.sh
>

#24121 From: "tkayna" <tkayna@...>
Date: Sun Nov 22, 2009 9:47 am
Subject: [openslug] Send mail with nail in crontab
tkayna
Offline Offline
Send Email Send Email
 
Hello,

I made un script to send mail.
My script works executing in shell but not in crontab.
I also add full path for binaries but it's the same.

Can someone help me ?

***BASH SCRIPT send_mail.sh :

#!/opt/bin/bash

nail='/usr/bin/nail'
sleep='/bin/sleep'
echo='/bin/echo'


function mail_status ()
{
${sleep} 1
${echo} $1  $2 | ${nail} -s "save_sites_SQL_$1_$2" myemail@...;
#echo $? > /tmp/testestest_sendmail.txt
}

#### DEBUG TESTS ####

mail_status "Test" "succes";

***CRONTAB LINE :

33 23 * * * /opt/bin/bash /temp/testmail/send_mail.sh

#24120 From: "rolandkbs" <roland.krebs@...>
Date: Sat Nov 21, 2009 7:27 pm
Subject: Re: Disk 1 dissapear?
rolandkbs
Offline Offline
Send Email Send Email
 
Yes, /dev/sda1 and /dev/sda2 are tow partitions on the same disk.

I dont know how you have formatted your second disk, but I assume you used the
webGUI for it and therefore got two partitions on your second drive. So you have
to do a fsck on both of them:
/sbin/e2fsck /dev/sdb1
/sbin/e2fsck /dev/sdb2

I never used a usb hub for my disks, but I assume if it's a powered hub it
should be no problem to use it.

regards, Roland

--- In nslu2-linux@yahoogroups.com, Victor Hadianto <victor@...> wrote:
>
> Hi,
>
> Thanks for the reply. So this is the output command of "mount"
>
> # mount
> /dev/root 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)
>
>
> I take it sda1 & sda2 are 2 different partition on my main disk?
>
> So that will be /sbin/e2fsck /dev/sdb?
>
> Another question, will it be safe for me to do this via the usb hub? Since
> the config on my box is
>
> Disk 2 -> main disk
> Disk 1 -> usb hub -> 2nd disk (where the content can't be seen no more)
>
> Thanks,
> Victor
>
>
>
> 2009/11/20 rolandkbs <roland.krebs@...>
>
> >
> >
> > I suppose the drive is not mounted. You can check this by connecting to the
> > NSLU2 via telnet and using the command 'mount'. If the partition of this
> > disk is not in the list, then it's most probably because the partition is
> > marked as 'dirty'.
> > I would put the disk to your Linux Live CD-system and do a fsck (or
> > /sbin/e2fsck /dev/sd?? if you do it on the NSLU2).
> >
> > regards, Roland
> >
> >
> > --- In nslu2-linux@yahoogroups.com <nslu2-linux%40yahoogroups.com>, Victor
> > Hadianto <victor@> wrote:
> > >
> > > Hi,
> > >
> > > For months I've been running NSLU2 (Unslung) with 2 disk configuration.
> > Disk
> > > 1 & Disk 2. Disk 2 is my "main" disk, while Disk 1 port is connected to a
> > > USB Hub where my other drive is connected.
> > >
> > > This configuration works fine, but last weekend I can't see Disk 1 any
> > more.
> > > The disk is on but when I browse to /hdd2 it's empty.
> > >
> > > I downloaded a Linux Live CD and connected that drive to my PC and I can
> > see
> > > that the drive is not gone, I can see all my files.
> > >
> > > Anyone has any ideas? I tried rebooting NSLU2 several times and still no
> > > luck.
> > >
> > > Help ...
> > >
> > > Victor
> > >
> >
>

#24119 From: Victor Hadianto <victor@...>
Date: Sat Nov 21, 2009 1:34 pm
Subject: Re: Re: Disk 1 dissapear?
vhadiant
Offline Offline
Send Email Send Email
 
Hi,

Thanks for the reply. So this is the output command of "mount"

# mount
/dev/root 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)


I take it sda1 & sda2 are 2 different partition on my main disk?

So that will be /sbin/e2fsck /dev/sdb?

Another question, will it be safe for me to do this via the usb hub? Since the config on my box is 

Disk 2 -> main disk
Disk 1 -> usb hub -> 2nd disk (where the content can't be seen no more)

Thanks,
Victor



2009/11/20 rolandkbs <roland.krebs@...>
 

I suppose the drive is not mounted. You can check this by connecting to the NSLU2 via telnet and using the command 'mount'. If the partition of this disk is not in the list, then it's most probably because the partition is marked as 'dirty'.
I would put the disk to your Linux Live CD-system and do a fsck (or /sbin/e2fsck /dev/sd?? if you do it on the NSLU2).

regards, Roland



--- In nslu2-linux@yahoogroups.com, Victor Hadianto <victor@...> wrote:
>
> Hi,
>
> For months I've been running NSLU2 (Unslung) with 2 disk configuration. Disk
> 1 & Disk 2. Disk 2 is my "main" disk, while Disk 1 port is connected to a
> USB Hub where my other drive is connected.
>
> This configuration works fine, but last weekend I can't see Disk 1 any more.
> The disk is on but when I browse to /hdd2 it's empty.
>
> I downloaded a Linux Live CD and connected that drive to my PC and I can see
> that the drive is not gone, I can see all my files.
>
> Anyone has any ideas? I tried rebooting NSLU2 several times and still no
> luck.
>
> Help ...
>
> Victor
>

#24118 From: "martienl" <blucap@...>
Date: Sat Nov 21, 2009 7:43 am
Subject: webdav / slug / ipod touch
martienl
Offline Offline
Send Email Send Email
 
Hi,

Would like to use my ipod touch with the slug (unslung 6.8).

I read that lighttpd may help, is that true? If not please help, I am a bit of a
newby.

Regards,
Martien

#24117 From: "rolandkbs" <roland.krebs@...>
Date: Fri Nov 20, 2009 9:04 am
Subject: Re: Disk 1 dissapear?
rolandkbs
Offline Offline
Send Email Send Email
 
I suppose the drive is not mounted. You can check this by connecting to the
NSLU2 via telnet and using the command 'mount'. If the partition of this disk is
not in the list, then it's most probably because the partition is marked as
'dirty'.
I would put the disk to your Linux Live CD-system and do a fsck (or /sbin/e2fsck
/dev/sd?? if you do it on the NSLU2).

regards, Roland

--- In nslu2-linux@yahoogroups.com, Victor Hadianto <victor@...> wrote:
>
> Hi,
>
> For months I've been running NSLU2 (Unslung) with 2 disk configuration. Disk
> 1 & Disk 2. Disk 2 is my "main" disk, while Disk 1 port is connected to a
> USB Hub where my other drive is connected.
>
> This configuration works fine, but last weekend I can't see Disk 1 any more.
> The disk is on but when I browse to /hdd2 it's empty.
>
> I downloaded a Linux Live CD and connected that drive to my PC and I can see
> that the drive is not gone, I can see all my files.
>
> Anyone has any ideas? I tried rebooting NSLU2 several times and still no
> luck.
>
> Help ...
>
> Victor
>

#24116 From: Victor Hadianto <victor@...>
Date: Thu Nov 19, 2009 10:38 pm
Subject: Disk 1 dissapear?
vhadiant
Offline Offline
Send Email Send Email
 
Hi,

For months I've been running NSLU2 (Unslung) with 2 disk configuration. Disk 1 & Disk 2. Disk 2 is my "main" disk, while Disk 1 port is connected to a USB Hub where my other drive is connected.

This configuration works fine, but last weekend I can't see Disk 1 any more. The disk is on but when I browse to /hdd2 it's empty.

I downloaded a Linux Live CD and connected that drive to my PC and I can see that the drive is not gone, I can see all my files.

Anyone has any ideas? I tried rebooting NSLU2 several times and still no luck.

Help ...

Victor

#24115 From: "perror@..." <perror@...>
Date: Wed Nov 18, 2009 10:58 pm
Subject: Re: Cant run perl from optware/ts101 feed - Compile shared libraries with -fPIC!
perror...
Offline Offline
Send Email Send Email
 
--- In nslu2-linux@yahoogroups.com, jasoncraneuk@... wrote:
>
> Hello
>
> I'm having a problem running Perl that I've installed via ipkg from the
optware/ts101/cross/ feed onto my Qnap TS-101.
>
> Firstly, I hope this is this the right forum for asking this, nslug1-linux is
listed as the package maintainer in the feed.
>
> The actual problem is that when I try to run perl I get this:
>  [~] # perl -v
>  R_PPC_REL24: Compile shared libraries with -fPIC!
>
>  perl: symbol 'malloc': can't handle reloc type 0xa
>
>

I've just installed the latest package, perl_5.8.8-22_powerpc.ipk and get the
same error.
This is my first attempt at using OptWare and I would really like to get Perl
working! I've tried to find older packages but without any luck.

#24114 From: Don Muller <don@...>
Date: Wed Nov 18, 2009 6:27 pm
Subject: RE: Re: atop
donaldmuller
Offline Offline
Send Email Send Email
 

Maybe it’s the intended behavior but is it the correct behavior?  If one line, CPU, is intended to show the numbers for all cpus, in other words an overall view of the system, how can a system be over 100% idle or busy or …? Maybe a new line should be added that shows the average.

 

From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf Of mig mac
Sent: Wednesday, November 18, 2009 1:12 PM
To: nslu2-linux@yahoogroups.com
Subject: Re: [nslu2-linux] Re: atop

 



Hi,
I'm running atop v1.23 on a couple Ubuntu systems and both show CPU totals over 100%.
I believe that is the intended behavior.

from the atop man page:

       CPU  CPU utilization.
            At  least  one  line  is shown for the total occupation of all CPU’s
            together....

On Wed, Nov 18, 2009 at 11:33 AM, Don Muller <don@...> wrote:

 

Sorry my desktop is Windoze. The only devices I have that run Linux are three
NAS devices. Only one of them is dual core.



-----Original Message-----
From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf
Of slackline

Sent: Wednesday, November 18, 2009 10:50 AM
To: nslu2-linux@yahoogroups.com
Subject: [nslu2-linux] Re: atop

--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Hi,
>
> It's running on a QNAP NAS (x86). The feed is
> http://ipkg.nslu2-linux.org/feeds/optware/ts509/cross/stable/Packages.gz.

Ok, so does the failure for the percentages to tally up happen on any other
systems?

Is your desktop computer multi-core? If so do you observe the same behaviour
you've described with atop on that as you do on your QNAP?

This would help identify whether the error is with atop in general or the
specific build you are using.

------------------------------------

Yahoo! Groups Links




--
Against logic there is no armor like ignorance.
- Laurence J. Peter




#24113 From: mig mac <migxmac@...>
Date: Wed Nov 18, 2009 6:11 pm
Subject: Re: Re: atop
migxm
Offline Offline
Send Email Send Email
 
Hi,
I'm running atop v1.23 on a couple Ubuntu systems and both show CPU totals over 100%.
I believe that is the intended behavior.

from the atop man page:

       CPU  CPU utilization.
            At  least  one  line  is shown for the total occupation of all CPU’s
            together....


On Wed, Nov 18, 2009 at 11:33 AM, Don Muller <don@...> wrote:
 

Sorry my desktop is Windoze. The only devices I have that run Linux are three
NAS devices. Only one of them is dual core.



-----Original Message-----
From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf
Of slackline
Sent: Wednesday, November 18, 2009 10:50 AM
To: nslu2-linux@yahoogroups.com
Subject: [nslu2-linux] Re: atop

--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Hi,
>
> It's running on a QNAP NAS (x86). The feed is
> http://ipkg.nslu2-linux.org/feeds/optware/ts509/cross/stable/Packages.gz.

Ok, so does the failure for the percentages to tally up happen on any other
systems?

Is your desktop computer multi-core? If so do you observe the same behaviour
you've described with atop on that as you do on your QNAP?

This would help identify whether the error is with atop in general or the
specific build you are using.

------------------------------------

Yahoo! Groups Links




--
Against logic there is no armor like ignorance.
- Laurence J. Peter

#24112 From: Don Muller <don@...>
Date: Wed Nov 18, 2009 5:33 pm
Subject: RE: Re: atop
donaldmuller
Offline Offline
Send Email Send Email
 
Sorry my desktop is Windoze. The only devices I have that run Linux are three
NAS devices. Only one of them is dual core.

-----Original Message-----
From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf
Of slackline
Sent: Wednesday, November 18, 2009 10:50 AM
To: nslu2-linux@yahoogroups.com
Subject: [nslu2-linux] Re: atop



--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Hi,
>
> It's running on a QNAP NAS (x86). The feed is
> http://ipkg.nslu2-linux.org/feeds/optware/ts509/cross/stable/Packages.gz.

Ok, so does the failure for the percentages to tally up happen on any other
systems?

Is your desktop computer multi-core?  If so do you observe the same behaviour
you've described with atop on that as you do on your QNAP?

This would help identify whether the error is with atop in general or the
specific build you are using.





------------------------------------

Yahoo! Groups Links

#24111 From: "slackline" <nshephard@...>
Date: Wed Nov 18, 2009 3:50 pm
Subject: Re: atop
slackline
Offline Offline
Send Email Send Email
 
--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Hi,
>
> It's running on a QNAP NAS (x86). The feed is
> http://ipkg.nslu2-linux.org/feeds/optware/ts509/cross/stable/Packages.gz.

Ok, so does the failure for the percentages to tally up happen on any other
systems?

Is your desktop computer multi-core?  If so do you observe the same behaviour
you've described with atop on that as you do on your QNAP?

This would help identify whether the error is with atop in general or the
specific build you are using.

#24110 From: Don Muller <don@...>
Date: Wed Nov 18, 2009 5:10 am
Subject: RE: Re: atop
donaldmuller
Offline Offline
Send Email Send Email
 
Hi,

It's running on a QNAP NAS (x86). The feed is
http://ipkg.nslu2-linux.org/feeds/optware/ts509/cross/stable/Packages.gz.



-----Original Message-----
From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf
Of slackline
Sent: Tuesday, November 17, 2009 11:10 AM
To: nslu2-linux@yahoogroups.com
Subject: [nslu2-linux] Re: atop



--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Is this the correct forum for this or do I need to keep searching?
>
>


Well you've picked a mailing list for the NSLU2 which is a small _single_ CPU
NAS device (although the distros are used on some other NAS's).

What system are you using this on?  Presumably you're using a SlugOS variant as
you've installed an ipkg, but what stream have you obtained that from?

Does this happen on any other systems (i.e. alternative OS's on multi-core
computers) with multiple CPUs that you've tried this on?  If so its a problem
upstream (which by the sounds of it is unlikely to be fixed).



>
> Don
>
>
>
> From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On
Behalf
> Of Don Muller
> Sent: Wednesday, November 11, 2009 3:22 PM
> To: nslu2-linux@yahoogroups.com
> Subject: [nslu2-linux] atop
>
>
>
>
>
>
>
>
> Hi,
>
>
>
> I am posting here because developer/maintainer has told me he does not have
time
> to work on this anymore and I should look elsewhere. So I hope this is the
> correct place.
>
>
>
> I am using atop_1.21-1_i686.ipk and I have discovered a problem with it.  On a
> system with multiple CPUs the CPU (not cpu) values are sum of the cpu values
> when it should be the average.
>
>
>
> CPU | sys      3% | user      0% | irq       0% | idle    196% | wait      0%
|
>
> cpu | sys      2% | user      0% | irq       0% | idle     98% | cpu000 w  0%
|
>
> cpu | sys      1% | user      0% | irq       0% | idle     99% | cpu001 w  0%
|
>
>
>
> For example idle for CPU shows as 196% when it should be 98%. This happens for
> all of the CPU values.
>
>
>
> Don
>




------------------------------------

Yahoo! Groups Links

#24109 From: "slackline" <nshephard@...>
Date: Tue Nov 17, 2009 4:10 pm
Subject: Re: atop
slackline
Offline Offline
Send Email Send Email
 
--- In nslu2-linux@yahoogroups.com, Don Muller <don@...> wrote:
>
> Is this the correct forum for this or do I need to keep searching?
>
>


Well you've picked a mailing list for the NSLU2 which is a small _single_ CPU
NAS device (although the distros are used on some other NAS's).

What system are you using this on?  Presumably you're using a SlugOS variant as
you've installed an ipkg, but what stream have you obtained that from?

Does this happen on any other systems (i.e. alternative OS's on multi-core
computers) with multiple CPUs that you've tried this on?  If so its a problem
upstream (which by the sounds of it is unlikely to be fixed).



>
> Don
>
>
>
> From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On
Behalf
> Of Don Muller
> Sent: Wednesday, November 11, 2009 3:22 PM
> To: nslu2-linux@yahoogroups.com
> Subject: [nslu2-linux] atop
>
>
>
>
>
>
>
>
> Hi,
>
>
>
> I am posting here because developer/maintainer has told me he does not have
time
> to work on this anymore and I should look elsewhere. So I hope this is the
> correct place.
>
>
>
> I am using atop_1.21-1_i686.ipk and I have discovered a problem with it.  On a
> system with multiple CPUs the CPU (not cpu) values are sum of the cpu values
> when it should be the average.
>
>
>
> CPU | sys      3% | user      0% | irq       0% | idle    196% | wait      0%
|
>
> cpu | sys      2% | user      0% | irq       0% | idle     98% | cpu000 w  0%
|
>
> cpu | sys      1% | user      0% | irq       0% | idle     99% | cpu001 w  0%
|
>
>
>
> For example idle for CPU shows as 196% when it should be 98%. This happens for
> all of the CPU values.
>
>
>
> Don
>

#24108 From: "slackline" <nshephard@...>
Date: Tue Nov 17, 2009 4:03 pm
Subject: Re: stream media to PS3
slackline
Offline Offline
Send Email Send Email
 
--- In nslu2-linux@yahoogroups.com, "kristoffer_pettersson"
<kristoffer_pettersson@...> wrote:
>
> Hi!
>
> I have successfully installed uShare and it works like a charm for pictures
and mp3.
>
> Is there a way to convert/stream iso formats so that the ps3 can see them?

You won't be able to do this on the fly as the NSLU2 just doesn't have the oomph
required, even if you've added more RAM.  Your best bet is to rip the ISO on
your computer into a format that the PS3 supports then up it to your NSLU2,
since usuallly (well at least the way I do it) I will actually mount an ISO that
I've got on my hard-drive (as though it were a physical DVD) and then watch it.

#24107 From: vasanag <vasanag@...>
Date: Tue Nov 17, 2009 3:58 pm
Subject: greek filenames problem - Unslung
vasanag@...
Send Email Send Email
 
Gurus,

I have the following problem with greek filenames.

* I have a USB flash formatted to ext3.
* When I connecting it to my NSLU2 running UNslung 6.10, I can share it
and access through my network using SAMBA.  In my network I have both
Windows and Ubuntu PCs.
* If I remove the flash from the NSLU2 and plug it to the Ubuntu machine
then the Greek filenames appear like ???????? together with a message
saying (invalid encoding)

Do you have any idea anout this?

tia

vasanag

#24106 From: "kristoffer_pettersson" <kristoffer_pettersson@...>
Date: Tue Nov 17, 2009 3:34 pm
Subject: stream media to PS3
kristoffer_p...
Offline Offline
Send Email Send Email
 
Hi!

I have successfully installed uShare and it works like a charm for pictures and
mp3.

Is there a way to convert/stream iso formats so that the ps3 can see them?

BRG KP

#24105 From: Don Muller <don@...>
Date: Tue Nov 17, 2009 4:05 am
Subject: RE: atop
donaldmuller
Offline Offline
Send Email Send Email
 

Is this the correct forum for this or do I need to keep searching?

 

Don

 

From: nslu2-linux@yahoogroups.com [mailto:nslu2-linux@yahoogroups.com] On Behalf Of Don Muller
Sent: Wednesday, November 11, 2009 3:22 PM
To: nslu2-linux@yahoogroups.com
Subject: [nslu2-linux] atop

 




Hi,

 

I am posting here because developer/maintainer has told me he does not have time to work on this anymore and I should look elsewhere. So I hope this is the correct place.

 

I am using atop_1.21-1_i686.ipk and I have discovered a problem with it.  On a system with multiple CPUs the CPU (not cpu) values are sum of the cpu values when it should be the average.

 

CPU | sys      3% | user      0% | irq       0% | idle    196% | wait      0% |

cpu | sys      2% | user      0% | irq       0% | idle     98% | cpu000 w  0% |

cpu | sys      1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |

 

For example idle for CPU shows as 196% when it should be 98%. This happens for all of the CPU values.

 

Don





#24104 From: "Brian" <b88zhou@...>
Date: Sun Nov 15, 2009 6:50 am
Subject: Re: irssi: symbol lookup error: irssi: undefined symbol: PL_perl_destruct_level
brian_zhou
Offline Offline
Send Email Send Email
 
Sorry for the breakage, I was trying to build perl with useithreads.
Just committed http://trac.nslu2-linux.org/optware/changeset/10881
Please be patient as it'll take up to 10-12 hours before the new ipk shows up in
the feed.

-Brian

--- In nslu2-linux@yahoogroups.com, "timezlicer" <timezlicer@...> wrote:
>
> irssi refuse to start and throws this error message
> happened after upgrading packages
> complete list of packages below
>
> any help will be much appreciated :-)
>
> aria2 - 1.4.1-1 - A utility for downloading files. The supported protocols are
HTTP(S), FTP, BitTorrent  (DHT, PEX, MSE/PE), and Metalink.
> bash - 3.2.49-1 - A bourne style shell
> bzip2 - 1.0.5-2 - Very high-quality data compression program
> c-ares - 1.6.0-1 - C library that performs DNS requests and name resolves
asynchronously
> diffutils - 2.8.1-6 - contains gnu diff, cmp, sdiff and diff3 to display
differences between and among text files
> elinks - 0.11.7-1 - Full-Featured Text WWW Browser
> expat - 2.0.1-1 - XML Parser library
> freetype - 2.3.6-1 - Free truetype library
> gconv-modules - 2.3.6-1 - Provides gconv modules missing from the firmware. 
These are used by glibc iconv() implementation.
> gdbm - 1.8.3-2 - GNU dbm is a set of database routines that use extensible
hashing. It works similar to the standard UNIX dbm routines.
> glib - 2.20.4-1 - The GLib library of C routines.
> imagemagick - 6.5.5.10-1 - A set of image processing utilities.
> irssi - 0.8.14-1 - A terminal based IRC client for UNIX systems.
> libcurl - 7.19.7-1 - Curl is a command line tool for transferring files with
URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FI
> libdb - 4.2.52-3 - Berkeley DB Libraries
> libidn - 1.14-1 - GNU Libidn is an implementation of the Stringprep, Punycode
and IDNA specifications defined by the IETF Internationalized Domai
> libjpeg - 6b-3 - collection of jpeg tools
> liblcms - 1.15-1 - A small-footprint, speed optimized color management engine.
> libpng - 1.2.40-1 - Portable Network Graphics Libraries
> libsigc++ - 2.2.3-1 - libsigc++ implements a typesafe callback system for
standard C++.
> libstdc++ - 6.0.3-6 - Standard C++ library, needed for dynamically linked C++
programs
> libtiff - 3.9.2-1 - Tag Image File Format Libraries
> libtool - 1.5.26-1 - Library tools.
> libtorrent - 0.12.5-2 - libtorrent is a BitTorrent library with a focus on
high performance and good code.
> libxml2 - 2.7.6-1 - Libxml2 is the XML C parser and toolkit developed for the
Gnome project.
> ncurses - 5.7-1 - NCurses libraries
> ncursesw - 5.7-1 - NCurses libraries with wide char support.
> openssl - 0.9.7m-5 - Openssl provides the ssl implementation in libraries
libcrypto and libssl, and is needed by many other applications and librari
> ossp-js - 1.6.20070208-1 - a stand-alone distribution of the JavaScript (JS)
programming language reference implementation from Mozilla.
> p7zip - 9.04-1 - Command line version of 7-zip for POSIX systems.
> perl - 5.8.8-21 - Practical Extraction and Report Language.
> polipo - 1.0.4-1 - Polipo is a small and fast caching web proxy.
> py25-pil - 1.1.6-3 - The Python Imaging Library (PIL) adds image processing
capabilities to your Python interpreter.
> python - 2.5-1 - This is a package that sets up the default python.
> python25 - 2.5.4-2 - Python is an interpreted, interactive, object-oriented
programming language.
> readline - 6.0-1 - The GNU Readline library provides a set of functions for
use by applications that allow users to edit command lines as they are
> recode - 3.6-1 - The recode library converts files between character sets and
usages.
> rtorrent - 0.8.5-1 - rtorrent is a BitTorrent client for ncurses, using the
libtorrent library.
> screen - 4.0.3-2 - A screen manager that supports multiple logins on single
terminal
> sqlite - 3.6.20-1 - SQLite is a small C library that implements a
self-contained, embeddable, zero-configuration SQL database engine.
> termcap - 1.3.1-2 - Terminal emulation library
> tesseract-ocr - 2.03-3 - An OCR Engine
> tesseract-ocr-lang-eng - 2.03-3 - An OCR Engine, eng language files
> unrar - 3.9.6-1 - unrar is an application that can decompress files and
archives created using the RAR compression scheme
> wget - 1.12-2 - A network utility to retrieve files from the Web
> xmlrpc-c - 1.11.00-3 - A library providing modular implementation of XML-RPC
for C and C++.
> zlib - 1.2.3-3 - zlib is a library implementing the 'deflate' compression
system.
>

#24103 From: "timezlicer" <timezlicer@...>
Date: Sun Nov 15, 2009 12:10 am
Subject: irssi: symbol lookup error: irssi: undefined symbol: PL_perl_destruct_level
timezlicer
Offline Offline
Send Email Send Email
 
irssi refuse to start and throws this error message
happened after upgrading packages
complete list of packages below

any help will be much appreciated :-)

aria2 - 1.4.1-1 - A utility for downloading files. The supported protocols are
HTTP(S), FTP, BitTorrent  (DHT, PEX, MSE/PE), and Metalink.
bash - 3.2.49-1 - A bourne style shell
bzip2 - 1.0.5-2 - Very high-quality data compression program
c-ares - 1.6.0-1 - C library that performs DNS requests and name resolves
asynchronously
diffutils - 2.8.1-6 - contains gnu diff, cmp, sdiff and diff3 to display
differences between and among text files
elinks - 0.11.7-1 - Full-Featured Text WWW Browser
expat - 2.0.1-1 - XML Parser library
freetype - 2.3.6-1 - Free truetype library
gconv-modules - 2.3.6-1 - Provides gconv modules missing from the firmware. 
These are used by glibc iconv() implementation.
gdbm - 1.8.3-2 - GNU dbm is a set of database routines that use extensible
hashing. It works similar to the standard UNIX dbm routines.
glib - 2.20.4-1 - The GLib library of C routines.
imagemagick - 6.5.5.10-1 - A set of image processing utilities.
irssi - 0.8.14-1 - A terminal based IRC client for UNIX systems.
libcurl - 7.19.7-1 - Curl is a command line tool for transferring files with URL
syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FI
libdb - 4.2.52-3 - Berkeley DB Libraries
libidn - 1.14-1 - GNU Libidn is an implementation of the Stringprep, Punycode
and IDNA specifications defined by the IETF Internationalized Domai
libjpeg - 6b-3 - collection of jpeg tools
liblcms - 1.15-1 - A small-footprint, speed optimized color management engine.
libpng - 1.2.40-1 - Portable Network Graphics Libraries
libsigc++ - 2.2.3-1 - libsigc++ implements a typesafe callback system for
standard C++.
libstdc++ - 6.0.3-6 - Standard C++ library, needed for dynamically linked C++
programs
libtiff - 3.9.2-1 - Tag Image File Format Libraries
libtool - 1.5.26-1 - Library tools.
libtorrent - 0.12.5-2 - libtorrent is a BitTorrent library with a focus on high
performance and good code.
libxml2 - 2.7.6-1 - Libxml2 is the XML C parser and toolkit developed for the
Gnome project.
ncurses - 5.7-1 - NCurses libraries
ncursesw - 5.7-1 - NCurses libraries with wide char support.
openssl - 0.9.7m-5 - Openssl provides the ssl implementation in libraries
libcrypto and libssl, and is needed by many other applications and librari
ossp-js - 1.6.20070208-1 - a stand-alone distribution of the JavaScript (JS)
programming language reference implementation from Mozilla.
p7zip - 9.04-1 - Command line version of 7-zip for POSIX systems.
perl - 5.8.8-21 - Practical Extraction and Report Language.
polipo - 1.0.4-1 - Polipo is a small and fast caching web proxy.
py25-pil - 1.1.6-3 - The Python Imaging Library (PIL) adds image processing
capabilities to your Python interpreter.
python - 2.5-1 - This is a package that sets up the default python.
python25 - 2.5.4-2 - Python is an interpreted, interactive, object-oriented
programming language.
readline - 6.0-1 - The GNU Readline library provides a set of functions for use
by applications that allow users to edit command lines as they are
recode - 3.6-1 - The recode library converts files between character sets and
usages.
rtorrent - 0.8.5-1 - rtorrent is a BitTorrent client for ncurses, using the
libtorrent library.
screen - 4.0.3-2 - A screen manager that supports multiple logins on single
terminal
sqlite - 3.6.20-1 - SQLite is a small C library that implements a
self-contained, embeddable, zero-configuration SQL database engine.
termcap - 1.3.1-2 - Terminal emulation library
tesseract-ocr - 2.03-3 - An OCR Engine
tesseract-ocr-lang-eng - 2.03-3 - An OCR Engine, eng language files
unrar - 3.9.6-1 - unrar is an application that can decompress files and archives
created using the RAR compression scheme
wget - 1.12-2 - A network utility to retrieve files from the Web
xmlrpc-c - 1.11.00-3 - A library providing modular implementation of XML-RPC for
C and C++.
zlib - 1.2.3-3 - zlib is a library implementing the 'deflate' compression
system.

#24102 From: Don Muller <don@...>
Date: Wed Nov 11, 2009 8:21 pm
Subject: atop
donaldmuller
Offline Offline
Send Email Send Email
 

Hi,

 

I am posting here because developer/maintainer has told me he does not have time to work on this anymore and I should look elsewhere. So I hope this is the correct place.

 

I am using atop_1.21-1_i686.ipk and I have discovered a problem with it.  On a system with multiple CPUs the CPU (not cpu) values are sum of the cpu values when it should be the average.

 

CPU | sys      3% | user      0% | irq       0% | idle    196% | wait      0% |

cpu | sys      2% | user      0% | irq       0% | idle     98% | cpu000 w  0% |

cpu | sys      1% | user      0% | irq       0% | idle     99% | cpu001 w  0% |

 

For example idle for CPU shows as 196% when it should be 98%. This happens for all of the CPU values.

 

Don


#24101 From: "Elias" <eliasll@...>
Date: Tue Nov 10, 2009 10:07 pm
Subject: Re: Missing /dev/disk directory!
yhoo_does_my...
Offline Offline
Send Email Send Email
 
Thanx Mike! blkid and mount -L were all the tools I needed after all..

--- In nslu2-linux@yahoogroups.com, Mike Westerhof <mwester@...> wrote:
>
> Elias wrote:
> > Then perhaps my question should be a different one.
> >
> ...
> > What I would like to do on my slug is to mount a partition based on its UUID
or label, and without these dirs that seems impossible. Or perhaps there's
another way?
> The mount command can mount a filesystem by either UUID or label.  If
> your particular SlugOS version doesn't support that, then you may have
> to upgrade to a more recent version - but see what options are supported
> by the mount command first.
>
> Note that the "pseudo-auto-mounter" on SlugOS systems (which is a udev
> script that mounts a disk on /media/sd<something>) will usually get in
> the way when you do this.  You'll probably want to disable that. Add
> "sd*" to the blacklist file located somewhere in the /etc/udev directory.
>
> -Mike (mwester)
>

#24100 From: "reuter.rudolf" <reuterru@...>
Date: Tue Nov 10, 2009 7:03 pm
Subject: Re: package gnuplot-X11 in SlugOS 5.3 opkg missing
reuter.rudolf
Offline Offline
Send Email Send Email
 
Hello Brian,
after I installed "gnuplot" and "gnuplot-x11" from my cross environment I got
the "png" terminal working.
Now the next problem, "freetype" support was not compiled in the "gd" library.
In the file "slug/openembedded/packages/gd/gd_2.0.33.bb" I saw the line
"--without freetype \".
I changed the line to "--with freetype=${STAGING_LIBDIR}/.. \".
Then I tried to build with "make slugos-packages" - no success.
Next, I deleted all "gd*" stamps in "slugos/tmp/stamps/armv5teb-linux-gnueabi"
and tried again with "make slugos-packages" - no success.
Next, I tried in "slugos" "./setup-env;bb -b
openembedded/packages/gd/gd_2.0.33.bb". The answer was "The program 'bb' is
currently not installed".
Please give me a hint how to "build" myself a new "gd" package with freetype
support, or provide in the SlugOS5 repository a new "gd" version with included
"freetype" support.

Best regards, Rudolf
p.s. it looks to me, that in the SlugOS5 repository a lot of changes are made
compared to the SlugOS 4.8 repository.

--- In nslu2-linux@yahoogroups.com, "reuter.rudolf" <reuterru@...> wrote:
>
>
>
> Thank you Brian for your quick help.
> I have learned now to setup a fresh SlugOS5 in order to avoid a mixup of
packages.
> Regards, Rudolf
>
> --- In nslu2-linux@yahoogroups.com, "Brian" <b88zhou@> wrote:
> >
> > Don't ever mix OE ipkg's and optware ipk's. Don't use optware on SlugOS5
unless you know how to cleanly separate them.
> >
> > SlugOS5 uses /usr/bin/opkg and installs packages to /usr.
> >
> > Optware uses /opt/bin/ipkg-opt and installs packages to /opt. I know some
users previously alias /opt/bin/ipkg-opt as opkg, please don't do that.
> >
> > -Brian
> >
> > --- In nslu2-linux@yahoogroups.com, "reuter.rudolf" <reuterru@> wrote:
> > >
> > > Hello Brian,
> > >
> > > I just tried to port my application
http://rudiswiki.homelinux.org:8080/wiki/HeizungWebcam from SlugOS version 4.8
to 5.3.
> > > There I need the program "gnuplot" in order to generate a PNG graphic. I
installed with opkg the package "gnuplot", which I found under /opt/bin/gnuplot
(1.124.492 bytes, 31.05.2009), because it was not available under ipkg.
Unfortunately it did not support the terminal PNG, which the previous version
under SlugOS 4.8 supported /usr/bin/gnuplot (2.542.489 bytes, 17.01.2009).
> > > I have seen that the package "gnuplot-X11" is missing in SlugOS 5.3 opkg.
> > > Because I had to compile a special driver (webcam) I setup  the
openembedded environment under Ubuntu (2009-03-07). There I found now all
gnuplot packages, also gnuplot-X11. To my surprise they are all setup in ipkg
for /usr/bin, instead of /opt/bin.
> > >
> > > What is the reason for changing the path /usr/bin to /opt/bin and is it
possible to mix both ipkg packages without problem?
> > >
> > > With best regards from a confused user,
> > > Rudolf
> > >
> >
>

#24099 From: "reuter.rudolf" <reuterru@...>
Date: Tue Nov 10, 2009 7:05 am
Subject: Re: package gnuplot-X11 in SlugOS 5.3 opkg missing
reuter.rudolf
Offline Offline
Send Email Send Email
 
Thank you Brian for your quick help.
I have learned now to setup a fresh SlugOS5 in order to avoid a mixup of
packages.
Regards, Rudolf

--- In nslu2-linux@yahoogroups.com, "Brian" <b88zhou@...> wrote:
>
> Don't ever mix OE ipkg's and optware ipk's. Don't use optware on SlugOS5
unless you know how to cleanly separate them.
>
> SlugOS5 uses /usr/bin/opkg and installs packages to /usr.
>
> Optware uses /opt/bin/ipkg-opt and installs packages to /opt. I know some
users previously alias /opt/bin/ipkg-opt as opkg, please don't do that.
>
> -Brian
>
> --- In nslu2-linux@yahoogroups.com, "reuter.rudolf" <reuterru@> wrote:
> >
> > Hello Brian,
> >
> > I just tried to port my application
http://rudiswiki.homelinux.org:8080/wiki/HeizungWebcam from SlugOS version 4.8
to 5.3.
> > There I need the program "gnuplot" in order to generate a PNG graphic. I
installed with opkg the package "gnuplot", which I found under /opt/bin/gnuplot
(1.124.492 bytes, 31.05.2009), because it was not available under ipkg.
Unfortunately it did not support the terminal PNG, which the previous version
under SlugOS 4.8 supported /usr/bin/gnuplot (2.542.489 bytes, 17.01.2009).
> > I have seen that the package "gnuplot-X11" is missing in SlugOS 5.3 opkg.
> > Because I had to compile a special driver (webcam) I setup  the openembedded
environment under Ubuntu (2009-03-07). There I found now all gnuplot packages,
also gnuplot-X11. To my surprise they are all setup in ipkg for /usr/bin,
instead of /opt/bin.
> >
> > What is the reason for changing the path /usr/bin to /opt/bin and is it
possible to mix both ipkg packages without problem?
> >
> > With best regards from a confused user,
> > Rudolf
> >
>

#24098 From: "Brian" <b88zhou@...>
Date: Tue Nov 10, 2009 3:11 am
Subject: Re: package gnuplot-X11 in SlugOS 5.3 opkg missing
brian_zhou
Offline Offline
Send Email Send Email
 
Don't ever mix OE ipkg's and optware ipk's. Don't use optware on SlugOS5 unless
you know how to cleanly separate them.

SlugOS5 uses /usr/bin/opkg and installs packages to /usr.

Optware uses /opt/bin/ipkg-opt and installs packages to /opt. I know some users
previously alias /opt/bin/ipkg-opt as opkg, please don't do that.

-Brian

--- In nslu2-linux@yahoogroups.com, "reuter.rudolf" <reuterru@...> wrote:
>
> Hello Brian,
>
> I just tried to port my application
http://rudiswiki.homelinux.org:8080/wiki/HeizungWebcam from SlugOS version 4.8
to 5.3.
> There I need the program "gnuplot" in order to generate a PNG graphic. I
installed with opkg the package "gnuplot", which I found under /opt/bin/gnuplot
(1.124.492 bytes, 31.05.2009), because it was not available under ipkg.
Unfortunately it did not support the terminal PNG, which the previous version
under SlugOS 4.8 supported /usr/bin/gnuplot (2.542.489 bytes, 17.01.2009).
> I have seen that the package "gnuplot-X11" is missing in SlugOS 5.3 opkg.
> Because I had to compile a special driver (webcam) I setup  the openembedded
environment under Ubuntu (2009-03-07). There I found now all gnuplot packages,
also gnuplot-X11. To my surprise they are all setup in ipkg for /usr/bin,
instead of /opt/bin.
>
> What is the reason for changing the path /usr/bin to /opt/bin and is it
possible to mix both ipkg packages without problem?
>
> With best regards from a confused user,
> Rudolf
>

#24097 From: "reuter.rudolf" <reuterru@...>
Date: Mon Nov 9, 2009 3:30 pm
Subject: package gnuplot-X11 in SlugOS 5.3 opkg missing
reuter.rudolf
Offline Offline
Send Email Send Email
 
Hello Brian,

I just tried to port my application
http://rudiswiki.homelinux.org:8080/wiki/HeizungWebcam from SlugOS version 4.8
to 5.3.
There I need the program "gnuplot" in order to generate a PNG graphic. I
installed with opkg the package "gnuplot", which I found under /opt/bin/gnuplot
(1.124.492 bytes, 31.05.2009), because it was not available under ipkg.
Unfortunately it did not support the terminal PNG, which the previous version
under SlugOS 4.8 supported /usr/bin/gnuplot (2.542.489 bytes, 17.01.2009).
I have seen that the package "gnuplot-X11" is missing in SlugOS 5.3 opkg.
Because I had to compile a special driver (webcam) I setup  the openembedded
environment under Ubuntu (2009-03-07). There I found now all gnuplot packages,
also gnuplot-X11. To my surprise they are all setup in ipkg for /usr/bin,
instead of /opt/bin.

What is the reason for changing the path /usr/bin to /opt/bin and is it possible
to mix both ipkg packages without problem?

With best regards from a confused user,
Rudolf

#24096 From: Mike Westerhof <mwester@...>
Date: Mon Nov 9, 2009 1:55 am
Subject: Re: Re: Missing /dev/disk directory!
mjwest61
Offline Offline
Send Email Send Email
 
Elias wrote:
> Then perhaps my question should be a different one.
>
...
> What I would like to do on my slug is to mount a partition based on its UUID
or label, and without these dirs that seems impossible. Or perhaps there's
another way?
The mount command can mount a filesystem by either UUID or label.  If
your particular SlugOS version doesn't support that, then you may have
to upgrade to a more recent version - but see what options are supported
by the mount command first.

Note that the "pseudo-auto-mounter" on SlugOS systems (which is a udev
script that mounts a disk on /media/sd<something>) will usually get in
the way when you do this.  You'll probably want to disable that. Add
"sd*" to the blacklist file located somewhere in the /etc/udev directory.

-Mike (mwester)

Messages 24096 - 24125 of 24171   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

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