mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 23:45:56 +03:00
[GH-ISSUE #499] NoVnc console too slow to type #303
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#303
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cairoapcampos on GitHub (May 12, 2022).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/499
I created a webvirtcloud container using an Ubuntu 20.04 image. I use an nginx reverse proxy in front of webvirtcloud.
I edited the file
/srv/webvirtcloud/webvirtcloud/settings.py.I changed
WS_PUBLIC_PORT = 6080toWS_PUBLIC_PORT = 443.After this configuration I was able to access the console of Linux and Windows virtual machines.
But when I type users, passwords and commands it is slow. The digits take a long time to appear on the console screen.
On Linux the digits also do not appear correctly.
What can I do to solve this problem?
@catborise commented on GitHub (May 12, 2022):
May be it is related with vm. Do you have hardware acceleration for virtualization?
İnstall virt-manager then check it if it is properly working or not, please
@cairoapcampos commented on GitHub (May 12, 2022):
The machine has hardware acceleration for virtualization. Characters when using virt-manager appear normally and there is no delay.
In webvirtcloud when I type some "dirt" appears in the console and no characters. Look:
@catborise commented on GitHub (May 13, 2022):
it is related with spice type console.
please convert console type to VNC. Then check again.
@cairoapcampos commented on GitHub (May 13, 2022):
Where do I make this change?
My file
/srv/webvirtcloud/webvirtcloud/settings.py:@catborise commented on GitHub (May 13, 2022):
It is an instance property
@cairoapcampos commented on GitHub (May 13, 2022):
After making the suggested change, the console worked correctly. Thank you very much!