Answer by Matija Nalis for How to test audio channels of headphone
And when you reverse the headset in "wrong" position; is the bass heavier on the other ear then? If not, it is ear damage (or blockage), not headphones. Otherwise it is headphones, replace them.
View ArticleAnswer by Matija Nalis for What does HAMP mean, computer fan context?
It is High AMPerage header connection for a fan on Asus motherboards, which can provide up to 3Ā A for powerful fans.
View ArticleAnswer by Matija Nalis for Difference between CD and Hard disk technology
Sure they could. But they would be slower (laser is heavier to move than tiny magnetic head) and with less capacity (magnetic disks are in range of several thousand GB, while optical disks are just few...
View ArticleAnswer by Matija Nalis for Can't mount FAT32 drive under Ubuntu Linux
For me, fsck.vfat /dev/sdd1 returning "Logical sector size is zero." was because it was not vfat, but rather newer exfat. So I had to install tools appropriate tools (apt-get install exfat-utils...
View ArticleAnswer by Matija Nalis for sudo + x11 application does not work correctly
I use gksu instead, it takes care of secure xauth forwarding
View ArticleAnswer by Matija Nalis for Share RAM over network
Another point of view - maybe the problem isn't the limit on system resources, but the wasteful application your friend is writing. 6 GB of RAM is awful lot of memory.Just because many of the other...
View ArticleAnswer by Matija Nalis for DDNS: Is a DIY solution possible? Better?
Yes it's possible host the DDNS server yourself (in fact, I've written one DynDNS compliant implementation for DJBs tinydns myself some time ago). You can use regular DynDNS client on dynamic IP to...
View ArticleAnswer by Matija Nalis for Copy and paste not working under rdesktop
if you don't want to logoff (as it closes all programs which may have work in them), the following solution worked for me:open the cmd prompt, and enter:taskkill.exe /f /im rdpclip.exe &...
View ArticleAnswer by Matija Nalis for changing timezone with dpkg-reconfigure tzdata and...
For using debconf, before calling dpkg-reconfigure, you need to also remove /etc/localtime and /etc/timezone. Also beware of possible extra space (as in your question!) which are not benign.So "debconf...
View ArticleAnswer by Matija Nalis for convert text file of bits to binary file
oneliner to convert 32-bit strings of ones and zeros into corresponding binary:$ perl -ne 'print pack("B32", $_)'< instructions.txt > instructions.binwhat it does:perl -ne will iterate through...
View ArticleAnswer by Matija Nalis for exim4 says "Warning: purging the environment" even...
exim4 -bP will only show you currently used values, including the the ones exim4 itself set up to defaults after outputing the warnings.You should check with grep -r keep_environment /etc/exim4 to see...
View ArticleAnswer by Matija Nalis for Generic USB IR receiver/transmitter with Linux...
No, it is not possible, as this is not what you thought it is. Read the Q&A and reviews at the amazon item page you sent.It is simple IR repeater to extend the range, and USB is there only for...
View ArticleAnswer by Matija Nalis for Does a Dell DRAC 4 PCI card have any use these days?
DRAC is used for out-of-band control. You would use it when regular access to machine is not possible, for example because it crashed, or you cut off access to it via local firewall on machine etc....
View ArticleAnswer by Matija Nalis for Why is a directory copied with the cp command...
That is because du by default shows not the size of the file(s), but the disk space that they are using. You need to use the -b option to get sum of file sizes, instead of total of disk space used. For...
View ArticleAnswer by Matija Nalis for Slave serial number 5 more than master DNS server
Slave only gets data from master. So if slave has serial 123456 that is because master once upon a time sent it zone with serial 123456. In other words, somebody some time in the past put the wrong...
View ArticleAnswer by Matija Nalis for How can Internet speed be 10 times slower without...
Also, it might be that your laptop is infected with some malware, and that firewall in router is dropping connections to/from your laptop, thus preserving all available bandwidth for your test and you...
View ArticleAnswer by Matija Nalis for How to make Alsa pick a preferred sound device...
Find your card with$ cat /proc/asound/cardsTo get valid ALSA card names, use aplay:$ aplay -land then create /etc/asound.conf with following:pcm.!default { type hw card 1}ctl.!default { type hw card...
View ArticleAnswer by Matija Nalis for Unbound DNS: Troubleshooting with ssl-upstream...
Those look like wrong options, at least ssl-service-key should specify private key of your instance (and not list of trusted CAs!), and you would always use it in combination with it's public key in...
View ArticleAnswer by Matija Nalis for ALSA "dmix plugin supports only playback stream"...
The CL answer (while not being too verbose and not providing example) is right; if you want to also use microphone while using dmix, you need to use asym too.Example configuration allowing both dmix...
View ArticleAnswer by Matija Nalis for How to understand and debug USB issues with Linux
USB status codes and possible reasons for them are to be found in your kernel source, in file Documentation/usb/error-codes.txt. In DebianĀ 9 (Stretch), that is contained in package linux-doc, which...
View Article