Tiny Core Linux

Tiny Core Extensions => TCE Talk => Extension requests => Topic started by: neonix on July 26, 2024, 04:04:03 PM

Title: fbvnc
Post by: neonix on July 26, 2024, 04:04:03 PM
fbvnc with authentication for TC15_32
Title: Re: fbvnc
Post by: Juanito on July 27, 2024, 11:35:17 AM
Do you have a URL for the source?
Title: Re: fbvnc
Post by: neonix on July 27, 2024, 02:16:17 PM
https://github.com/uklatt/fbvnc

or this when first don't work.
http://mirror.slitaz.org/pkgs/?receipt=fbvnc-auth
Title: Re: fbvnc
Post by: CentralWare on July 27, 2024, 11:00:50 PM
@neonix: Create a new directory of your choosing and copy/paste the following in a new file called build_fbvnc.sh
Code: [Select]
#!/bin/sh
CUR=$(pwd)

EXTS="compiletc squashfs-tools"

echo "Preparing extensions"
tce-load -w $EXTS >/dev/null 2>&1
tce-load -i $EXTS >/dev/null 2>&1

[ ! -f master.zip ] && wget --no-check-certificate https://github.com/uklatt/fbvnc/archive/refs/heads/master.zip
[ -d fbvnc-master ] && rm fbvnc-master -fR
unzip master.zip

cd fbvnc-master
make
cd ..

mkdir -p /tmp/fbvnc/usr/local/sbin
cp fbvnc-master/fbvnc /tmp/fbvnc/usr/local/sbin/
cd /tmp
mksquashfs fbvnc $CUR/fbvnc.tcz

Open a terminal window and navigate to where you just created this file and run it with:
Code: [Select]
sh build_fbvnc.sh

You'll find a new TCZ file called fbvnc.tcz in this directory; copy it to your extension path, add it to onboot.lst and you're set!
Title: Re: fbvnc
Post by: Juanito on July 29, 2024, 09:40:53 AM
fbvnc posted - not tested