TeamViewer slow on Ubuntu without monitor 16.04How do I run teamviewer in a headless system?Install...
Practical reasons to have both a large police force and bounty hunting network?
Achieving MPPT of a solar panel with LM2596
What is the difference between a forward slip and a side slip?
Toast materialize
It took me a lot of time to make this, pls like. (YouTube Comments #1)
Real life puzzle: Unknown alphabet or shorthand
Are paired adjectives bad style?
Reason why dimensional travelling would be restricted
Why do phishing e-mails use faked e-mail addresses instead of the real one?
How to substitute values from a list into a function?
I can't die. Who am I?
Is there a legal poaching?
Traversing Africa: A Cryptic Journey
Plagiarism of code by other PhD student
Why can't we make a perpetual motion machine by using a magnet to pull up a piece of metal, then letting it fall back down?
Why is working on the same position for more than 15 years not a red flag?
Can a space-faring robot still function over a billion years?
Dystopian novel where telepathic humans live under a dome
What is a term for a function that when called repeatedly, has the same effect as calling once?
Is it possible to make a clamp function shorter than a ternary in JS?
Is there a frame of reference in which I was born before I was conceived?
Pure Functions: Does "No Side Effects" Imply "Always Same Output, Given Same Input"?
In iTunes 12 on macOS, how can I reset the skip count of a song?
Can we carry rice to Japan?
TeamViewer slow on Ubuntu without monitor 16.04
How do I run teamviewer in a headless system?Install TeamViewer on Ubuntu bootupTeamviewer 9 does not have permission to launch in UbuntuKill and Restart TeamViewer 10 Ubuntu 14.04TeamViewer only runs when GUI has been startedTeamViewer 12 & Ubuntu 16 - Can't ConnectTeamViewer on AWS EC2 no connectionUbuntu 16.04- VNC/TeamViewer, setting screen resolution in headless modeTrouble with installing TeamViewer on Ubuntu MATE 16.04Ubuntu 16.04 slow connection to iPhone wifi hotspot
After restarting my server without a monitor connected, TeamViewer is extremely slow. But if I restart with a monitor it runs fine. How can I get it working like normal without a monitor attached?
16.04 remote teamviewer
add a comment |
After restarting my server without a monitor connected, TeamViewer is extremely slow. But if I restart with a monitor it runs fine. How can I get it working like normal without a monitor attached?
16.04 remote teamviewer
add a comment |
After restarting my server without a monitor connected, TeamViewer is extremely slow. But if I restart with a monitor it runs fine. How can I get it working like normal without a monitor attached?
16.04 remote teamviewer
After restarting my server without a monitor connected, TeamViewer is extremely slow. But if I restart with a monitor it runs fine. How can I get it working like normal without a monitor attached?
16.04 remote teamviewer
16.04 remote teamviewer
asked Apr 5 '18 at 2:28
BinaryShrubBinaryShrub
517
517
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Install a dummy server:
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
Add a /etc/X11/xorg.conf
file with the following contents:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
add a comment |
Adding a fake monitor fixes the problem:
sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.
– waspinator
Jun 29 '18 at 15:45
add a comment |
Hi this fix works great if operating headless which was my original issue! Except I now have an issue if I do connect a display now, I don't get a gui at all.
How can I have it so if a screen is not detected it will switch to the dummy display but if it is detected it will switch to the normal display?
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1022093%2fteamviewer-slow-on-ubuntu-without-monitor-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Install a dummy server:
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
Add a /etc/X11/xorg.conf
file with the following contents:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
add a comment |
Install a dummy server:
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
Add a /etc/X11/xorg.conf
file with the following contents:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
add a comment |
Install a dummy server:
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
Add a /etc/X11/xorg.conf
file with the following contents:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
Install a dummy server:
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
Add a /etc/X11/xorg.conf
file with the following contents:
Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x800"
EndSubSection
EndSection
answered Jun 29 '18 at 15:56
waspinatorwaspinator
2,13251935
2,13251935
add a comment |
add a comment |
Adding a fake monitor fixes the problem:
sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.
– waspinator
Jun 29 '18 at 15:45
add a comment |
Adding a fake monitor fixes the problem:
sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.
– waspinator
Jun 29 '18 at 15:45
add a comment |
Adding a fake monitor fixes the problem:
sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
Adding a fake monitor fixes the problem:
sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
answered Apr 5 '18 at 2:28
BinaryShrubBinaryShrub
517
517
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.
– waspinator
Jun 29 '18 at 15:45
add a comment |
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.
– waspinator
Jun 29 '18 at 15:45
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?
The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
I'm having issues installing the dummy sever. Did you have to do anything to get it to work?
The following packages have unmet dependencies: xserver-xorg-video-dummy : Depends: xorg-video-abi-20 Depends: xserver-xorg-core (>= 2:1.17.99.902) E: Unable to correct problems, you have held broken packages.
– waspinator
Jun 29 '18 at 15:27
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.– waspinator
Jun 29 '18 at 15:45
sudo apt-get install xserver-xorg-video-dummy-lts-xenial
works but the xorg.conf doesn't seem to be working properly. Crashes X.– waspinator
Jun 29 '18 at 15:45
add a comment |
Hi this fix works great if operating headless which was my original issue! Except I now have an issue if I do connect a display now, I don't get a gui at all.
How can I have it so if a screen is not detected it will switch to the dummy display but if it is detected it will switch to the normal display?
New contributor
add a comment |
Hi this fix works great if operating headless which was my original issue! Except I now have an issue if I do connect a display now, I don't get a gui at all.
How can I have it so if a screen is not detected it will switch to the dummy display but if it is detected it will switch to the normal display?
New contributor
add a comment |
Hi this fix works great if operating headless which was my original issue! Except I now have an issue if I do connect a display now, I don't get a gui at all.
How can I have it so if a screen is not detected it will switch to the dummy display but if it is detected it will switch to the normal display?
New contributor
Hi this fix works great if operating headless which was my original issue! Except I now have an issue if I do connect a display now, I don't get a gui at all.
How can I have it so if a screen is not detected it will switch to the dummy display but if it is detected it will switch to the normal display?
New contributor
New contributor
answered 13 mins ago
Matthew ScottMatthew Scott
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1022093%2fteamviewer-slow-on-ubuntu-without-monitor-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown