November
9

Setup Rsync

Posted In: Debian, Fedora, Ubuntu, server by IT-Design

#apt-get install rsync
# ssh-keygen -t rsa

press ENTER for all questions.

# cd /root/.ssh
# cp id_rsa.pub myserver

send SPC to the remote server:
# scp /root/.ssh/myserver 192.168.1.2:/var/tmp/

send SPC on different port
# scp ‘-P 2848′ /root/.ssh/myserver 192.168.1.2:/var/tmp/

if you receive an error use the following command to clean the old value on the local and online server:
sed -ie 1d ~/.ssh/known_hosts

Edit /etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes

reload ssh server:
# /etc/init.d/ssh reload

open the remote server and change permition:

# cd /var/tmp/
# cat myserver && ~/.ssh/authorized_keys

run test on the local server: # rlogin 192.168.0.1

COPY FILES OVER SERVERS
# rsync -avz 192.168.1.2:/var/scripts/ /var/scripts/

USING DIFFERENT SSH PORT
# rsync -avz –rsh=’ssh -p2848′ 192.168.0.1:/var/scripts/ /var/scripts/



©Web design Costa del Sol | SEO Marbella
0
November
9

Install Spamassassin

Posted In: Debian, Fedora, Ubuntu, server by IT-Design

# apt-get install spamassassin spamc

<br># groupadd spamd
<br># useradd -g spamd -s /bin/false -m -d /home/spamassassin spamd

<br>#  /etc/init.d/spamassassin stop
<br>#  /etc/init.d/spamassassin start



©Web design Costa del Sol | SEO Marbella
0
November
9

Install webmin

Posted In: Debian, Fedora, Ubuntu by IT-Design

#install dependencies
apt-get install libnet-ssleay-perl openssl libauthen-pam-perl libio-pty-perl libmd5-perl

#download webmin:
wget http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.480_all.deb

#install webmin
dpkg -i webmin_1.470_all.deb

You can now access using the url https://your_ip:10000/



©Web design Costa del Sol | SEO Marbella
0
November
6

We dofollow links

  • It generates free content to your blog
  • It encourages quality people to leave quality comments
  • It rewards quality commenters for their participation
  • By combining two or more of these tactics, your work builds upon itself.
  • It improves search engine performance (if you follow the comment policies below)
  • It helps you grow your RSS subscriptions and builds a better blog community
  • It facilitates the purpose of linking, instead of crippling it with “No Follow”


©Web design Costa del Sol | SEO Marbella
0