Thursday, December 30, 2010

Automatic Spinner / Article Creator

I am sure that this software will make people happy.
This is software that will automatically create its own and many thanks to its single article database of synonyms.
No installation required, unzip and simply click on the application.

How to use it :
First, choose the text you need to spin.
Second click on "Use All Possible Keywords" or F4.
Third, click on "Preview Possible Articles"

After you will have a new open page with many differents articles.


http://www.ziddu.com/download/13197116/Articles-creator.rar.html

Magic Submitter

Magic Submitter is a new software that can submit almost to anywhere!

Blogs, article directories, bookmaking services,
video services, RSS, microblogs, web2.0 properties.

What's makes it cool is that we can add our own site to the software!

A remarkable breakthrough i have to say.

I found this while cruising on the net.

Enjoy!

Download

Code:

http://hotfile.com/dl/60784265/2c57a09/MS_1.17.zip.html

2500+ Auto Approved URLs

This text file contains about 2500+ unique URLs, which should all be Auto Approval blogs where you can drop some comments advertising your websites. Many of these blogs also have "recent comments" widgets which display your link/name on EVERY page of the website.

http://hotfile.com/dl/91862437/9c99861/2500autoapproves_(seohouse.blogspot.com).txt.html

BacklinkSpeed 3000+ Directories Included

BacklinkSpeed v1.1 Software (2.0 Directories)

BacklinkSpeed is the easiest way to submit your web site to over 3,150 backlink sites and directories, instantly giving a jumpstart to your traffic and immediate visibility to the search engines

http://www.ziddu.com/download/13197077/BackLinkSpeed.30.zip00_Directories.rar.html

Configurasi ptunnel

vi /root/runtunnel.sh kemudian masukan script sebagai berikut

#!/bin/bash
temp=$(ps -e | grep ptunnel)
if [ "$temp" = "" ]; then
ptunnel -m 20
else
echo "oye"
fi
kemudian tekan esc dan save menggunakan commad :wq! tekan enter
setelah itu ketikan crontab -e dan isikan script sebagai berikut
#*/59 * * * * ps -ef | mail -s "Proccess on My Server
*/5 * * * * sh /root/runtunnel.sh
kemudian save
langkah selanjutnya kita tinggal pengecekan di server apakah ptunnel jalan atau tidak dengan ketikan ps -ef
bilamana di server jalan ptunnel kita harus kill process dengan perintah kill -9 angak PId nya setelah itu jalan kan perintah sh /root/runtunnel.sh
configurasi pun telah selesai dan server siap di tinggal kemana mana

OpenVPN & SSH Tunnel

yum install rpm-build autoconf.noarch zlib-devel pam-devel openssl-devel


download dan install lzo dan openvpn

wget http://repo.securityteam.us/repository/redhat/el4/i386/RPMS/openvpn-2.0.9-1.i386.rpm
http://204.74.208.18/lzo-devel-1.08-4.2.el5.rf.i386.rpm http://204.74.208.18/lzo-1.08-4.rf.src.rpm http://204.74.208.18/lzo-1.08-4.2.el5.rf.i386.rpm

Install lzo dan openvpn dengan perintah sbb:
rpm –ivh lzo*
rpm –ivh openvpn-2.0.9-1.i386.rpm

Copy easy rsa ke directory openvpn
cp -r /usr/share/doc/openvpn-2.0.9/easy-rsa/ /etc/openvpn/

Membuat certificate
. ./vars Perhatikan, .(spasi).vars
./clean-all #Akan mengosongkan direktori keys/
./build-ca
Kemudian input data sesuai dengan konfigurasi kita, tekan enter untuk variabel yang sebelumnya sudah kita tentukan di file vars, dan sesuaikan Common Name dengan hostname server kita;
Buat server key
./build-key-server ovpnserver
./build-dh

Copy semua file keys dan certificate ke /etc/openvpn
cp keys/* /etc/openvpn

lalu masuk ke direrctory openvpn
cd /etc/openvpn

Buat file configurasi server
vi server.conf

plugin /usr/share/openvpn/plugin/lib/openvpn-auth-pam.so login
client-cert-not-required
username-as-common-name
port 1194
proto udp
dev tun
ca ca.crt
cert ovpnserver.crt
key ovpnserver.key
dh dh1024.pem
server 10.14.0.0 255.255.255.0
ifconfig-pool-persist ipp2.txt
push "dhcp-option DNS 4.2.2.1"
push "dhcp-option DNS 4.2.2.2"
client-to-client
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status2.log
log openvpn2.log
verb 3

lalu simpan file konfigurasi
tekan esc lalu :wq!

Jalankan openvpn dengan cli sbb
service openvpn start

Buat konfigurasi file client

client
dev tun
proto tcp
remote 74.xx.xx.xx 1194
remote-random
redirect-gateway def1
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
auth-user-pass
comp-lzo
verb 3


Mefungsikan server sebagai gateway internet
1. enable port forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
2. mengaktifkan iptables
buat file dengan nama iptables-script.sh

CLI sbb :
vi iptables-script.sh
IPT=/sbin/iptables
LANIFACE=venet0 --- jika dedicated server ganti dengan eth0/eth1 sesuao dengan interfacenya
VPNIFACE=tun0
VPN=10.15.0.0/24
$IPT -A INPUT -i $VPNIFACE -j ACCEPT
$IPT -A FORWARD -i $VPNIFACE -j ACCEPT
$IPT -t nat -A POSTROUTING -s $VPN -o $LANIFACE -j SNAT --to 204.xx.xx.xx

Setelah scrip siap jalankan script denga perintah sh iptables-script.sh
setelah itu install ptunnel pada server

dengan cara sebagai berikut
wget http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
setelah download selesai ketik kan perintah tersebut
rpm -ivh rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
setelah compile selesai ketik kan
yum install ptunnel
tunggu sampe instal selesai dan update openssh nya dengan cara sebagai berikut
wget http://layer1.rack911.com/openssh/rhel5/x86_64/openssh-5.2p1-1.x86_64.rpm
wget http://layer1.rack911.com/openssh/rhel5/x86_64/openssh-clients-5.2p1-1.x86_64.rpm
wget http://layer1.rack911.com/openssh/rhel5/x86_64/openssh-server-5.2p1-1.x86_64.rpm
rpm -Uvh openssh*
setelah itu edite config sshd config nya
dengan cara vi /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd(8) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation no

# Lifetime and size of ephemeral version 1 server key
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO
# Authentication:
LoginGraceTime 600
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
MaxSessions 40
#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

UsePAM yes

Thursday, December 16, 2010

Power Directory Submitter

A SEO Tool Designed To Help Your Website Jump Up The Search Engine Rankings!

Some of the Features of DPS:

* Supports phpLD directories which are most popular directory script on the Internet.
* Can be fully automated with decaptcher service.
* Preloaded with 4000 + directories
* Have a very short learning cycle
* Title rotation
* Multiple category support

Download

Optimize Yamicsoft Windows 7 Manager 2.0.4 (x86/x64)

Manager is a system utility that helps you optimize, tweak, and clean up Windows 7. It will increase your system speed, improve system security, and meet all of your expectations.

Why Should I use Windows 7 Manager?

Windows 7 is the newest Operating System for home users and professionals alike. Windows 7 brings clarity to your world, so you can more safely and easily accomplish everyday tasks and instantly find what you want on your PC.

Windows 7 Manager is the powerful software tool to tweak and optimize your Windows 7, it bundles more than 30 different utilities in one and help your system faster and more stable, secure and personal!

Features and Benefits of Windows 7 Manager

Information

Get detailed system and all hardware information on your system; help you find out the installation key of Windows, Office products; show all detailed information of running processes and threads on your machine; Windows 7 Manager offers 1-clicking cleans your system automatically.

Optimizer
Tweak your system to improve windows startup and shutdown speed; tweak your hardware to increase system speed and performance; Optimize Task Schedule to turn off unnecessary system tasks.

Cleaner
Find out which files or folders engross your disk space and shown with chart; Find and clean junk files to increase Hard Disk space; Duplicate Files Finder can scan your computer for files with the same size, name and modification time; Registry Cleaner can easily checks your registry and repair incorrectly linked registry entries, automatically remove invalid entries; Registry Defrag rebuilds and re-indexs your registry to reduce application response time and registry access time.

Customization
Control what is started on Windows startup; tune up Windows 7 boot menu; edit context menus of mouse Right-Clicking; customize system desktop, menus, toolbar and notifications settings; automatically change your desktop wallpaper on background.

Security
You can improve desktop, menus, Windows logon securities, and enable numerous hidden performance options of system, disable system updates and error reports; hide and restrict to access drives, specify which applications are not allowed to be executed on your computer; encrypt/decrypt and shred files, change the location of system folders; Privacy Protector can maintain your personal privacy by eliminating the tracks that you leave behind; create lots of randomization password once.

Network
Optimize your Internet connection speed, manage all shares items; tweak your Internet Explorer easily.

Misc. Utilities
Show the collection of Windows utilities; split and merge any file.

Windows 7 Manager 2.0.4 Released!
• System Information updated to v1.5
• Smart Uninstaller updated to v2.4
• Perfect Boot Configuration, add some tweaks.

Submit your website to 250 social bookmarks free!

Hello everyone want free traffic with no hassle? Then visit the following website to do so:

http://socialposter.com/

All you do is insert your URL, Title, description, tags and thats it! Get free targeted traffic using this website

How to install torrentflux on vps centos 5.5

This is a guide to install (torrent seedbox)torrentflux latest 2.4 on centos 5.5 from scratch! you dont need to know anything because all the steps are clearly provided so don’t hesitate to follow these steps.

First of all you need a dedicated server or vps for installing torrentflux. I recommend getting a vps from Germany hosting provider like www.keyweb.de or like that because most of providers in USA doesn’t like to run torrents on their servers due to copyright issues.

You need a bigger bandwidth at least 300GB, Disk Space and RAM of at least 512MB because this script consumes about 400MB of RAM in most basic configuration.

You need to have centos linux installed to continue these steps if not simply install centos from your provided vps control panel.

You need to download SSH client first like PUTTY http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

After installing run it and enter your ip address given by vps or dedicated provider to login to your box.

torrentflux How to install torrentflux on centos 5.5
You need to update to latest centos 5.5 first so the run the code below to update the centos operating system. After hit enter this will take time and after finished you will be able to type codes again so wait until it complete.

yum update

Then we need to install apache,mysql,php and curl so run this codes

yum install httpd python php mysql-server php-mysql php-common php-gd php-curl

Now we have installed all the scripts necessary so restart apache by using this code

/etc/init.d/httpd restart

Now we need to create my sql data base user. run this

mysql_install_db

And we need a apache and mysql to be automatically started if our server reboot. So run this

chkconfig --levels 235 httpd on

chkconfig --levels 235 mysqld on

Then type this to restart mysql

/etc/init.d/mysqld restart

Then wee need to create mysql root password you can use any password for this simply replace YOURPASSHERE with your desired password.

mysqladmin -u root password YOURPASSHERE

Then you need to create a directory to run torrentflux because running on the main directory might give us some problems so please create a directory. Its like normal directory for ex- www.google.com/images ! In this guide I have set the directory as torrentflux you can see it below! Run this code

mkdir /var/www/html/torrentflux

Next you need to download torrentflux and install it so run this codes one by one,

cd /var/www/html/torrentflux/

wget http://softlayer.dl.sourceforge.net/sourceforge/torrentflux/torrentflux_2.4.tar.gz

Default downloaded torrentflux installation files are compressed. So uncompress it by running following codes.

tar -xzf torrentflux_2.4.tar.gz

mv torrentflux_2.4/html/* /var/www/html/torrentflux/

Now lets create a mysql database for torrentflux just like you do for wordpress
run this codes

cd /var/www/html/torrentflux/torrentflux_2.4/sql/

And on this step put your mysql password as you set early in previous steps as YOURPASSHERE
Im creating a database named “torrents” run below codes one by one

mysql -u root -pPassword: YOURPASSHEREmysql>create database torrents;mysql>q

And run this too also replace YOURPASSHERE with your preset password when prompted after running first line of command

mysql torrentflux < mysql_torrentflux.sql -u root -pPassword: YOURPASSHERE

Then you need to create a directory to store downloaded files. Im making a directory called downloads. Also run these commands one by one

mkdir /downloads chmod 777 /downloadschown apache.apache /downloads

Now we need to edit torrentflux configuration file, (like we edit wordpress’s wp-config.php )

You need to install nano text editor so run this commands one by one

yum install nanonano /var/www/html/torrentflux/config.php

then nano text editor will display following sheet. Its your torrentflux config.php file! You can navigate by arrow keys and enter the database details on that. You can edit it just like you edit file in windows notepad.

/**************************************************************************/// YOUR DATABASE CONNECTION INFORMATION/**************************************************************************/// Check the adodb/drivers/ directory for support for your database// you may choose from many (mysql is the default)$cfg["db_type"] = "mysql"; // mysql, postgres7, postgres8 view adodb/drivers/$cfg["db_host"] = "localhost"; // DB host computer name or IP$cfg["db_name"] = "torrents"; // Name of the Database$cfg["db_user"] = "root"; // username for your MySQL database$cfg["db_pass"] = "YOURPASSHERE"; // password for database/**************************************************************************/

After editing to correct database details. Press your keyboards Ctrl (Control key) and when holding Ctrl press O ( Not zero) then release the both keys (Ctrl+O) and it will ask you to save the edited file then press enter to confirm.

For exit press and hold Ctrl and then press X ( Ctrl+X)

Then tighten up your security little bit. Run these commands on ssh.

chmod -R 755 /var/www/chown -R apache.apache /var/www/

Then restart apache and mysql services

/etc/init.d/httpd restart/etc/init.d/mysqld restart

Yeah! Its 100% complete navigate to http://yourip/torrentflux/

[Tutorial] Compress your CSS Code to make your site load fast

Why to compress CSS file

* It cleans up your CSS code.
* Makes CSS editing easy
* Fast loading of template

How to compress CSS files

1. First copy all the code present in your style.css file
2. Now open CSS Compressor from here
3. Keep the default options as it is but put a tick on One rule per line
4. Paste the code in the first textbox i.e Code In and click on Compress
5. Your new compressed code will appear in the second textbox i.e Code Out, copy the whole code from there and replace it with the old one and you’re done!

Link to the CSS Compressor :
Code:

http://tools.arantius.com/css-compressor

Get Free targeted Traffic To Ur website

Hi everyone,

Here is a simple SEO tricks which can give u some backinks and some targetted traffic.
The best thisng is U dont need to pay anything,its absolutly free.
SO—>

In this methood we r going to use Rapidshare to get free traffic bUT u can use any other populoar uploading site.

1..Create a account on Rapidshare
2..Upload a file.
3..THIS IS THE IMOPORTANT PART.RENAME UR UPLOAD FILE WITH UR WEBSITE KEYWORD
4..SAVE IT.
5..Ovserve it will change ur download link.Now copy the download link
and save it to on ur website footer in plain text.Its importent u save link as plain text and its vissible on ur website.
And thats all….seat back and wait untill RAPIDSHARE index the link.

So every time ppl will search with those keyword…ur website will be there+they will be redirected..
So that was a easy way to get targetted traffic right???
Hope u understand the full game.
I m not saying u will get 1000 visitor a day from it but never forget

Sunday, December 12, 2010

Power Directory Submitter

A SEO Tool Designed To Help Your Website Jump Up The Search Engine Rankings!

Some of the Features of DPS:

* Supports phpLD directories which are most popular directory script on the Internet.
* Can be fully automated with decaptcher service.
* Preloaded with 4000 + directories
* Have a very short learning cycle
* Title rotation
* Multiple category support


Download

Friday, December 10, 2010

Yahoo messenger support Facebook chat

Yahoo messenger support Facebook chat

Download
http://www.ziddu.com/download/12915022/ymsgr_inst.exe.html

Yahoo messenger ads Remover

Download
http://www.ziddu.com/download/12914791/AdBannerRemoverPlus_v1045.zip.html

Panda USB Vaccine (Antimalware) Review

I have wrote a article about free antimalware software before, Panda USB Vaccine is one more free antimalware utility from Panda Research Group. Panda USB Vaccine helps in preventing malware infections caused by USB and CD/DVD’s. Autorun-based malware attacks are very common nowadays. Panda USB vaccine free utility helps in disabling autorun in Windows completely, so whenever you connect any other external flash memory device’s like USB and CD/DVDs this won’t let programs to auto execute.

panda usb vaccine

We can still disable auto run file (AUTORUN.INF) in Windows manually, but it’s quiet difficult for non-technical person to disable specific Autorun feature by changing the registry value.
Panda USB Vaccine Features

* Panda USB Vaccine supports NTFS drives and any removable drives.
* This software can auto-update itself and has consumes less memory 700 kilobytes.

User has 2 Options to Run Panda USB Vaccine

* Vaccine for computers: It disables auto-run completely, this is applicable for all the programs from any Flash memory stick CD and DVD drives.

* Vaccine for USB devices: This is applicable only for USB devices, once auto-run file for USB is disabled then your computer won’t be able to read any malicious code

Download

backlink

Free Auto 

Backlink

Free Auto Backlink


Free 

Auto Backlink

Thursday, December 9, 2010

RC Helicopter

Size : 49.5mb
Language : English
full iso image

Realistic remote-control helicopter simulation
- Based on real fight dynamics for small craft
- Analog Controller simulates true RC feel
- Three distinct camera angles
- For one player

DOWNLOAD

ClearView RC Flight Simulator 5.24 | 65.48MB

Genre: Simulation/ Flight Simulator Game

Professional quality RC flight simulator for radio controlled planes and helicopters. This is not a game. ClearView specializes in "real life" simulation of electric, glow and gas RC helicopters and planes, including TRex 450, Blade CX, CP and CP Pro, Hone Bee, Raptor 60 and 90 and many others. The RC planes range from light weight electric 'Shockflier', to 100 size 4 stroke aerobatic Pitts Special to turbine driven F15 Eagle and F-16 Fighting Falcon. Learn to fly without fear of crash and expensive repairs.

Wednesday, December 8, 2010

TRIK INTERNET XL BUAT PC ! PAKE ISPCE UPDATE DESEMBER 2010!

TRIK INTERNET XL BUAT PC ! PAKE ISPCE UPDATE DESEMBER 2010!


Download Programnya

1. http://www.ziddu.com/download/12929507/ISPCE.rar.html

Trik Internet Gratis Indosat StarOne Terbaru 7 Desember 2010

Ada lagi nih, trik ngenet gratis di PC !

Kali ini trik khusus untuk pengguna kartu Star0ne punya indosat ! Tentunya ini merupakan kabar yg sangat gembira buat tmen2 yg pake kartu StarOne.

Trik Internet 
Gratis Indosat StarOne Terbaru 7 Desember 2010
Baiklah, Langsung aja ya, aq kasih triknya buat tmen2!

Berikut parameter yang diperlukan :

AMBIL DI SINI

Jika Anda menggunakan browser Mozilla firefox , pilih Tool > option > advanced > network > setting > pilih manual proxy configuration, kemudian masukkan proxy berikut ;

AMBIL PROXY NYA…….

kemudian centang use this proxy for all protocol. Proxy ini bagus karena bisa membuka halaman-halaman dengan ssl 128 bit seperti yahoo!mail, egold, gmail, internet banking, dll. Tentu aja bisa membuka halaman facebook juga yang menjadi kegemaran kamu, lakukan dial cdma-mu, kemudian mulai deh browsingnya. Gampang kan !!!

Saya akhiri dg mengucapkan SELAMAT MENCOBA & SEMOGA BERHASIL !!!

How to save/download video from youtube ?

Why you should download/save videos from youtube :

You found an interesting video from youtube and you want to save/download it to your computer and later share it with your friend or keep it as a collection. However, by default Youtube doesn't allow users to save/download the videos. It only allow user to send a hyperlink to the friends and invite them to go to youtube website to view the videos.

It will become a problem because these video may gone forever due to copyright infringement issues, why not save/download the video before it's too late ?


Steps to save/download the video from youtube

For Internet Explorer (PC) users :

1) Click your favourite video clip, you can see the URL in your browser becomes something like this :

How to 
save/download video from youtube ?

2) highlight the URL (like above) and right click the mouse and select "copy"

3) Paste the URL at our download page (our download page not only can download youtube video, but also google video , myspace video and more)

4) When the download link shows, You should right-click -> "Save Target As" OR copy and paste the link into your download manager. Note: You must change the file extension to .flv

5) The .flv file is not a common multimedia file, you need a software called FLV player to play it. Click here to get Free FLV Player

6) Install the FLV player into your computer.

7) Select the video clip that you downloaded and play

8) If you want to convert the FLV video and play it in IPod, PSP, mobile phone(3GP format), then you need to download FLV Converter.

How to Boost BitTorrent Download Speeds

If you use a bitTorrent program to download MP3s, music videos, and other types of files from legal BitTorrent sites, then you may have found at times that your downloads can be painfully slow. To boost your file sharing download speeds, you can use a P2P accelerator program. In this tutorial, we'll show you how to use the freeware program, FeyAccelerator, to give your BitTorrent downloads a boost. This small program

How To Use Charles Web Debugging Proxy

Download Charles Proxy Debugging Tool [ link 1 | link 2 | link 3 ]
[instructions to get cracked version] .This version allows you to remove time limit and you can use all the features.

You will need JAVA to be able to run Charles. [Download]

1. After installing Charles, make sure the proxy is recording so just follow these settings in the screenshot.

How to Block/Bypass and Remove Survey Pop-ups

Survey pop-ups are one of the most annoying stuff on the web, specially while watching free tv episodes. The sad part is some of the popular sites are killing their visitors by adding CPAlead and other survey ads. These types of ads can only be skipped after completing a survey.

While most of the surveys are scams or requires money to complete, they are bound to get on your nerves. Sometimes, you might not have any alternative but to complete the survey. Not to worry, we have 2 simple hacks to bypass cpalead survey ads which are explained in detail below.

How To Get All Apps For Free On Any Android Phone

this is going to be a short tutorial on how to get any paid app for free on the new htc evo the first 4g phone from sprint, also the DROID from verizon Or any other andriod phone.

Step by step:

How to Use Google external keyword tool


How to Use Google external keyword tool

iDFX Plus Make your iPod sound better

What is iDFX?

iDFX is a software accessory for iTunes. By using advanced patent-pending processing, iDFX enhances your existing MP3 and AAC song files, and for the first time your iPod will provide the rich full sound quality of the original CD recordings.

iDFX Key Features:
  • Enhances your entire iTunes library with one click
  • Automatically sets all songs to the same playback volume
  • Full speed CD ripping with iDFX enhancement applied
Link download mediafire

For direct - download

Boot Multiple ISO from USB (MultiBoot USB)

How to create a Multiboot USB Flash Drive that you can use to Boot Multiple ISO Files from USB. Please note that you might need a 8GB-16GB or larger USB flash device to be able to support every bootable ISO entry. I will update and add more Bootable ISO files to the list as I find the time to test them. You can also contact me to submit working Bootable Linux ISO menu.lst entries for inclusion.

MultiBoot USB Menu (Simply select an ISO to boot from USB)

Saturday, December 4, 2010

Cara Bikin Webserver Blog Sendiri di Rumah

auto backlink Auto Insert



  just change cupre.info with ur   ,,,


http://www.urltrends.com/viewtrend.php?url=cupre.info

Solaris IPv6 tunnel setup

IPv4 Internet addresses, 32 bits in length, are running out. The replacement is IPv6 addresses, which are 128 bits. Ten years ago, IPv6 was in an experimental stage for several operating systems. On Linux, experimental patches, modules, and binaries were available, which I cobbled together to enable IPv6 on my home network. To test my old IPv6 setup, I decided to join a IPv6 test network, 6bone which was composed mainly of IPv6 over IPv4 tunnels. My main contribution was correcting & clarifying Peter Bieringer's Linux+IPv6 HOWTO.
Since IPv4 addresses are running out, it may be a good idea to IPv6-enable your computer or network IPv6 enabled. I'll show you how you can configure a Solaris system using Hurricane Electric's (HE's) free IPv6 over IPv4 tunnel service, which uses IP Protocol 41. This tunnel allows you to connect your IPv6-enabled computer or network (at home or work) to HE's IPv6 network. This is necessary because most ISPs don't

Thursday, December 2, 2010

Seting up a new ssh user on a centos box

I'm new to setting up users on SSH. I have a centos bos, but not sure how to setup new users so that they are able to connect via ssh

Answer

In a default configuration, with ssh enabled, all normal users are allowed to connect via ssh.
To create normal users you can use either the system-config-users tool, or the useradd command.
To check if sshd is running type

chkconfig --list sshd
And look for output similar to

sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

Moreover, the firewall must also allow ssh. Default behavior during install is to have ssh enabled, with the firewall allowing access. You can configure the firewall by using the system-config-securitylevel-tui utility and selecting 'Customize'. Or you can check the firewall configuration directly by issuing

iptables -L

My Mine