<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux">
    <title>gmane.comp.misc.nslu2.linux</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25199"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25198"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25197"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25196"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25195"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25194"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25193"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25192"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25191"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25190"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25189"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25188"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25187"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25186"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25185"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25184"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25183"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25182"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25181"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25180"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25199">
    <title>Re: Catching SIGSEGV</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25199</link>
    <description>&lt;pre&gt;

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, David Given &amp;lt;dg&amp;lt; at &amp;gt;...&amp;gt; wrote:

Yes, that is what I thought, and the thread in question was the only one allowed to see the signals (the prime purpose off that thread is to catch people who suddenly press buttons). But it seems that SIGSEGV (unless generated externally) is only sent to the thread it happened in, or maybe its parents.


Actually, it is doing better than I thought. Here is some actual output:

./heat(pthread_create+0x710)[0x9da0]
/lib/libc.so.6(__default_rt_sa_restorer_v2+0x0)[0x4010bcf0]
/lib/libc.so.6(_IO_printf+0x34)[0x40120dfc]
./heat[0x14a18]
./heat[0x17274]
./heat(pthread_create+0x680)[0x9d10]

The addresses within [...] are indeed the addresses of code being obeyed all down the stack. But [0x9da0] is NOT within pthread_create (nm shows it is actually within my handler). Likewise [0x9d10] is within 'main', and [0x14a18] and [0x17274] are at identifiable places which gave me the clue as to where the fault was happening (though the&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-21T09:43:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25198">
    <title>Re: Re: Catching SIGSEGV</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25198</link>
    <description>&lt;pre&gt;[...]

This is definitely getting out of my comfort zone (signals and threads
mix like oil and cats), but I was under the impression that outside
signals to sent to a single thread *at random* that had the signal
unblocked? So you control which thread you want to receive the signals
by blocking them from everywhere else.

[...]
[...]

I've tried the test program in the backtrace man page on my armhf box,
and it doesn't work. I'm afraid that it's possible that backtrace simply
doesn't work on ARM.


You may be treading on thin ice here. Depending on what causes the seg
fault, it's quite possible that the system will be in a bad state ---
for example, if you call fwrite(), and the buffer is unreadable, then
it's entirely likely that the signal will be thrown while it's in the
middle of modifying the stdio state. Which means that trying to use
stdio again will hang, crash, etc. The magic keyword to search for is
'async signal safe'.

(Related: there is a very limited list of operations that you can safely
do in&lt;/pre&gt;</description>
    <dc:creator>David Given</dc:creator>
    <dc:date>2012-05-18T23:20:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25197">
    <title>Re: Catching SIGSEGV</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25197</link>
    <description>&lt;pre&gt;

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, David Given &amp;lt;dg&amp;lt; at &amp;gt;...&amp;gt; wrote:


Ah! I had thought that all signals would be passed to all threads (which is indeed the case for signals arising from outside).

Yes, I have now set up a sigaction-type handler in main(), and it seems to be inherited by processes created subsequently to that. It sort of works, but I need to know where the SIGSEGV came from, in order to know where to look for the bug. Here is my current handler:

void errHandler(int signum, siginfo_t *info, void *ptr) { 
        int count = backtrace( tracePtrs, 100 ); 
        backtrace_symbols_fd(tracePtrs, count, 2); 
        fatal("Heat failed with %s: si_code=%d", 
              strsignal(signum), info-&amp;gt;si_code); 
} 

         errAction.sa_sigaction = errHandler;
        errAction.sa_flags = SA_SIGINFO;
       sigaction(SIGSEGV, &amp;amp;errAction, NULL);
        sigaction(SIGBUS, &amp;amp;errAction, NULL);
        sigaction(SIGILL, &amp;amp;errAction, NULL);
        sigaction(SIGFPE, &amp;amp;errAction, NULL);
 &lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-18T22:09:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25196">
    <title>Re: Catching SIGSEGV</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25196</link>
    <description>&lt;pre&gt;[...]

I'm not quite sure what you're trying to do here --- AIUI sigwait()
blocks until a signal *for the blocked thread* is received, so no code
that can generate the signal will be run... (unless you send it manually
from another thread).

If you're trying to catch a signal thrown by code in a different thread,
then I don't think that will work.

The simplest approach is to just register a SIGSEGV signal handler in
the thread that's going to be doing the work. Then, when the signal is
thrown, your handler will run. If you want to do the work in a different
thread, then you'll need some sort of IPC between threads (but beware
that you can only run a small subset of functions safely from inside a
signal handler).

A more complicated and slower but much more flexible approach is to use
ptrace to monitor the running thread; when a signal is thrown, it will
be suspended and your monitor will be sent a message. It all depends
what you want to do.

(Also, check out libsigsegv: http://libsigsegv.sourceforge.net)

&lt;/pre&gt;</description>
    <dc:creator>David Given</dc:creator>
    <dc:date>2012-05-17T22:12:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25195">
    <title>CPAN fix for perl for optware</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25195</link>
    <description>&lt;pre&gt;I have optware on my router with 32mb and I got perl but the module I wanted wasn't available via ipkg so I went to use CPAN to find it wouldn't work...
Even if I did configure it correctly (i'm 99% sure i did since i had expert help) it would have taken days to do anything as using swap made it slooooooow) I started off with this site http://www.nslu2-linux.org/wiki/HowTo/ConfigureCPAN and that didn't cut it.

I moved over to using cpanm - https://github.com/miyagawa/cpanminus
but that gave an error so i did this

https://github.com/shadowcat-mst/cpanminus/commit/9eba7dd0af9e63a4cadde8b0f5483a43a5e63deb **** credit goes to wtf911(myself) and mst*****

With that cpanm works good and you just need the proper ipkgs prior to using it...

i can't say what if all of these you need:

binutils
expat
glib
grep
gzip
less
libc6-unslung
libdb
libgcc
libxml2
lynx
man
ncftp
ncursesw
openssh
openssl-dev
readline
sqlite
tz
unslung-devel
unslung-feeds
update-modules
which
zlib

but on top of those you want:

tar
wget
make
i&lt;/pre&gt;</description>
    <dc:creator>markduncan72</dc:creator>
    <dc:date>2012-05-17T17:16:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25194">
    <title>Catching SIGSEGV</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25194</link>
    <description>&lt;pre&gt;I am trying to trap a SIGSEGV (also SIGBUS, SIGILL and SIGFPE, but I have not even managed to generate those yet :-( ).

I can easily get the program to produce a message "Segmentation Violation" on stderr, but noway can I catch it before getting that message.

I have written
        sigemptyset(&amp;amp;set);
        sigaddset(&amp;amp;set, SIGUSR1);
        sigaddset(&amp;amp;set, SIGUSR2);
        sigaddset(&amp;amp;set, SIGTERM);
        sigaddset(&amp;amp;set, SIGINT);
        sigaddset(&amp;amp;set, SIGSEGV);
        sigaddset(&amp;amp;set, SIGBUS);
        sigaddset(&amp;amp;set, SIGILL);
        sigaddset(&amp;amp;set, SIGFPE);
        sigaddset(&amp;amp;set, SIGSYS); 
and I have created a pthread which contains
                sigwait(&amp;amp;set, &amp;amp;signal);
printf("Display signal %d\n", signal);
                switch (signal) {
                case SIGSEGV:
                case SIGBUS:
                case SIGILL:
                case SIGFPE:
                case SIGSYS:
                        fatal("Heat failed: %s", strerror(errno));
                case SIGTERM:
                c&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-17T16:59:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25193">
    <title>I2C and kernel mutexes</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25193</link>
    <description>&lt;pre&gt;Is the I2C implementation in Slugos5.3 based upon the i2c-dev.c and i2c-core.c and i2c-algo-bit.c Linux drivers?

I use the I2C_RDWR ioctl call to send a bunch of messages to the i2c bus. According to the source code of i2c_transfer in i2c-dev.c ( am looking at linux-2.6.21.7, but I don't suppose more recent linuces are much different), a kernel mutex is set whilst the whole bunch is sent, and thus the bunch can be regarded as an atomic action.

But what I am seeing does not support this view. I have a variety of devices on my i2c bus, including an ADC and an EEPROM. If I run two programs, one of which is polling the ADC vigorously, and one is reading lots of stuff from the EEPROM, then from time to time the ADC gets confused and returns results from the wrong channel (or which it has four). So it would seem that a bunch of messages for the EEPROM is getting co-mingled with a bunch of messages for the ADC, and according to my understanding of the kernel code, that should not happen.

Comments anyone?



----&lt;/pre&gt;</description>
    <dc:creator>clerew5</dc:creator>
    <dc:date>2012-05-17T10:49:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25192">
    <title>Re: MySQL 4.1.22 build fails [SOLVED]</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25192</link>
    <description>&lt;pre&gt;Fajar,

You were right...
Installation of gcc-c++ resolved the issue.

--
Regards,
Sergey

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "tals1975" &amp;lt;tals1975&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-16T12:24:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25191">
    <title>Re: MySQL 4.1.22 build fails</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25191</link>
    <description>&lt;pre&gt;Fajar,

Thanks for your prompt reply. I think the problem is somewhere else, because g++ exists in the toolchain:

cs05q1armel/toolchain/arm-none-linux-gnueabi/gcc-2005q1-glibc-2.3.4/bin/arm-none-linux-gnueabi-g++

Please see this page:
http://bugs.mysql.com/bug.php?id=25576

I'm just trying to re-compile the package (needed for perl-dbd-mysql).
Someone has already compiled it successfully
(the package is available in the repository: http://ipkg.nslu2-linux.org/feeds/optware/cs05q1armel/cross/unstable/mysql_4.1.22-3_arm.ipk

The question is why I can not?

--
Sergey

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "Fajar A. Nugraha" &amp;lt;fajar&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-16T10:41:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25190">
    <title>Re: MySQL 4.1.22 build fails</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25190</link>
    <description>&lt;pre&gt;
Isn't that last line obvious?

You should be able to work around that by installing whatever package
that provides g++.

&lt;/pre&gt;</description>
    <dc:creator>Fajar A. Nugraha</dc:creator>
    <dc:date>2012-05-16T10:23:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25189">
    <title>MySQL 4.1.22 build fails</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25189</link>
    <description>&lt;pre&gt;Hi All,

MySQL 4.1.22 build fails. Can someone have a look at this please?
Original mysql.mk was not modified.

Thank you in advance,
Sergey

source='my_new.cc' object='my_new.o' libtool=no \
DEPDIR=.deps depmode=none /bin/sh ../depcomp \
g++ -DDEFAULT_BASEDIR=\"/opt\" -DDATADIR="\"/opt/var\"" -DDEFAULT_CHARSET_HOME="\"/opt\"" -DSHAREDIR="\"/opt/share/mysql\"" -DHAVE_CONFIG_H -I. -I. -I.. -I../zlib -I../include -I../include -I.    -O -DDBUG_OFF    -c -o my_new.o my_new.cc
../depcomp: line 512: exec: g++: not found
make[4]: *** [my_new.o] Error 127
make[4]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql/mysys'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/tmp/_NEW_optware/optware/host/builds/mysql'
make[1]: *** [/tmp/_NEW_optware/optware/cs05q1armel/host/builds/mysql/.built] Error 2
make[1]: Leaving directory `/tmp/_NEW_optware/optware/cs05q1armel'
make: *** [/tmp/_NEW_optwar&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-16T10:19:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25188">
    <title>LogitechMediaServer_v7.7.2 package request</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25188</link>
    <description>&lt;pre&gt;Hi ALL!

Can someone would be so kind to prepare LogitechMediaServer_v7.7.2 for optware please? However, it is a big piece of job :)

http://downloads.slimdevices.com/LogitechMediaServer_v7.7.2/
http://svn.slimdevices.com/repos/slim/7.7/trunk/vendor/CPAN/

LogitechMediaServer_v7.7.2 supports more players and file formats in comparison with squeezecenter - 7.3.3 supported by optware.

Thank you very much in advance.
Sergey

P.S. I've tried to compile all necessary packages for LogitechMediaServer_v7.7.2. Unfortunately, stuck with libmediascan-0.1:

1] ./slimserver.pl --d_startup
Can't locate loadable object for module Media::Scan in &amp;lt; at &amp;gt;INC


2] (ffmpeg, libexif, libjpeg, libpng, giflib, libbdb are already in stage)


libtool: compile:  /tmp/optware/cs05q1armel/toolchain/arm-none-linux-gnueabi/gcc-2005q1-glibc-2.3.4/bin/arm-none-linux-gnueabi-gcc -DHAVE_CONFIG_H -I. -I.. -O2 -pipe -I/tmp/optware/cs05q1armel/staging/opt/include -Wall -I../include -I/tmp/optware/cs05q1armel/staging/opt/include -g -O2 -MT libmedias&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-14T15:26:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25187">
    <title>Re: perl-dbd-sqlite make file update request [SOLVED]</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25187</link>
    <description>&lt;pre&gt;Thank you!

SVN updated successfully.
I was able to compile and install perl-dbd-sqlite v.1.34_01

Regaeds,
Sergey



--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "tals1975" &amp;lt;tals1975&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-11T07:46:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25186">
    <title>Re: perl-dbd-sqlite make file update request</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25186</link>
    <description>&lt;pre&gt;Thank you for building and uploading of the new version.

Unfortunately, slimserver which I'm trying to start requires version 1.34_1:
./slimserver.pl --d_server
Your locale was detected as C, you may have problems with non-Latin filenames.  Consider changing your LANG variable to the correct locale, i.e. en_US.utf8
DBD::SQLite object version 1.35 does not match bootstrap parameter 1.34_01 at /opt/lib/perl5/5.10.0/arm-linux/DynaLoader.pm line 226.
Compilation failed in require at /root/_test/logitechmediaserver-7.7.2-33893-noCPAN/Slim/Utils/DbCache.pm line 11.


Is it possible to upload updated perl-dbd-sqlite.mk file so I can try to compile it myself?

Thank you,
Sergey

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "tals1975" &amp;lt;tals1975&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-11T07:21:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25185">
    <title>perl-dbd-sqlite make file update request</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25185</link>
    <description>&lt;pre&gt;Hi All,

Please can someone update the following make file?

perl-dbd-sqlite to version 1.35


Unable to build the package: perl-dbd-sqlite due the following problem:


DBI 1.57 is required to configure this module; please install it or upgrade your CPAN/CPANPLUS shell.


However, perl-dbi v.1.620 is in stage

Thank you,
Sergey



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

&lt;/pre&gt;</description>
    <dc:creator>tals1975</dc:creator>
    <dc:date>2012-05-10T15:52:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25184">
    <title>Re: apache - openssl installation (solved)</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25184</link>
    <description>&lt;pre&gt;

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "Brian" &amp;lt;b88zhou&amp;lt; at &amp;gt;...&amp;gt; wrote:

Thanks Brian !
seems it is working ...




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

&lt;/pre&gt;</description>
    <dc:creator>floh0033</dc:creator>
    <dc:date>2012-05-01T07:36:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25183">
    <title>Re: apache - openssl installation</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25183</link>
    <description>&lt;pre&gt;The package has been rebuilt and the latest version is 0.9.7m-6. Please do "ipkg update" and retry.

-Brian

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "floh0033" &amp;lt;mario.althammer&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>Brian</dc:creator>
    <dc:date>2012-04-30T21:49:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25182">
    <title>Re: apache - openssl installation</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25182</link>
    <description>&lt;pre&gt;

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "Brian" &amp;lt;b88zhou&amp;lt; at &amp;gt;...&amp;gt; wrote:

Thanks for your response

Still the same problem this time...

Installing openssl (0.9.7m-5) to root...
Downloading http://ipkg.nslu2-linux.org/feeds/optware/nslu2/cross/stable/openssl_0.9.7m-5_armeb.ipk
wget: server returned error 404: HTTP/1.1 404 Not Found
Nothing to be done





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

&lt;/pre&gt;</description>
    <dc:creator>floh0033</dc:creator>
    <dc:date>2012-04-30T20:06:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25181">
    <title>ipkg update reports "file too short"</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25181</link>
    <description>&lt;pre&gt;Hi all,

I have a GoFlex Home, which is based upon the OpenStora system, which uses ipkg
for package management:
http://www.openstora.com/wiki/index.php?title=Getting_Started#Preparing_to_insta\
ll_software_and_checking_free_space

So I followed the instructions for moving /opt (I moved it to /mnt/eSata/opt)
and have been installing packages.

I cancelled an install process of ipkg and now it reports:

bash-3.2# /opt/bin/ipkg update
/opt/bin/ipkg: error while loading shared libraries: /opt/lib/libipkg.so.0: file
too short

The only way to get around this seems to be a reinstall of ipkg. That's
annoying...

Help?

- Phil


PS here is the results of running 'df':

bash-3.2# df -h
Filesystem Size Used Avail Use% Mounted on
rootfs 212M 196M 16M 93% /
ubi0:rootfs 212M 196M 16M 93% /
none 62M 32K 62M 1% /dev
nodev 62M 36M 26M 59% /var/log
nodev 62M 480K 61M 1% /mnt/tmpfs
nodev 62M 24K 62M 1% /var/lib/php/session
nodev 62M 480K 61M 1% /tmp
nodev 62M 480K 61M 1% /var/run
nodev 62M 480K 61M 1% /var/cache
nodev 62M 48&lt;/pre&gt;</description>
    <dc:creator>theschles</dc:creator>
    <dc:date>2012-04-30T18:52:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25180">
    <title>Re: apache - openssl installation</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25180</link>
    <description>&lt;pre&gt;Should be fixed now.

-Brian

--- In nslu2-linux-hHKSG33TihhbjbujkaE4pw&amp;lt; at &amp;gt;public.gmane.org, "floh0033" &amp;lt;mario.althammer&amp;lt; at &amp;gt;...&amp;gt; wrote:




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

&lt;/pre&gt;</description>
    <dc:creator>Brian</dc:creator>
    <dc:date>2012-04-30T14:38:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25179">
    <title>apache - openssl installation</title>
    <link>http://permalink.gmane.org/gmane.comp.misc.nslu2.linux/25179</link>
    <description>&lt;pre&gt;an error occures during the apache installation on my slug (unslung 6.8)
apache needs  openssl for the install, but the link will be no more present

please could you help me ?



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

&lt;/pre&gt;</description>
    <dc:creator>floh0033</dc:creator>
    <dc:date>2012-04-29T19:03:05</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.misc.nslu2.linux">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.misc.nslu2.linux</link>
  </textinput>
</rdf:RDF>

