VMware Workstation Ubuntu 18.10 Full Screen Problem
up vote
1
down vote
favorite
I upgraded my VMware Ubuntu 18.04 to 18.10. After the upgrade it was working fine until I shutdown and restarted the VM, and now it won't display in full screen.
I followed by installing a fresh copy of 18.10 and at first it was working fine right after install and after reboot the same thing happened.
Any suggestions?
18.10
add a comment |
up vote
1
down vote
favorite
I upgraded my VMware Ubuntu 18.04 to 18.10. After the upgrade it was working fine until I shutdown and restarted the VM, and now it won't display in full screen.
I followed by installing a fresh copy of 18.10 and at first it was working fine right after install and after reboot the same thing happened.
Any suggestions?
18.10
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I upgraded my VMware Ubuntu 18.04 to 18.10. After the upgrade it was working fine until I shutdown and restarted the VM, and now it won't display in full screen.
I followed by installing a fresh copy of 18.10 and at first it was working fine right after install and after reboot the same thing happened.
Any suggestions?
18.10
I upgraded my VMware Ubuntu 18.04 to 18.10. After the upgrade it was working fine until I shutdown and restarted the VM, and now it won't display in full screen.
I followed by installing a fresh copy of 18.10 and at first it was working fine right after install and after reboot the same thing happened.
Any suggestions?
18.10
18.10
asked Oct 20 at 17:54
0siris
64
64
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
up vote
1
down vote
I ran into the same issue on a fresh install of 18.10 on VMWare 15.01. If I manually restarted open-vm-tools after I logged in, everything worked. I tried to reinstall VMWare tools, it didn't help. This did fix it:
Edit this file using your preferred editing tool
/etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add these lines to the end of the "Unit" section
Requires=graphical.target
After=graphical.target
Save the file and the next time you restart you should be good to go.
New contributor
Thanks, it works now!
– Miguel Febres
yesterday
add a comment |
up vote
0
down vote
Create a text file with .sh extension. For example setscreen.sh
Insert the following text and save.
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
Run this .sh file as an executable. Screen should go to 1920x1080.
Use "startup applications" to launch the file at startup.
add a comment |
up vote
0
down vote
go to settings > display > specify monitor settings.Then choose the right resolution for your computer.
add a comment |
up vote
0
down vote
See here: https://github.com/vmware/open-vm-tools/issues/303
Requires an edit to Unit section of open-vm-tools
After=graphical.target
add a comment |
up vote
0
down vote
Just add the sudo service open-vm-tools restart
as command in "Startup Applications", to make it run after system starts.
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I ran into the same issue on a fresh install of 18.10 on VMWare 15.01. If I manually restarted open-vm-tools after I logged in, everything worked. I tried to reinstall VMWare tools, it didn't help. This did fix it:
Edit this file using your preferred editing tool
/etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add these lines to the end of the "Unit" section
Requires=graphical.target
After=graphical.target
Save the file and the next time you restart you should be good to go.
New contributor
Thanks, it works now!
– Miguel Febres
yesterday
add a comment |
up vote
1
down vote
I ran into the same issue on a fresh install of 18.10 on VMWare 15.01. If I manually restarted open-vm-tools after I logged in, everything worked. I tried to reinstall VMWare tools, it didn't help. This did fix it:
Edit this file using your preferred editing tool
/etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add these lines to the end of the "Unit" section
Requires=graphical.target
After=graphical.target
Save the file and the next time you restart you should be good to go.
New contributor
Thanks, it works now!
– Miguel Febres
yesterday
add a comment |
up vote
1
down vote
up vote
1
down vote
I ran into the same issue on a fresh install of 18.10 on VMWare 15.01. If I manually restarted open-vm-tools after I logged in, everything worked. I tried to reinstall VMWare tools, it didn't help. This did fix it:
Edit this file using your preferred editing tool
/etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add these lines to the end of the "Unit" section
Requires=graphical.target
After=graphical.target
Save the file and the next time you restart you should be good to go.
New contributor
I ran into the same issue on a fresh install of 18.10 on VMWare 15.01. If I manually restarted open-vm-tools after I logged in, everything worked. I tried to reinstall VMWare tools, it didn't help. This did fix it:
Edit this file using your preferred editing tool
/etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add these lines to the end of the "Unit" section
Requires=graphical.target
After=graphical.target
Save the file and the next time you restart you should be good to go.
New contributor
New contributor
answered 2 days ago
Robert G
111
111
New contributor
New contributor
Thanks, it works now!
– Miguel Febres
yesterday
add a comment |
Thanks, it works now!
– Miguel Febres
yesterday
Thanks, it works now!
– Miguel Febres
yesterday
Thanks, it works now!
– Miguel Febres
yesterday
add a comment |
up vote
0
down vote
Create a text file with .sh extension. For example setscreen.sh
Insert the following text and save.
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
Run this .sh file as an executable. Screen should go to 1920x1080.
Use "startup applications" to launch the file at startup.
add a comment |
up vote
0
down vote
Create a text file with .sh extension. For example setscreen.sh
Insert the following text and save.
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
Run this .sh file as an executable. Screen should go to 1920x1080.
Use "startup applications" to launch the file at startup.
add a comment |
up vote
0
down vote
up vote
0
down vote
Create a text file with .sh extension. For example setscreen.sh
Insert the following text and save.
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
Run this .sh file as an executable. Screen should go to 1920x1080.
Use "startup applications" to launch the file at startup.
Create a text file with .sh extension. For example setscreen.sh
Insert the following text and save.
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
Run this .sh file as an executable. Screen should go to 1920x1080.
Use "startup applications" to launch the file at startup.
answered Oct 21 at 11:41
Денис Буць
1
1
add a comment |
add a comment |
up vote
0
down vote
go to settings > display > specify monitor settings.Then choose the right resolution for your computer.
add a comment |
up vote
0
down vote
go to settings > display > specify monitor settings.Then choose the right resolution for your computer.
add a comment |
up vote
0
down vote
up vote
0
down vote
go to settings > display > specify monitor settings.Then choose the right resolution for your computer.
go to settings > display > specify monitor settings.Then choose the right resolution for your computer.
answered Oct 22 at 16:10
oguz
1
1
add a comment |
add a comment |
up vote
0
down vote
See here: https://github.com/vmware/open-vm-tools/issues/303
Requires an edit to Unit section of open-vm-tools
After=graphical.target
add a comment |
up vote
0
down vote
See here: https://github.com/vmware/open-vm-tools/issues/303
Requires an edit to Unit section of open-vm-tools
After=graphical.target
add a comment |
up vote
0
down vote
up vote
0
down vote
See here: https://github.com/vmware/open-vm-tools/issues/303
Requires an edit to Unit section of open-vm-tools
After=graphical.target
See here: https://github.com/vmware/open-vm-tools/issues/303
Requires an edit to Unit section of open-vm-tools
After=graphical.target
answered Nov 1 at 20:53
Alex McDonald
1
1
add a comment |
add a comment |
up vote
0
down vote
Just add the sudo service open-vm-tools restart
as command in "Startup Applications", to make it run after system starts.
add a comment |
up vote
0
down vote
Just add the sudo service open-vm-tools restart
as command in "Startup Applications", to make it run after system starts.
add a comment |
up vote
0
down vote
up vote
0
down vote
Just add the sudo service open-vm-tools restart
as command in "Startup Applications", to make it run after system starts.
Just add the sudo service open-vm-tools restart
as command in "Startup Applications", to make it run after system starts.
answered Nov 10 at 0:30
F10PPY
1
1
add a comment |
add a comment |
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%2f1085621%2fvmware-workstation-ubuntu-18-10-full-screen-problem%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