Tiny Core Linux

Tiny Core Base => TCB News => Final Releases => Topic started by: Juanito on April 01, 2020, 01:18:06 AM

Title: Tiny Core v11.1
Post by: Juanito on April 01, 2020, 01:18:06 AM
Team Tiny Core is proud to announce the release of Core v11.1
http://www.tinycorelinux.net/11.x/x86/release
http://www.tinycorelinux.net/11.x/x86_64/release

Changelog for 11.1
* tce-size changes from Rich
* busybox-1.31.1-vi.backward_search.patch from Jazzbiker
* removed /usr/bin/uuid
* ldconfig update (x86_64 only) to fix occasional libraries not found error
Title: Re: Tiny Core v11.1
Post by: xor on April 02, 2020, 05:19:09 AM
works well

For the first time, the screen came without entering these commands for "pavucontrol"! :)

Code: [Select]
$ sudo /usr/local/etc/init.d/dbus start
Title: Re: Tiny Core v11.1
Post by: marcelocripe on April 02, 2020, 02:40:52 PM
Hi Juanito and colleagues,

I congratulate the team for updating Tiny Core to version 11.1.

More tests for me to do and learn from the new version.

Lo link: http://www.tinycorelinux.net/11.x/x86_64/release

There is no 64-bit version of Core Plus 11.1, the team does not offer the 64-bit version of Tiny Core Plus 11.1?

In Tiny Core version 11.0 of 32 bits there was no tc-install.

Is there already a tutorial on how to install Tiny Core without the tc-install extension?

Thank you for always answering my questions.

thankful
marcelocripe

Original text in Portuguese, translated into English by Google Translate

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

Olá Juanito e colegas,

Parabenizo a equipe por atualizar o Tiny Core para a versão 11.1.

Mais testes para eu fazer e aprender com a nova versão.

Lo link: http://www.tinycorelinux.net/11.x/x86_64/release

Não tem versão do Core Plus 11.1 64 bits, a equipe não disponibiliza a versão em 64 bits do Tiny Core Plus 11.1?

No Tiny Core versão 11.0 de 32 bits não havia o  tc-install.

Já existe um tutorial de como instalar o Tiny Core sem a extensão tc-install?

Agradeço por sempre responder as minhas dúvidas.

Grato
marcelocripe

Texto original em português, traduzido para inglês por Google Tradutor
Title: Re: Tiny Core v11.1
Post by: Juanito on April 02, 2020, 10:49:10 PM
You are correct, there is no 64-bit version of CorePlus.

Are you saying that there is no tc-install in TinyCore? CorePlus contains both tc-install and tc-install-GUI

If you want to upgrade from 11.0 to 11.1, you can replace the existing core.gz with the new version for 32-bit and with corepure64.gz for 64-bit. These files are available here:

http://www.tinycorelinux.net/11.x/x86/release/distribution_files/
http://www.tinycorelinux.net/11.x/x86_64/release/distribution_files/
Title: Re: Tiny Core v11.1
Post by: u54749 on April 05, 2020, 12:48:41 PM
The new ldconfig has introduced a problem.

I have some 32-bit libraries in /l32 to run 32-bit wine with 32-bit Windows applications.  After an ldconfig run wine can't find the 32 bit libraries anymore.  After a run of the previous ldconfig version the 32-bit libraries are found and wine initializes correctly.  In both cases the 32-bit libraries seem to be correctly recorded in ld.so.cache.

Code: [Select]
~$ cat /etc/ld.so.conf
/usr/local/lib
/l32
~$ sudo ldconfig
~$ wine
wine: error while loading shared libraries: libpthread.so.0: wrong ELF class: ELFCLASS64
~$ ldconfig -p | grep libpthread
        libpthread.so.0 (libc6) => /lib/libpthread.so.0
        libpthread.so.0 (libc6) => /l32/libpthread.so.0
        libpthread-2.30.so (libc6) => /lib/libpthread-2.30.so
        libpthread-2.20.so (libc6) => /l32/libpthread-2.20.so
~$ sudo ./previous_ldconfig
~$ wine
Usage: wine PROGRAM [ARGUMENTS...]   Run the specified program
       wine --help                   Display this help and exit
       wine --version                Output version information and exit
~$ ./previous_ldconfig -p | grep libpthread
        libpthread.so.0 (libc6) => /lib/libpthread.so.0
        libpthread.so.0 (libc6) => /l32/libpthread.so.0
        libpthread-2.30.so (libc6) => /lib/libpthread-2.30.so
        libpthread-2.20.so (libc6) => /l32/libpthread-2.20.so
~$ sudo ldconfig
~$ wine
wine: error while loading shared libraries: libpthread.so.0: wrong ELF class: ELFCLASS64




Title: Re: Tiny Core v11.1
Post by: Juanito on April 05, 2020, 10:30:40 PM
Are you using 32-bit Core or 64-bit CorePure64?

ldconfig was only updated in CorePure64.
Title: Re: Tiny Core v11.1
Post by: u54749 on April 05, 2020, 10:37:55 PM
I use 64-bit but I use the 32-bit version of wine (because the Windows app I use are 32-bit) and so needs some 32-bit libraries to run.   In previous tinycore versions this worked flawlessly but not anymore since the new ldconfig.
Title: Re: Tiny Core v11.1
Post by: Juanito on April 05, 2020, 10:54:31 PM
What happens with the glibc ldconfig in the glibc_apps extension?
Title: Re: Tiny Core v11.1
Post by: u54749 on April 05, 2020, 11:11:20 PM
wine works

Code: [Select]
~$ sudo /tmp/glibc_apps/sbin/ldconfig
~$ wine
Usage: wine PROGRAM [ARGUMENTS...]   Run the specified program
       wine --help                   Display this help and exit
       wine --version                Output version information and exit
~$ /tmp/glibc_apps/sbin/ldconfig -p | grep libpthread
        libpthread.so.0 (libc6,x86-64, OS ABI: Linux 4.19.10) => /lib/libpthread.so.0
        libpthread.so.0 (libc6, OS ABI: Linux 3.8.13) => /l32/libpthread.so.0
        libpthread.so (libc6,x86-64, OS ABI: Linux 4.19.10) => /usr/lib/libpthread.so
Title: Re: Tiny Core v11.1
Post by: Juanito on April 06, 2020, 12:00:44 AM
As loading 32-bit libs wasn't an anticipated use of CorePure64, I'd suggest using ldconfig from glibc_apps then..
Title: Re: Tiny Core v11.1
Post by: aus9 on April 16, 2020, 04:57:58 AM
I have some strangeness with my dot local bin. I hopefully set up a test others could duplicate?
On  64 bit

Code: [Select]
echo $PATH
/home/tc/.local/bin:/usr/local/sbin:/usr/local/bin:/apps/bin:/usr/sbin:/usr/bin:/sbin:/bin:/etc/sysconfig/tcedir/ondemand

tc@box:~$ ls -al $HOME/.local/bin/test
-rwxr-xr-x    1 tc       staff           25 Apr 16 11:48 /home/tc/.local/bin/test

tc@box:~$ .local/bin/test
line 1

tc@box:~$ test

tc@box:~$ cat $HOME/.local/bin/test
#!/bin/sh
echo 'line 1'

tc@box:~$

I was expecting "test" to work at the command line without the full pathway?

any clues?

Title: Re: Tiny Core v11.1
Post by: Rich on April 16, 2020, 05:42:34 AM
Hi aus9
... any clues?
Yes. Since no error message was displayed, there's another  test  program being found. You have  coreutils.tcz  installed and
are executing  /usr/local/bin/test.
Title: Re: Tiny Core v11.1
Post by: andyj on April 16, 2020, 07:04:39 AM
There is also a test in busybox:

Code: [Select]
~$ ls -al $(which test)
lrwxrwxrwx    1 root     root            17 Jan 20  2019 /usr/bin/test -> ../../bin/busybox
Title: Re: Tiny Core v11.1
Post by: Rich on April 16, 2020, 07:20:21 AM
Hi andyj
There is also a test in busybox:
Did not realize that.

In that case, I have  coreutils.tcz  installed ;D:
Code: [Select]
tc@E310:~$ ls -l `which test`
lrwxrwxrwx 1 root root 40 Apr  2 17:03 /usr/local/bin/test -> /tmp/tcloop/coreutils/usr/local/bin/test
tc@E310:~$
Title: Re: Tiny Core v11.1
Post by: curaga on April 16, 2020, 10:13:24 AM
It's a shell builtin. Those take predecence over PATH apps.
Title: Re: Tiny Core v11.1
Post by: aus9 on April 16, 2020, 02:59:06 PM
@Rich

You were correct and I tested poorly.

Code: [Select]
tc@box:~$ mv .local/bin/test  .local/bin/q
tc@box:~$ q
line 1
Title: Re: Tiny Core v11.1
Post by: Juanito on June 27, 2020, 11:29:18 PM
Various (many) firmware-* extensions updated in the x86 and x86_64 repos - thanks to @aus9 for his work on this.
Title: Re: Tiny Core v11.1
Post by: vinikon on October 03, 2020, 06:14:39 PM
Thanks for contribution,

Keep it going,

Vik
Title: Re: Tiny Core v11.1
Post by: ferran on November 13, 2020, 01:10:20 PM
I would like to say that I've TCL Coreplus 11.1 into a USB stick currently running 3 days ago into an Intel CPU with 1.6 Ghz and 3Gb RAM. Right now I've all my hardware well configured and it works fine by the moment.

Congratulations to Tiny Core Team


Title: Re: Tiny Core v11.1
Post by: meo on December 14, 2020, 02:06:39 PM
Hi guys!

I've been in hybernation for some years (I still have the 7.2 version of TC and I've tried it on a win laptop and it works). Congrats to all of you who have stayed with the project pushing it forward. A big hand to all of you and a suggestion, isn't it time that someone wrote a book about TC? I've forgotten so much about the system and configuration so I feel kind of lost, I must admit. A book would help others to appreciate this wonderful distro! Just a thought.

Sincerely Yours,
meo
Title: Re: Tiny Core v11.1
Post by: meo on December 14, 2020, 02:23:42 PM
Hi again!

I remember the book that has been written (like 7 years ago) but I don't know if it has been published as a hard copy. I would be the first in line to buy it if that's the case. Anyway I apologize if I hurt someones feelings with my post about a book being written. I'm old school and I prefer a hard copy of a book any day of the week.

Keep up the good work,
meo
Title: Re: Tiny Core v11.1
Post by: Rich on December 14, 2020, 05:05:39 PM
Hi meo
... I'm old school and I prefer a hard copy of a book any day of the week. ...
Go here:
http://tinycorelinux.net/book.html
Then click on  "the dead tree edition for sale"  link.
Title: Re: Tiny Core v11.1
Post by: vinceASPECT on December 15, 2020, 05:50:41 AM
Hello forum,

That is the thread title release that is here in tcl64 .  Intel x86.

It works well.


thx

vin