Comment by Thomas on sha256sum: 'filename': No such file or directory
How did you create sha256sum.sha256? It seems there is a formatting problem 'RT-N16_3.0.0.4_374.43_2-39L3j9527.trx'$'\r': vs. RT-N16_3.0.0.4_374.43_2-39L3j9527.trx. Try to edit or recreate the file...
View ArticleComment by Thomas on Network Unreachable - Ethernet
Possible duplicate of Ubuntu 18.04: switch back to /etc/network/interfaces
View ArticleComment by Thomas on "Module nvidia is in use" but there are no processes...
Try to run modprobe -r nvidia_uvm; modprobe -r nvidia_modeset or if it fails change the order of the two modules. If you then still cannot modprobe -r nvidia add the output of lsmod | grep nvidia and...
View ArticleComment by Thomas on Virtual Hosts of Ubuntu 19.04
Best is to test with curl example1.com and curl example2.com or open your browser in private / incognito mode. I often got bitten by the browser cache showing me wrong results. Also check with curl -IL...
View ArticleComment by Thomas on Can users with the same $HOME have separate bash histories?
@steeldriver: I did not have any preferences where to place this. '~/.bashrc` would also be an option. Since the HISTFILE assignment is within the bash check I don't think it is set for other shells....
View ArticleComment by Thomas on CIFS share on fstab via krb5
Is this a typo //windows/sahre/filepath ( sahre vs share )?
View ArticleComment by Thomas on Export directory as ro and one of its subdirectories as rw
Changing the order should fix the issue ( /data/temp first ).
View ArticleComment by Thomas on How to handle fsck 'Operational error'?
You should run fsck against the partition/LVM/cryptDevcie that holds the filesystem not the whole disk. It is possible that a filesystem is put onto a whole disk without partitions, but from the output...
View ArticleComment by Thomas on How to solve the error: WARNING:root:could not open file...
How is the directory /etc/apt/sources.list.d connected to the file /etc/apt/sources.list mentioned in the question?
View ArticleComment by Thomas on get xargs to run a command once for each input instead...
Can you try xargs -L 1 ffprobe -show_streams -i instead?
View ArticleComment by Thomas on Restrict user access to GPU
@NikolayBaranenko: I think best would be to ask a new question for this
View ArticleAnswer by Thomas for Installing BlueZ 5.50 doesn't update bluetoothd
If you compile a programm from sources and do not use pre-compiled dpkg packages, the dpkg packages will not be touched or changed in any way.Normally, the configure step instructs the build to use...
View ArticleAnswer by Thomas for How do you automatically set infiniband mode to connected?
Since netplan does not support the pre-up scripts, you do have two options here:Get rid of netplanModify /etc/default/grub and add netcfg/do_not_use_netplan=true to GRUB_CMDLINE_LINUX. Then run...
View ArticleAnswer by Thomas for Bash script help substitution
Just switch the order of the assignments for command and maxruntime and substitute it in command.maxruntime="15s"command="/usr/bin/stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout ${maxruntime}"
View ArticleAnswer by Thomas for Asus X551ca HDMI resolution
The maximum resolution of the Intel HD Graphics 4000 of the i3-3217 CPU is 1920x1200 over HDMI, due to single link HDMI.In this post there is a method that may work to increase to resolution.Another...
View ArticleAnswer by Thomas for Mount point 0 does not exist
It seems you have messed up the entries in /etc/fstab getting the USB thumb to mount.From what you have posted, the lines 2-3 do not look sane and should rather be merged to:/dev/mmcblk0p6 /boot vfat...
View ArticleAnswer by Thomas for Reduce Java heap Memory
The start script <install-path>/android-studio/bin/studio.sh does consult the files as follows to read configurations.For 64bit...
View ArticleAnswer by Thomas for update-alternatives does not work due to /usr/local/bin...
To answer your first questionWhy update-alternatives has not created the link in /usr/local/bin for maintaining for proper searching of application ?This is simply because alternatives for python3 is...
View ArticleAnswer by Thomas for Setting up Grid Engine
The error you get from sge_execd points to that the sge_execd process is running already and has allocated port 6445 already and therefore a second instance cannot use the port again.Since sge_execd...
View Article