WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: fbvnc  (Read 405 times)

Offline neonix

  • Wiki Author
  • Sr. Member
  • *****
  • Posts: 388
fbvnc
« on: July 26, 2024, 04:04:03 PM »
fbvnc with authentication for TC15_32

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14760
Re: fbvnc
« Reply #1 on: July 27, 2024, 11:35:17 AM »
Do you have a URL for the source?

Offline neonix

  • Wiki Author
  • Sr. Member
  • *****
  • Posts: 388
Re: fbvnc
« Reply #2 on: July 27, 2024, 02:16:17 PM »

Offline CentralWare

  • Retired Admins
  • Hero Member
  • *****
  • Posts: 751
Re: fbvnc
« Reply #3 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!

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14760
Re: fbvnc
« Reply #4 on: July 29, 2024, 09:40:53 AM »
fbvnc posted - not tested