skip to Main Content

Mount AWS S3 bucket to Ubuntu file system

I cannot find any Ubuntu PPA that has latest S3FS, so we will need to compile it from source to have latest version sudo apt-get install build-essential git libfuse-dev libcurl4-openssl-dev libxml2-dev mime-support automake libtool sudo apt-get install pkg-config libssl-dev git…

Read More

Spam Tests

Spam Tests Official Spamassasin test mail Download & send a test spam-mail specifically created for spamsapmassin. wget http://spamassassin.apache.org/gtube/gtube.txt sendmail admin@example.com < gtube.txt Swaks Utility You can also send mails using swaks tool. swaks --server example.com --to admin@example.com Log Monitor When your server…

Read More

Amavis, Spamassassin & ClamAV Setup

Amavis, Spamassassin & ClamAV Setup This article covers: Spam filtering setup using spamassassin Antivirus scanning using clamav Installing packages amavis, clamav, spamassassin apt-get install amavisd-new spamassassin clamav clamav-daemon arj zoo nomarch cpio lzop cabextract apt-listchanges libauthen-sasl-perl libdbi-perl libmail-dkim-perl p7zip rpm unrar-free…

Read More

LOAD DATA LOCAL INFILE – Example

How to import data from csv, txt or other export files into MYSQL Syntax: LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name' [REPLACE | IGNORE] INTO TABLE tbl_name [PARTITION (partition_name,...)] [CHARACTER SET charset_name] [{FIELDS | COLUMNS} [TERMINATED BY 'string'] [[OPTIONALLY]…

Read More

How can I check /dev/xvda1?

You can check or run fsck on /dev/xvda1 using the following method on Ubuntu or Debian Linux based cloud server. The fsck command is used check and repair a Linux filesystem Step 1 – Force fsck Type the following command to…

Read More
Back To Top