GNU/Linux provides a tool/command to fix this issue: ‘dpkg-reconfigure xserver-xorg’ is the command for fixing the Xserver loading problem. Steps:- First, log in as a super (or root) user from the console. Then, run dpkg-reconfigure xserver-xorg (if you’re on Ubuntu and can’t log in as root, run sudo dpkg-reconfigure xserver-xorg). You will see a window/wizard as ‘Configuring xserver-xorg’ , Just accept the default answer and go to the next one. At the end of the wizard you will be exited from the configuration window/wizard, then just reboot the system your …
Technical Articles
By enabling ‘concurrent mailbox access’ option on server, you can access the mailbox from your local PC and using iPhone at same time. To enable this on MailEnable please follow the bellow steps: 1. Log into MailEnable Administrator. 2. Go to MailEnable Management 3. Click on Servers–>services. 4. Rightclick on POP, select ‘properties’–>advanced 5. Select the option “Allow concurrent mailbox access”. 6.Then restart MailEnable. log into MailEnable Administrator–> MailEnable Management–>Servers–>Services->POP (properties)–> advanced–> allow concurrent mailbox access If you require help, contact SupportPRO Server Admin
To enable the PPP feature for a VPS, we first need to check whether the modules ppp_async and ppp_deflate are loaded in the kernel. You can check this by executing the following commands. # modprobe ppp_async# modprobe ppp_deflate Or you can list the active modules using the command lsmod. # lsmod | grep pppppp_deflate 39168 0zlib_deflate 52760 1 ppp_deflateppp_async 45184 0crc_ccitt 6337 1 ppp_asyncppp_generic 20165 6 ppp_deflate,ppp_asyncslhc 30561 1 ppp_generic Steps to enable the PPP feature.1. # vzctl set VEID –features ppp:on –save2. # vzctl set VEID –devices c:108:0:rw –save3. …
You can install litespeed on a WHM/Cpanel server by simply following the bellow steps. 1. Log into server via SSH as ‘root’ user. 2. Go to /usr/src cd /usr/src 3. Download the installation file using wget. wget http://www.litespeedtech.com/packages/cpanel/lsws_whm_plugin_install.sh 4. chmod 700 lsws_whm_plugin_install.sh 5. sh lsws_whm_plugin_install.sh ( ./lsws_whm_plugin_install.sh) 6. rm -rf lsws_whm_plugin_install.sh 7. Log into WHM. Go to manage pluggins section. 8. Start the installation procedure by clicking on ‘Install LiteSpeed’. 9. This will ask you to enter your license information and admin password. Enter these information and click on ‘Build …
SMTP (Simple Mail Transfer Protocol) is the standard protocol used to send emails across the internet. It acts as a bridge between email clients and mail servers, ensuring that outgoing messages are transmitted to the recipient’s mail server efficiently. SMTP typically operates on ports 25, 465, and 587, and is responsible only for sending emails. For receiving emails, protocols like IMAP and POP3 are used. A properly configured SMTP service is essential for smooth email delivery. This includes correct port settings, authentication, and server permissions. If any of these are …
You can recreate qmail’s queue by following the steps given below, but while recreating all the current messages will be removed from the queue and cannot be restored. So it is better to take backup of messages before starting. Steps: 1. log into server and stop qmail #/etc/init.d/qmail stop 2. cd /var/qmail/queue 3. rm -rf info intd local mess remote todo 4. mkdir mess 5. for i in `seq 0 22`; do mkdir -p mess/$i done cp -r mess info cp -r mess intd cp -r mess local cp -r …
Email providers are services that allow users to send receive and store email messages over the internet They offer secure mail servers spam filtering user authentication and access through webmail mobile apps and email clients Popular email providers support protocols like IMAP POP and SMTP to ensure reliable communication across devices. Follow the steps below to create an email account on an Android mobile device. From the Home screen, tap the Apps icon. Open the Email app (or Mail, depending on your device). Tap Add Account or Next. Enter the …
You can use the command given below to check the hard disk performance. hdparm /dev/sda /dev/sda: IO_support = 0 (default 16-bit) readonly = 0 (off) readahead = 256 (on) geometry = 30401/255/63, sectors = 488397168, start = 0 If you require help, contact SupportPRO Server Admin
How to restrict number of connections per vhost/dir and limit the bandwidth for files
Managing server resources efficiently is essential for maintaining performance and stability. If a particular domain or directory is consuming excessive bandwidth, you can control its usage using the mod_bw module in Apache. The mod_bw (bandwidth module) allows administrators to restrict bandwidth usage and limit the number of simultaneous connections for specific virtual hosts (vhosts) or directories. This is especially useful in shared hosting environments where resource control is critical. When to Use mod_bw You can use mod_bw when: Steps to Install and Configure mod_bw 1. Check Apache Version Run the …
1. Installing ext3grep wget http://ext3grep.googlecode.com/files/ext3grep-0.7.0.tar.gz tar -xvzf ext3grep-0.7.0.tar.gz cd ext3grep ./configure make