HostOnNet Blog

nmap find all IP with port 80 open

To find all IP on a network with Port 80 Open in a network, run Example boby@hon-pc-01:~$ nmap 100.71.116.1-254 -p80 –open Starting Nmap 7.01 ( https://nmap.org ) at 2017-07-30 21:26 IST Nmap scan report for 100.71.116.60 Host is up (0.0045s


How To Move MySQL Data Directory (datadir)

Create a directory in the drive you want to store MySQL datadir. In this example, we create mysql folder in /backup partition. Now we have MySQL data copied, but we don’t have all data as MySQL service is running and


Free Email Hosting YourDomain.com

Here are few Email service providers that allow FREE email hosting for your business. They provide fully qualified email address [email protected] Yandex Connect Yandex allow you to have unlimited email users @ yourdomain.tld First you need to create a FREE


Installing GoLang on Ubuntu

GoLang is new programming lanuage by Google. It us used by many popular open source software like docker, kubernetics. You can download latest version of golang from https://golang.org/dl/ To install version 1.8.3, run Edit .bashrc file Add Activate the changes


Backup linux server with rsync

To backup linux server to remote server using rsync, create file Add In the above code, replace BACKUP-SERVER-IP-HERE with your backup server IP. [email protected] with your email address, so you get email when backup task is run. make it executable


Encrypt files with cryptomator

cryptomator is open source software that allow you to encrypt files. It is useful to store files in public cloud like dropbox, google drive securely. https://cryptomator.org On Download page, you will be asked to pay, this is more like donation,


awk

format ls result with awk awk is a command line tool for pattern scanning and processing. Here are some examples of awk in action. In this example awk split text using space. Print first part. $0 means full line, $1


Encrypt folder before storing on Cloud with EncFS

You can use encfs to encrypt a folder in real time. This is useful if you want to sync sensitive information to cloud backup providers like dropbox. To install encfs, run To created an encrypted folder,run Here /path/to/encrypted-files will have


irc

irc is internet relay chat. Here are some of the useful commands /list List all channels available /join #ChannelName Join a channel /nick YOURNAME Change your IRC user name Web based IRC Chat clients https://webchat.freenode.net/ Command Line IRC Chat clients


Uploading files to Amazon s3 with s3cmd

s3cmd allows you to upload files and folders to Amazon S3 or sites that support Amazon S3 API for example www.s3for.me Installing s3cmd You can download latest version of s3cmd from https://github.com/s3tools/s3cmd/releases/ To install version 2.0.0 (latest at the time