WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Recent Posts

Pages: [1] 2 3 ... 10
1
Extension requests / Re: okular
« Last post by Rich on Today at 08:15:24 AM »
Hi meo
Do you know this one is QT5 based just like Notepadqq is?
2
Extension requests / okular
« Last post by meo on Today at 06:58:57 AM »
Hello!

I'm almost afraid of posting this request since, if I got it right, it is huge! I can understand that it is, at least almost, against the goal of Tiny Core. But if at all possible I would really appreciate to use this program in TC.

Kind Regards,
meo

PS I will absolutely understand if nobody feels inclined to make this tool available in Tiny Core DS
3
Extension requests / Re: Emacs (30.2).
« Last post by meo on Today at 06:47:25 AM »
Hi Juanito!

It works as expected and I am giving my database a touch up! Thanks a lot! Yesterday was as if everything fell in place. Ready to do some Python programming and maintaining the database. Thanks again!

Sincerely Yours,
meo
4
Off-Topic - Tiny Tux's Corner / Re: OpenBSD and FreeBSD
« Last post by nick65go on Today at 06:47:19 AM »
Too bad that Europe is not yet fully united, it moves a bit slowly.
The Germans have been in bed with Putin for a long time, taking cheap Russian gas and then selling it expensively in Europe. The same with Munich in 2017, giving up LibreOffice in favor of MS-office (https://en.wikipedia.org/wiki/LiMux)  hm.. a bit of a whore for the mayor.
5
Off-Topic - Tiny Tux's Corner / Re: OpenBSD and FreeBSD
« Last post by NewUser on July 21, 2026, 11:50:32 PM »
Quote from: nick65go

European initiatives for FreeBSD focus heavily on digital [b
sovereignty (from who?)[/b],
I can answer that. Freedom from the US, in particular Windows, Office, etc
6
Raspberry Pi / Re: pam_rundir Pragtical.
« Last post by meo on July 21, 2026, 01:32:57 PM »
Hi guys!

This day has been very special. Several problems solved the same day and now I can go on with my python project. I have also installed the database that can be configured with emacs (thanks Juanito) so I have just enjoyed seeing the graphical database using the raspberry pi. So thanks everybody for your help!

Kind greetings,
meo
7
TCB Talk / Re: Proposed update to tce-status script
« Last post by Rich on July 21, 2026, 12:18:13 PM »
Hi mocore
... ahh subtle ... it fails because i have files that match "s*" and "l*" in the current directory ...
I made some progress. This directory has a bunch of tce-status* files in it:
Code: [Select]
tc@E310:~/tce-status$ ./tce-status4 -i 't*' 's*'
schumacher-clean-fonts
sed
shared-mime-info
slang
socat
sox
speex
sqlite3
sqlite3-bin
squashfs-tools
strace
submitqc
syslinux
tc-install
thunderbird
tree
ttf-bitstream-vera
twolame
The command now works, but the terms with wildcards need to be quoted.
The upside is single quotes work too, so no shift key needed.

The diff now looks like this:
Code: [Select]
Find() {
-       Do="installed"
-       [ "$1" == "-u" ] && Do="uninstalled"
 
-       Param=${@:2}
+       # Remove first command line parameter from $@.
+       shift
 
-       while IFS= read -r Ext
+       [ $# -lt 1 ] && cat - ||  while IFS= read -r Ext
        do
-               for P in $Param
+               for P in "$@"
                do
                        case ${Ext%.tcz} in $P) echo ${Ext%.tcz};; esac
                done
-       done << EOF
-       $($Do)
-EOF
+       done
 }
 
 [ -z "$1" ] && Help
@@ -58,8 +55,8 @@
 while getopts iuoh OPTION
 do
        case ${OPTION} in
-               i) [ $# -lt 2 ] && installed || Find "$@" ;;
-               u) [ $# -lt 2 ] && uninstalled || Find "$@" ;;
+               i) installed | Find "$@" ;;
+               u) uninstalled | Find "$@" ;;
                o) orphaned ;;
                *) Help ;;
        esac

This is what changed from your diff ...

Added this:
Code: [Select]
# Remove first command line parameter from $@.
shift

Changed 2 to 1 due to added shift command:
Code: [Select]
[ $# -lt 1 ] && cat - ||  while IFS= read -r Ext
Accessed $@ directly and enclosed it in quotes:
Code: [Select]
for P in "$@"
Let me know if it works for you.

    [Edit]: The updated script is attached.
8
Raspberry Pi / Re: pam_rundir Pragtical.
« Last post by Rich on July 21, 2026, 09:22:24 AM »
Hi Juanito
Xorg-3d is missing from both your piCore64 16 and piCore64 17beta2 lists. ...
I was beginning to suspect as much. ;D
9
Raspberry Pi / Re: pam_rundir Pragtical.
« Last post by Juanito on July 21, 2026, 07:51:39 AM »
‘Glad it works :)
10
Raspberry Pi / Re: pam_rundir Pragtical.
« Last post by meo on July 21, 2026, 07:39:25 AM »
Hello Juanito!

I finally got it to work. Both Xorg-3d and Pragical. It was the oldfashioned way. I did not see your last post Juanito but it still worked! This is the first time startx has worked with Xorg-3d. Now I do not want to shut it down. I will have some noting to do first. Thanks for allt the help I have received from the community!!!

Sincerely Yours,
meo
Pages: [1] 2 3 ... 10