Tiny Core Linux
Tiny Core Extensions => TCE Talk => Topic started by: Darro on February 04, 2013, 09:13:36 AM
-
hey all ,
i have searched high and low .. and i cannot find this .. is it possible to run gns3 ( not graphical but command line , dynagen ) on tinycore ?
there are a ton of web pages on how to use tinycore as a guest/host on gns3 ..but i am trying to create a machine with dynagen installed in it
any help appreciated.
thanx all
-
ok got the dynagen to work
but cannot for the dynamips
tc@box:~$ ./dynamips
./dynamips: /lib/libc.so.6: version `GLIBC_2.15' not found (required by ./dynamips)
libc.so.6 is pointing to /lib/libc-2.13.so
and i need it to point to ( copied over ) /lib/libc-2.15.so
-
Where does the binary originate from?
Some other system? Or binary distribution by manufacturer?
-
Hi Darro
Maybe:
LD_PRELOAD=/lib/libc-2.15.so ./dynamips
-
thanx .. i will give it shot rich
tinypoodle its from ubuntu 12.10
i am hoping i can run it
looked into compiling for tinycore and got the setup going but gave up after missing a lot of header files
followed this
https://github.com/puppetlabs/Razor-Microkernel/wiki/Building-your-own-TCL-Extension
-
tc@box:~$ LD_PRELOAD=/lib/libc-2.15.so ./dynamips
Segmentation fault
:(
i REALLY wanted to make this work ..any suggestions .. tinycore is so light weight would have been perfect for my project
thanx guys
-
Hi Darro
I guess the first thing I would do is run:
ldd ./dynamipsto see if any other libraries are missing or the wrong versions.
You might have to create a self contained package, like an SCM. I think they use something like:
export LD_LIBRARY_PATH=/Path/To/SCM/Libsto force a package to use a different set of libraries. It's also possible that dynamips can't be set up to run without
installing a newer libc for the system library, I don't know.
-
Well, if you must cherry pick dynamically linked binaries compiled for a different system and it turns out they require a newer libc version, then the logical thing would be to look for older binary versions being compatible with the target system.
That said, you have nothing to lose to post an extension request in the appropriate subforum ;)