Author Archives: Kaven Gagnon

avatar

About Kaven Gagnon

System & Network Architect

Linux : How to show connected client of NFS export on the server?

Here is how to quickly show the connected clients to a NFS server. It might be useful to know before rebooting the server! On the server, execute the following command (replace <> with the NFS server IP address) : netstat -an | grep <NFS.Server.IP>:2049 Example : netstat -an | grep 192.168.45.32:2049 You should see a… Read More »

Windows : How to pause Windows 10 updates download

Since Windows 10, Microsoft made it harder for users to disable automatic updates and downloads. When triggered automatically, there is no function on the user interface to stop them, unfortunately. If you are running with the default settings, you might at some point end up working on your computer and noticed that your bandwidth was… Read More »

Linux : How to change User and Group ID

There might be some (rare) circumstances where you would like to change a UID or GID on Linux system. If you know what you are doing and the implication behind this change (see warning comment below), this can be achieved using the commands below. Change User ID (UID) : usermod -u <ID> username Example :… Read More »

ScreenOS : SSL error accessing the WebUI

If you are using the WebUI to manage your Juniper SSG / ScreenOS device, you probably encountered the following error accessing the page lately : ERR_SSL_VERSION_OR_CIPHER_MISMATCH If you use a browser that allow SSLv3, you will be able to access the device. However as we all know the weakness of this protocol, it isn’t ideal… Read More »

Linux : How to add rc.local in Debian 9

On Debian 9, the traditional “rc.local” has been deprecated. For traditional Linux users and administrators, there is a way to get it back using SystemD. See the procedure below : 1. Edit the non-existing file “rc-local.service” : vi /etc/systemd/system/rc-local.service 1.1. Add the following content to “/etc/systemd/system/rc-local.service” : [Unit] Description=/etc/rc.local ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0… Read More »

Windows : Google Chrome freeze shortly after opening

I have encountered the following issue/symptoms with Google Chrome (version 56.0.2924.87) on Windows 10 : – Google Chrome crash shortly after opening, the application become unresponsive even while going to settings – Single tab opened with the default Google page – No 3rd party extension, only Google defaults After digging around, I found that the… Read More »

Category: PC

Linux : R1Soft failed backup of LVM configuration

Having the following error while executing a R1Soft backup on a Linux server? Failed backup of LVM configuration Failed to execute command ‘lvm.static pvs -o pv_fmt,pv_uuid,dev_size,pv_name,pv_mda_free,pv_mda_size,pv_all,seg_all,pvseg_all,vg_all,lv_all –nameprefixes –noheadings –units b –nosuffix –unquoted’ This seem to be related to the latest version. Apparently Idera are aware of the issue and working on a permanent fix. In… Read More »

ScreenOS : ERR_SSL_VERSION_OR_CIPHER_MISMATCH accessing WebUI

You probably encountered the following error if you are a fan of using the Juniper SSG/ScreenOS WebUI using a “modern” browser : ERR_SSL_VERSION_OR_CIPHER_MISMATCH Well, since the latest clustered SSL exploits, the vast majority of browsers decided to disable some protocols and ciphers for everyone’s safety. To work around this issue, you may use the following… Read More »

Windows : Convert Server 2016 Standard to Datacenter

Windows evolved a lot in the last years, what was once a headache for system administrators is now behind us since a few years. Microsoft now allow to convert a installed Windows Server 2016 Standard to Datacenter without having to re-install. To achieve this, you will need to have in hand your Windows Server 2016… Read More »