Compare commits
2 Commits
bb93557693
...
9ea12714ae
Author | SHA1 | Date |
---|---|---|
thomas | 9ea12714ae | |
thomas | fe16c7e1b9 |
15
README.md
15
README.md
|
@ -0,0 +1,15 @@
|
||||||
|
Allow to share screen over network with vnc on raspberrypi v1 or newer
|
||||||
|
|
||||||
|
===Installation===
|
||||||
|
Install Raspberry Pi OS Lite on raspberrypi or or debian without desktop)
|
||||||
|
|
||||||
|
install vnctv_X.Y.Z_all.deb
|
||||||
|
|
||||||
|
systemctl enable --now vnctv vnctv-web
|
||||||
|
|
||||||
|
===Usage===
|
||||||
|
|
||||||
|
launch x11vnc on the computer
|
||||||
|
|
||||||
|
connect to http://<server ip or hostname>:8080
|
||||||
|
|
|
@ -3,4 +3,4 @@ The Debian Package vnctv
|
||||||
|
|
||||||
Comments regarding the Package
|
Comments regarding the Package
|
||||||
|
|
||||||
-- Thomas Leagy <thomas@unknown> Sun, 03 Apr 2022 12:36:14 +0200
|
-- Thomas Leagy <thomas@lgy.fr> Sun, 03 Apr 2022 12:36:14 +0200
|
||||||
|
|
|
@ -3,7 +3,7 @@ Section: unknown
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
Build-Depends: debhelper-compat (= 13)
|
Build-Depends: debhelper-compat (= 13)
|
||||||
Standards-Version: 0.1.0
|
Standards-Version: 0.1.1
|
||||||
Homepage: https://git.lgy.fr/thomas/vnctv/
|
Homepage: https://git.lgy.fr/thomas/vnctv/
|
||||||
#Vcs-Browser: https://git.lgy.fr/thomas/vnctv/
|
#Vcs-Browser: https://git.lgy.fr/thomas/vnctv/
|
||||||
#Vcs-Git: http://git.lgy.fr/thomas/vnctv.git
|
#Vcs-Git: http://git.lgy.fr/thomas/vnctv.git
|
||||||
|
@ -11,5 +11,5 @@ Rules-Requires-Root: no
|
||||||
|
|
||||||
Package: vnctv
|
Package: vnctv
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}
|
Depends: ${misc:Depends} directvnc
|
||||||
Description: allow to share screen over network with vnc on raspberrypi v1 or newer
|
Description: allow to share screen over network with vnc on raspberrypi v1 or newer
|
||||||
|
|
|
@ -4,12 +4,11 @@ Upstream-Contact: <preferred name and address to reach the upstream project>
|
||||||
Source: <url://example.com>
|
Source: <url://example.com>
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
Copyright: <years> <put author's name and email here>
|
Copyright: 2022 thomas@lgy.fr
|
||||||
<years> <likewise for another author>
|
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
|
||||||
Files: debian/*
|
Files: debian/*
|
||||||
Copyright: 2022 Thomas Leagy <thomas@unknown>
|
Copyright: 2022 Thomas Leagy <thomas@lgy.fr>
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
|
@ -28,12 +27,3 @@ License: GPL-3.0+
|
||||||
.
|
.
|
||||||
On Debian systems, the complete text of the GNU General
|
On Debian systems, the complete text of the GNU General
|
||||||
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
||||||
|
|
||||||
# Please also look if there are files or directories which have a
|
|
||||||
# different copyright/license attached and list them here.
|
|
||||||
# Please avoid picking licenses with terms that are more restrictive than the
|
|
||||||
# packaged work, as it may make Debian's contributions unacceptable upstream.
|
|
||||||
#
|
|
||||||
# If you need, there are some extra license texts available in two places:
|
|
||||||
# /usr/share/debhelper/dh_make/licenses/
|
|
||||||
# /usr/share/common-licenses/
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr//bin/env bash
|
||||||
|
|
||||||
|
id vnctv &> /dev/null || useradd vnctv -r -s /bin/false
|
||||||
|
|
Loading…
Reference in New Issue