87 Search results

For the term "synch with time server".

404 Page Not Found – Craigslist Search Engine by State

I once wrote a Perl script for crawling Craigslist for a particular product. It could be used for localized results, but the real benefit is price comparison capabilities (price arbitrage) by having global results for reference. It is very useful for some products, especially collectibles. I once used it to buy a rare guitar I was wanting. Average prices in...

How To Monitor Ubuntu Server

tail -f /var/log/apache2/error.log tail -f /var/log/apache2/access.log tail -f /var/log/apache2/other_vhosts_access.log tail -f /var/log/auth.log tail -f /var/log/daemon.log tail -f /var/log/fail2ban.log tail -f /var/log/mail.log tail -f /var/log/main.warn tail -f /var/log/mysql.log tail -f /var/log/mysql.err tail -f /var/log/syslog tail -f /var/log/user.log sudo tail -f /var/log/Bastille/action-log sudo tail -f /var/log/Bastille/error-log

How To Configure exim4 on Debian 9

This setup is for a wordpress server that mail-out submissions on the website and assumes that 1) Outbound only. All mail is sent-out via SMTP. You don't want mail retained on the server. 2) there is more than one recipient, re. one for WordPress form submissions and a webmaster (or root). 3) and you are using Google as your SMTP....

How to Rescue Hetzner VServer

Activate Rescue Mode Copy Password to clipboard Restart (reset) Server login ssh -v root@ip mount filesystem mount /dev/md2 /mnt or mount home mount /dev/md3 /mnt cd /mnt/___________ < be careful to always cd into mnt then the directory of choice or you will be cd into the rescue file system

nftables Beginner Examples

The first things you need to do and the commands that you need. Save and Translate your iptables rule into nftables rules when migrating from iptables to nftables are: Save iptables rules to text file iptables-save -c > iptables-saved-backup.txt Translate iptables rules to nftables text file iptables-restore-translate -f iptables-saved-backup.txt > ruleset.nft Active nftables rules nft -f ruleset.nft NOTE You should...

Edit “Other Applications List” in Unity Ubuntu 12.04 Desktop

When installing Padre IDE on Ubuntu Desktop, I found Ubuntu (12.04) does not recognize it as an already installed program. So when trying to open a Perl file for editing using right-click, its a dead end – Padre was nowhere to be found. I wasted an hour looking for the answer; found it here > Ubuntu 12.04 Add Program to...

How To SEO Video for YouTube Channel

My notes on How To SEO your Video / YouTube Channel Target video time 3 minutes, if longer, segment into parts 1, 2, 3, etc. Don’t dump, drip. Upload 1 a day at most. Try to be consistent. Encourage audience participation; subscriptions, likes or comments in video. Use all social media connections, and monitor for participation. re. Facebook fans, Twitter followers....

YaCy Crashes

I should officially call this page /about-yacy but (SEO) I know when I wanted to know more about YaCy it was because it kept crashing. So you’ve found yourself here for the same reason this page exists. I hope I can make it easier for a beginner, given that I am probably more ordinary, especially compared to the developers. Since...

How To Install Bing Sitemap on Apache

if you redirect a page after it was 200 previously, it will still show up in the Sitemap for some time. until the configured time decay has passed which is configurable using the VisitTimeoutSec setting. Configuring the Makefiles: 1. Change to the root directory (ie, parent of this directory containing the readme.txt), 2. Ensure ‘configure’ has executable permissions (ie, ‘chmod...

Start Reverse Tunnel on boot using autossh for Debian 7

As usual, most of the how-to guides out there are too brief (I’m guilty) or apply to other distros: This works on Linux Debian 7 all-around, and this is a complete how to. It works. You just have to follow a very long thread. No A.D.D. here! We will create a Persistent Reverse SSH Tunnel between 2 machines using autossh....