Create a Linux Router with DHCP services Rumi, August 5, 2018August 5, 2018 It’s pretty easy to build a Linux router even on a virutal machine. I’ve used virtualbox to create a LAN NAT router with DHCP services using webmin. However, I’m not going to cover on how to use a virtualbox VM 🙂 Let’s create the NAT Router first. On Webmin go… Continue Reading
Install wkhtmltopdf on Debian 8, 9 Rumi, August 3, 2018January 18, 2019 Installation on Debian 8 apt-get update aptitude install xfonts-base xfonts-75dpi fontconfig xvfb mkdir ~/src/wkhtmltopdf -p cd ~/src/wkhtmltopdf wget https://bitbucket.org/wkhtmltopdf/wkhtmltopdf/downloads/wkhtmltox-0.13.0-alpha-7b36694_linux-jessie-amd64.deb dpkg -i wkhtmltox-0.13.0-alpha-7b36694_linux-jessie-amd64.deb echo ‘xvfb-run –server-args=”-screen 0, 1024x768x24″ /usr/local/bin/wkhtmltopdf $*’ > /usr/bin/wkhtmltopdf.sh chmod a+rx /usr/bin/wkhtmltopdf.sh ln -s /usr/bin/wkhtmltopdf.sh /usr/local/sbin/wkhtmltopdf /usr/local/sbin/wkhtmltopdf https://www.google.fr output.pdf Installation on Debian 9 Continue Reading
Find Ethernet Connection Speed Rumi, July 29, 2018 Type the following command to get speed for eth0: $ ethtool eth0 | less OR $ ethtool eth0 | grep -i speed You can also use the following two commands: $ dmesg | grep eth0 | grep up $ dmesg | grep bond0 | grep up OR use the command… Continue Reading
Installing Let’s Encrypt on a Zimbra Server Rumi, June 15, 2018June 15, 2018 Let’s Encrypt must be installed on one Linux machine to obtain the proper SSL Certificate, CA Intermediate, and Private Key. It is not required that it be on the same Zimbra Server, but it could save time and help to obtain the renewals, etc. First Step is to stop the… Continue Reading
Bind DNS Auto Slave Using Webmin Rumi, June 13, 2018June 13, 2018 The latest webmin has bug! In this tutorials I’m using webmin verison 1.801- that actually works. Don’t know if webmin team really knows are aware of the bug 🙁 So, let’s start. But before that, it’s assumed that you have webmin installed in both the servers. Configuring Webmin Server Continue Reading
Best free bandwidth monitoring software and tools to analyze network traffic usage Rumi, June 13, 2018June 13, 2018 To keep an eye on the health of your network and diagnose problems that crop up, an essential activity is monitoring your bandwidth and knowing which traffic is consuming it. Your ISP promises to provide you with a reliable pipe to the Internet of a certain volume; your chosen network… Continue Reading
Enable WIndows Photo Viewer in Windows 10 Rumi, June 13, 2018 Default windows “Photo” app is clumsy at some point, missed the earlier “Photo Viewer” program. So, going back to root and after googling, here’s a small hack to enable “Windows Photo Viewer” in windows 10 edition. Download the photo.zip and unzip it. You’ll get a photo.reg file. The file is… Continue Reading
Zimbra send http traffic to https or keeping both in mix Rumi, June 10, 2018June 10, 2018 HTTP proxy can support protocol modes for HTTP or HTTPS only, both HTTP and HTTPS, mixed HTTP and HTTPS or HTTPS redirect from HTTP. Redirect is a popular configuration. This configuration must be made to the proxy servers. HTTPS redirect from HTTP zmprov ms proxy.server.name zimbraReverseProxyMailMode redirect HTTP and HTTPS… Continue Reading
Mount CD or DVD Rom in Linux Rumi, June 3, 2018 Finding out your CD/DVD names in Linux Use the following command to find out the name Of DVD / CD-ROM / Writer / Blu-ray device on a Linux based system: # lsblk OR # dmesg | egrep -i –color ‘cdrom|dvd|cd/rw|writer’ Sample outputs (/dev/sr0): [ 5.437164] sr0: scsi3-mmc drive: 24x/24x writer… Continue Reading
Increase mail attachment in Zimbra 8.8 Rumi, June 3, 2018 Postfix configuration (zimbraMtaMaxMessageSize and message_size_limit) You can examine the current value of this parameter like this: # su – zimbra $ postconf message_size_limit message_size_limit = 10240000 This configuration parameter is stored in the zimbra ldap directory, and propagated to postconf’s message_size_limit by zmmtaconfig, which is invoked by the zimbra postfix… Continue Reading