WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Tiny Core 14.0 Alpha 1 Testing  (Read 23355 times)

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #75 on: February 15, 2023, 11:00:43 PM »
You can ignore the IM warning. It's about Chinese (etc) input.
The only barriers that can stop you are the ones you create yourself.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #76 on: February 20, 2023, 09:35:30 AM »
The exfat module location doesn't matter for loading it etc, putting all those in the same dir was simpler in sorter.sh. As for virtio disks, it's quite possible some scripts are missing vda* cases.
The only barriers that can stop you are the ones you create yourself.

Offline patrikg

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 662
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #77 on: February 20, 2023, 09:47:24 AM »
Maybe you should ask some good person to let you in in the wiki, to add some section and text in the wiki what nice you doing. To add support for virtio device recognition in the tc.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #78 on: February 23, 2023, 08:42:38 AM »
Hi nick65go
The Qemu discussion has been split into a separate thread:
https://forum.tinycorelinux.net/index.php/topic,26118.0.html

Offline nick65go

  • Hero Member
  • *****
  • Posts: 799
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #79 on: February 24, 2023, 02:19:12 PM »
I was looking over one of the "main" function for me, tce-load. I re-aranged and commented a little the script, so it seems more compacted and quick tree logic from first words/test.ex: instead of
Code: [Select]
copyInstall() {
    [ -d /mnt/test ] || sudo /bin/mkdir -p /mnt/test
    sudo /bin/mount $1 /mnt/test -t squashfs -o loop,ro
    if [ "$?" == 0 ]; then
        if [ "$(ls -A /mnt/test)" ]; then
            yes "$FORCE" | sudo /bin/cp -ai /mnt/test/. / 2>/dev/null
            [ -n "`find /mnt/test/ -type d -name modules`" ] && MODULES=TRUE
        fi
        sudo /bin/umount -d /mnt/test
    fi
    [ "$BOOTING" ] || rmdir /mnt/test
}
I wrote it like
Code: [Select]
# $1=THISAPP, ex: abc.tcz; mount it on /mnt/test; then copy its files into / ; eventualy set flag MODULES
_copyInstall() {
    [ -d /mnt/test ] || sudo /bin/mkdir -p /mnt/test
    [ "$(sudo /bin/mount $1 /mnt/test -t squashfs -o loop,ro)" ] && ( [ "$BOOTING" ] || rmdir /mnt/test ) || break
    [ "$(ls -A /mnt/test)" ] ( yes "$FORCE" | sudo /bin/cp -ai /mnt/test/. / 2>/dev/null || ( [ -n "`find /mnt/test/ -type d -name modules`" ] && MODULES=TRUE )
    sudo /bin/umount -d /mnt/test
}


same for
Code: [Select]
update_system() {
    if [ "$BOOTING" ]; then
        [ "$MODULES" ] && sudo /bin/touch /etc/sysconfig/newmodules
    else
        [ "$THISAPP" != "$EXTENSION" ] || [ "$DOWNLOAD_ONLY" ] || [ "$LOAD_ONLY" ] || echo "$THISAPP" >> ../$ONBOOTNAME
        if [ "$MODULES" ]; then
            sudo /sbin/depmod -a 2>/dev/null
            sudo /sbin/udevadm trigger
        fi
        sudo /sbin/ldconfig 2>/dev/null
    fi
   
    if [ -x "$TCEINSTALLED"/$2 ]; then
        if [ "$BOOTING" ] ; then
            echo "$TCEINSTALLED"/$2 >> /tmp/setup.lst
        else
            sudo "$TCEINSTALLED"/$2
        fi
    else
        touch "$TCEINSTALLED"/$2
    fi
}
which became like this
Code: [Select]
# $1=THISAPP; $2=THISAPP_without_EXTENSION; $BOOTING is used one time only
update_system() {
    if  [ "$BOOTING" ]; then
        [ "$MODULES" ] && sudo /bin/touch /etc/sysconfig/newmodules
        [ -x "$TCEINSTALLED"/$2 ] && echo "$TCEINSTALLED"/$2 >> /tmp/setup.lst
    else
        sudo /sbin/ldconfig 2>/dev/null
        [ "$MODULES" ] && (sudo /sbin/depmod -a 2>/dev/null || sudo /sbin/udevadm trigger)
        [ -x "$TCEINSTALLED"/$2 ] && sudo "$TCEINSTALLED"/$2
        touch "$TCEINSTALLED"/$2
        [ "$THISAPP" != "$EXTENSION" ] || [ "$DOWNLOAD_ONLY" ] || [ "$LOAD_ONLY" ] || echo "$THISAPP" >> ../$ONBOOTNAME
    fi
}


for example I can quickly see what $BOOTING will do in update_system(), or what copyInstall() is about.
The original functions are already fast, so is not about extra speed. Any chance that this type of main tree and branches to be used in TC14?
« Last Edit: February 24, 2023, 02:31:02 PM by nick65go »

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #80 on: February 25, 2023, 01:00:22 AM »
I guess this is mainly about clarity? At least for me, a long line with embedded && || conditions is a bit harder to read than the existing version.
The only barriers that can stop you are the ones you create yourself.

Offline nick65go

  • Hero Member
  • *****
  • Posts: 799
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #81 on: February 25, 2023, 01:10:37 AM »
I guess this is mainly about clarity? At least for me, a long line with embedded && || conditions is a bit harder to read than the existing version.
yes, mainly for clarity; it is a pain without script commented .
but I study / prefer if focus will shift to more parallel execution, or piping, avoiding external commands/programs/scripts, maybe more xarg /awk etc.
in a real machine is no big difference, in a not-accelerated virtual the scale is 2x - 4x slower than real.
maybe all is for pin-nuts, it depends of the frequency of running those programs, and in them what is the possible bottle-neck.

Offline nick65go

  • Hero Member
  • *****
  • Posts: 799
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #82 on: February 25, 2023, 05:00:30 AM »
Hi, in /usr/bin/select (of 1332 bytes), searching for string "15" will give results:
Code: [Select]
Search "15" (5 hits in 1 file of 1 searched)
   Line 34:       for (l=1; l<=15; l++) {
   Line 39:       if ( NR > 15 ) printf ", (n)ext, (p)revious: "
   Line 44:          if ( j > 15 )
   Line 52:             j = j - 15
   Line 56:       if (selection+0 < 1 || selection+0 > NR ) j = j - 15

These will limit search shown list to max 15 lines / items. Most machines/PC have (even in console) 25 horizontal lines / rows. Subtracting 3 row (header) + 2 rows (footer) from 25, still allows for 20 lines to list.
May we have the changed "j" counter to max 20?
or maybe tce-ab could check for an external variable ($LEN=), so we can summon it like:
Code: [Select]
LEN=50; tce-ab
« Last Edit: February 25, 2023, 05:06:24 AM by nick65go »

Offline nick65go

  • Hero Member
  • *****
  • Posts: 799
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #83 on: February 25, 2023, 05:26:06 AM »
I saw that tc14-x86_64 does not enable parallel processing for xarg.
Code: [Select]
https://mirrors.dotsrc.org/tinycorelinux/14.x/x86_64/release/src/busybox/busybox-1.36.0_config_nosuidCONFIG_XARGS=y
# CONFIG_FEATURE_XARGS_SUPPORT_PARALLEL is not set
Maybe for 64 bits, it could be enabled.
Even for 486 CPU compatibility, we can have a test for $BUILD=`uname -m` before calling xarg -P$NrCpu etc.

Offline nick65go

  • Hero Member
  • *****
  • Posts: 799
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #84 on: February 25, 2023, 06:04:11 AM »
The idea for "xargs -P 4" is about mounting lets say 100 SquashFs tcz from local disk /tce/optional using a list. Or not waiting for each tcz to be "wget"-it; so will be downloads in parallel from $MIRROR when using tce-fetch.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #85 on: February 25, 2023, 07:50:28 AM »
Mirrors usually limit traffic by IP, so putting several downloads at once will get you no faster total results. It's also considered abusive to open a lot of connections since it ties up resources.
The only barriers that can stop you are the ones you create yourself.

Offline GNUser

  • Hero Member
  • *****
  • Posts: 1343
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #86 on: March 01, 2023, 07:50:03 AM »
Do we have a beta or final release coming soon? IMHO the alpha has been well tested.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #87 on: March 01, 2023, 12:17:31 PM »
Maybe next week - real life has been getting in the way..

Offline GNUser

  • Hero Member
  • *****
  • Posts: 1343
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #88 on: March 01, 2023, 12:22:20 PM »
Got it. I hope all is well. Real life has that tendency...

aus9

  • Guest
Re: Tiny Core 14.0 Alpha 1 Testing
« Reply #89 on: March 04, 2023, 07:19:55 PM »
SNIP
x86_64
libfm-dev.tcz
libfm-extra-dev.tcz

Hi Rich, I can see the corrected dep files
http://tinycorelinux.net/14.x/x86_64/tcz/libfm.tcz.dep
http://tinycorelinux.net/14.x/x86_64/tcz/libfm-dev.tcz.dep

but can not spot where I went wrong in build script
Quote
P=libfm
SNIP
echo 'libfm.tcz
menu-cache-dev.tcz
gtk2-dev.tcz
libexif-dev.tcz '> $P-dev.tcz.dep

echo 'gtk2.tcz
menu-cache.tcz
libexif.tcz  ' > $P.tcz.dep

except for the change in order for the running dependency I am clueless what I did wrong.  :-[

The reason I ask is, I plan to submit updates for this and pcmanfm