Comment by Ho1 on How to run a job in several machines that have Ubuntu as...
@muru Thanks for pointing to the other question. Actually it was more informative! Maybe merging them is a better idea.
View ArticleComment by Ho1 on Lenovo ThinkPad 11e Randomly Freezes on Ubuntu 16.04
@IanLantzy I'm happy to see that your problem is fixed. In fact, debugging such problems is very tricky, and only a handful of people can debug and fix them. This perticular problem with HPET (if it...
View ArticleComment by Ho1 on Perl script error : 'script executable not found'
Is there executable /home/toni/Desktop/PatchDock/pdb_trans in place?
View ArticleComment by Ho1 on Installing Intel graphics driver in Ubuntu 16.04
@dobey I didn't say that I was using propertiary drivers for Intel graphics, I just said that I was using the drivers provided by Intel. And it is not a duplicate, because the mentioned question is...
View ArticleComment by Ho1 on Installing Intel graphics driver in Ubuntu 16.04
Thanks for the answer. Could you be able to play a video with VLC with hardware acceleration enabled?
View ArticleComment by Ho1 on Installing Intel graphics driver in Ubuntu 16.04
I'm currently using the same output, but does XCB output use hardware acceleration?
View ArticleComment by Ho1 on Chrome 43 DPI Low Resolution
Thanks man! This helped me so much! Using --force-device-scale-factor with a factor more than 1 it is possible to have bigger UI.
View ArticleComment by Ho1 on I need Help Installing JDK
@AndroidDev I don't think so, but I will add the instructions, which is extracting the package, and in some cases setting JAVA_HOME and PATH.
View ArticleComment by Ho1 on Fix scaling of java-based applications for a high DPI screen
@JacobVlijm How do you set the resolution per application, even manual? Could you please explain the script? It's the work of randr or something else?
View ArticleComment by Ho1 on How to fix 3D Acceleration for Vmware Workstation 9?
New version became available recently: askubuntu.com/a/850431/151837
View ArticleComment by Ho1 on The package libpython3.6-stdlib needs to be reinstalled,...
@Nitesh Which version of Ubuntu do you use?
View ArticleComment by Ho1 on Installing Intel graphics driver in Ubuntu 16.04
@RoshanaPitigala The tool is now retired: omgubuntu.co.uk/2018/03/intel-graphics-update-tool-discontin‌​ued
View ArticleAnswer by Ho1 for How to run a job in several machines that have Ubuntu as...
There are several tools for having a kind of "parallel ssh". As you use Python, pssh should be fine. Install it with pip:$ sudo pip install pssh Create a pssh hosts file like...
View ArticleAnswer by Ho1 for How can I theme my Qt app to resemble one written in Gtk?
This does the job, in Qt 5 and Gtk+ 3:export QT_STYLE_OVERRIDE=gtk
View ArticleAnswer by Ho1 for How to make Qt programs look good under Xfce?
Put this in ~/.bashrc. It works with Qt 5 and Gtk+ 3:export QT_STYLE_OVERRIDE=gtk
View ArticleAnswer by Ho1 for Taskbar not apearing in ubuntu 16.04
It depends on the desktop environment you are using, but this should work in most cases:mv ~/.config ~/.config-oldLog out, then log in. Your configuration is reset. If you want to get back to your old...
View ArticleAnswer by Ho1 for How to stop .NET Core from collecting data to protect privacy?
Short answer:Issuing this command should disable telemetry:export DOTNET_CLI_TELEMETRY_OPTOUT=1More details:This is the output from running the dotnet new as the first command.Welcome to .NET...
View ArticleAnswer by Ho1 for Firefox cannot load page in 16.04
You are probably experiencing a DNS problem, mostly caused by slow local DNS servers. You can find out your current DNS setting by invoking:nmcli dev show | grep DNSTry setting your DNS to something...
View ArticleAnswer by Ho1 for How can I install OpenMP in Ubuntu?
sudo apt install libomp-devapt show libomp-devDescription: LLVM OpenMP runtime - dev package The runtime is the part of the OpenMP implementation that your code is linked against, and that manages the...
View ArticleHow to stop .NET Core from collecting data to protect privacy?
Today Microsoft announced that .NET Core is available for installation on various platforms. Here's the website for .NET Corehttps://dot.net/coreAnd this is the download section for Ubuntu 14.04 LTS...
View ArticleAnswer by Ho1 for How can I extract a page range / a part of a PDF?
QPDF is great. Use it this way to extract pages 1 to 10 from input.pdf and save it as output.pdf:qpdf input.pdf --pages . 1-10 -- output.pdfThis preserves all metadata associated with that file.From...
View Article