Change screen resolution of Xenserver Console for a CentOS VM
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I need to increase screen resolution to 1024x800 for my XEN console.
I tried to place
vga=791
at the end of kernel line the file /boot/grub/grub.conf
but it seems that most of the boot arguments are ignored during startup. Probably inside XenSever /boot is not really used in order to launch CentOS.
I even tried to add boot option in the boot option tab (VM -> Property -> Boot Option) but doesn't work.
monitors xen resolution centos
add a comment |Â
up vote
0
down vote
favorite
I need to increase screen resolution to 1024x800 for my XEN console.
I tried to place
vga=791
at the end of kernel line the file /boot/grub/grub.conf
but it seems that most of the boot arguments are ignored during startup. Probably inside XenSever /boot is not really used in order to launch CentOS.
I even tried to add boot option in the boot option tab (VM -> Property -> Boot Option) but doesn't work.
monitors xen resolution centos
Please show us your actual/boot/grub/grub.conf
, we have no idea if you put the option in the right place.
â terdonâ¦
Feb 27 '14 at 13:48
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to increase screen resolution to 1024x800 for my XEN console.
I tried to place
vga=791
at the end of kernel line the file /boot/grub/grub.conf
but it seems that most of the boot arguments are ignored during startup. Probably inside XenSever /boot is not really used in order to launch CentOS.
I even tried to add boot option in the boot option tab (VM -> Property -> Boot Option) but doesn't work.
monitors xen resolution centos
I need to increase screen resolution to 1024x800 for my XEN console.
I tried to place
vga=791
at the end of kernel line the file /boot/grub/grub.conf
but it seems that most of the boot arguments are ignored during startup. Probably inside XenSever /boot is not really used in order to launch CentOS.
I even tried to add boot option in the boot option tab (VM -> Property -> Boot Option) but doesn't work.
monitors xen resolution centos
monitors xen resolution centos
edited Feb 27 '14 at 13:42
terdonâ¦
123k28232406
123k28232406
asked Feb 27 '14 at 13:14
Max Cuttins
213
213
Please show us your actual/boot/grub/grub.conf
, we have no idea if you put the option in the right place.
â terdonâ¦
Feb 27 '14 at 13:48
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18
add a comment |Â
Please show us your actual/boot/grub/grub.conf
, we have no idea if you put the option in the right place.
â terdonâ¦
Feb 27 '14 at 13:48
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18
Please show us your actual
/boot/grub/grub.conf
, we have no idea if you put the option in the right place.â terdonâ¦
Feb 27 '14 at 13:48
Please show us your actual
/boot/grub/grub.conf
, we have no idea if you put the option in the right place.â terdonâ¦
Feb 27 '14 at 13:48
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
Beyound the SSH X11Forwading way I succeeded in XDMCP!
Use Xnest or Xephyr in Domain0:
Xnest :1 -geometry 1280x800 -query 10.0.1.x
Xephyr :1 -screen 1280x1024 -query 192.168.1.x
The only thing you have to do is to enable remote login in your VM or DomainU by manually editing /etc/gdm/custom.cfg
or using the gdmsetup
GUI program. Here CentOS 5 DomainU is taken as an example. In Ubuntu things will be a little different.
This approach is very different to VNC which is like Microsoft's RDP (screen capture) while XDMCP utilizes your Domain0's graphic power to assist DomainU system. That is comparable to Xen VGA pass-through in terms of performance.
Remember X11 was specifically designed to be used over network connections rather than on an integral or attached display device. X features network transparency: the machine where an application (the client application, for instance Firefox in your VM or DomainU) runs can differ from the user's local machine (the display server, that is the X11 in your Domain0). This approach allows both 2D and 3D operations to be fully accelerated on the user's local X server.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Beyound the SSH X11Forwading way I succeeded in XDMCP!
Use Xnest or Xephyr in Domain0:
Xnest :1 -geometry 1280x800 -query 10.0.1.x
Xephyr :1 -screen 1280x1024 -query 192.168.1.x
The only thing you have to do is to enable remote login in your VM or DomainU by manually editing /etc/gdm/custom.cfg
or using the gdmsetup
GUI program. Here CentOS 5 DomainU is taken as an example. In Ubuntu things will be a little different.
This approach is very different to VNC which is like Microsoft's RDP (screen capture) while XDMCP utilizes your Domain0's graphic power to assist DomainU system. That is comparable to Xen VGA pass-through in terms of performance.
Remember X11 was specifically designed to be used over network connections rather than on an integral or attached display device. X features network transparency: the machine where an application (the client application, for instance Firefox in your VM or DomainU) runs can differ from the user's local machine (the display server, that is the X11 in your Domain0). This approach allows both 2D and 3D operations to be fully accelerated on the user's local X server.
add a comment |Â
up vote
0
down vote
Beyound the SSH X11Forwading way I succeeded in XDMCP!
Use Xnest or Xephyr in Domain0:
Xnest :1 -geometry 1280x800 -query 10.0.1.x
Xephyr :1 -screen 1280x1024 -query 192.168.1.x
The only thing you have to do is to enable remote login in your VM or DomainU by manually editing /etc/gdm/custom.cfg
or using the gdmsetup
GUI program. Here CentOS 5 DomainU is taken as an example. In Ubuntu things will be a little different.
This approach is very different to VNC which is like Microsoft's RDP (screen capture) while XDMCP utilizes your Domain0's graphic power to assist DomainU system. That is comparable to Xen VGA pass-through in terms of performance.
Remember X11 was specifically designed to be used over network connections rather than on an integral or attached display device. X features network transparency: the machine where an application (the client application, for instance Firefox in your VM or DomainU) runs can differ from the user's local machine (the display server, that is the X11 in your Domain0). This approach allows both 2D and 3D operations to be fully accelerated on the user's local X server.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Beyound the SSH X11Forwading way I succeeded in XDMCP!
Use Xnest or Xephyr in Domain0:
Xnest :1 -geometry 1280x800 -query 10.0.1.x
Xephyr :1 -screen 1280x1024 -query 192.168.1.x
The only thing you have to do is to enable remote login in your VM or DomainU by manually editing /etc/gdm/custom.cfg
or using the gdmsetup
GUI program. Here CentOS 5 DomainU is taken as an example. In Ubuntu things will be a little different.
This approach is very different to VNC which is like Microsoft's RDP (screen capture) while XDMCP utilizes your Domain0's graphic power to assist DomainU system. That is comparable to Xen VGA pass-through in terms of performance.
Remember X11 was specifically designed to be used over network connections rather than on an integral or attached display device. X features network transparency: the machine where an application (the client application, for instance Firefox in your VM or DomainU) runs can differ from the user's local machine (the display server, that is the X11 in your Domain0). This approach allows both 2D and 3D operations to be fully accelerated on the user's local X server.
Beyound the SSH X11Forwading way I succeeded in XDMCP!
Use Xnest or Xephyr in Domain0:
Xnest :1 -geometry 1280x800 -query 10.0.1.x
Xephyr :1 -screen 1280x1024 -query 192.168.1.x
The only thing you have to do is to enable remote login in your VM or DomainU by manually editing /etc/gdm/custom.cfg
or using the gdmsetup
GUI program. Here CentOS 5 DomainU is taken as an example. In Ubuntu things will be a little different.
This approach is very different to VNC which is like Microsoft's RDP (screen capture) while XDMCP utilizes your Domain0's graphic power to assist DomainU system. That is comparable to Xen VGA pass-through in terms of performance.
Remember X11 was specifically designed to be used over network connections rather than on an integral or attached display device. X features network transparency: the machine where an application (the client application, for instance Firefox in your VM or DomainU) runs can differ from the user's local machine (the display server, that is the X11 in your Domain0). This approach allows both 2D and 3D operations to be fully accelerated on the user's local X server.
edited Sep 9 '15 at 0:11
DarkHeart
3,38822137
3,38822137
answered Sep 8 '15 at 22:30
cjrcl
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f117250%2fchange-screen-resolution-of-xenserver-console-for-a-centos-vm%23new-answer', 'question_page');
);
Post as a guest
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
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
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
Please show us your actual
/boot/grub/grub.conf
, we have no idea if you put the option in the right place.â terdonâ¦
Feb 27 '14 at 13:48
Did you try what it suggests in the XEN FAQ? wiki.xen.org/wiki/â¦
â slmâ¦
Feb 27 '14 at 14:40
I use XENserver from citrix and there is not any "xm create" command
â Max Cuttins
Mar 5 '14 at 0:18