Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vnsee
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.8.2.
Show more breadcrumbs
Simon Castellan
vnsee
Commits
8937bf4b
Verified
Commit
8937bf4b
authored
4 years ago
by
Mattéo Delabre
Browse files
Options
Downloads
Patches
Plain Diff
Add missing instructions for enabling output
parent
c33e7847
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+5
-4
5 additions, 4 deletions
README.md
with
5 additions
and
4 deletions
README.md
+
5
−
4
View file @
8937bf4b
...
...
@@ -27,14 +27,15 @@ For this scenario, you will need to start a VNC server on your computer.
### Linux (X11 with Xrandr)
Create a new mode compatible with the tablet’s resolution and
enable
the VIRTUAL1 output
with this mode
.
Create a new mode compatible with the tablet’s resolution and
add this mode to
the
`
VIRTUAL1
`
output.
```
sh
xrandr
--newmode
1408x1872
$(
gtf 1408 1872 60 |
tail
-n2
|
head
-n1
|
tr
-s
' '
|
cut
-d
' '
-f4-
)
xrandr
--addmode
VIRTUAL1 1408x1872
```
Start the x11vnc server (you will need to install this package first if needed).
Enable and arrange the VIRTUAL1 output through your usual dual screen configuration program, for example GNOME’s settings, arandr or xrandr directly.
Then, start the x11vnc server (you will need to install this package first if needed).
```
sh
x11vnc
-repeat
-forever
-clip
$(
xrandr |
awk
'/VIRTUAL1 connected/{print $3}'
)
-nocursor
...
...
@@ -43,13 +44,13 @@ x11vnc -repeat -forever -clip $(xrandr | awk '/VIRTUAL1 connected/{print $3}') -
> **Flip the screen upside down**
>
> ```sh
> x11vnc -repeat -forever -clip $(xrandr | awk '/VIRTUAL1 connected/{print $3}') -nocursor
-rotate xy
> x11vnc
-rotate xy
-repeat -forever -clip $(xrandr | awk '/VIRTUAL1 connected/{print $3}') -nocursor
> ```
Finally, start rmvncclient using SSH.
```
sh
ssh
"
root@10.11.99.1
"
"
./rmvncclient
"
ssh root@10.11.99.1
./rmvncclient
```
## Related
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment