The latest version of thunderbird (since the 2.0) has supported gmail very thoroughly. It’s very easy to configure gmail or googlemail in Thunderbird. You just have to insert the username of your gmail account only, it’s very practical compared to other mail clients eg:outlook and evolution.

configuring gmail on thunderbird 2

First, you have to click Account Settings menu,

configuring gmail on thunderbird

Then choose gmail as your type of account you would like to setup.

configuring gmail on thunderbird

Then choose your user name. this user name can be different than your original name you entered while you signed up on gmail. and enter your email address of your gmail account too.

Click next, don’t forget to enable the POP and SMPT to let Thunderbird use the POP and SMTP.

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

PressMark, a fork of WordPress, is one of the best CMS for bookmarking system. You can download it from here. It was developed mainly by alex girard whose blog’s entry was here.

From his name, i thought he was a france or other west european country citizen….Overall, this CMS is great and out of the box… Try it…

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

A computer ideally should be able to be utilized by more than one persons To accommodate this, a multiuser operating system should be able to accomodate multi user accounts.

Linux is one of multi user operating systems. To make add new users in Linux, you can do this:

First, click the System > Administration > Users and Groups menu.

A Users settings window will appear, click the Add User button.

In Account tab, you can enter the information about the account that will be created.

Enter the privilige level you want to give at the User Privilege tab. Give check on the items you want to allocate and remove the check from items you don’t want to allocate.

Click Ok, a new user will automatically created…….

Tags: , , , , , , , ,

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

First, you have to get a Public IP to ISP, with it’s gateway, netmask, broadcast and the DNS. Then you have to provide at least two ethernet card. One to the network, and one to the internet.

Then configure eth0 and eth1 by executing

sudo gedit /etc/network/interfaces

internet gateway linux

Then insert this code:

#Ethernet that is connected to the ISP
auto eth0
iface eth0 inet static
address [ public ip for ubuntu pc]
gateway [ public ip from ISP]
netmask [netmask from ISP]
dns-nameserver [dns ip dari ISP]

#For the networks
auto eth1
iface eth1 inet static
address [ private ip for ubuntu pc]
gateway [public ip eth0]
netmask [netmask ip LAN]

Now, activate the IP forwarding by editing sysctl.conf file using this command:

# gedit /etc/sysctl.conf

ip tables

Erase the (#) sign so the content of sysctl.conf will looks like picture above

Stops the ip tables by executing:

#/etc/init.d/iptables stop

Execute this commands:

#iptables -t nat -A POSTROUTING -o eth0 -s [ip network private/24=eth1] -j SNAT –to-source [ip public=eth0]
#iptables-save /etc/sysconfig/iptables
#/etc/init.d/iptables restart
#iptables-save

Then Restart

/etc/init.d/network restart

Now, you’ll have to set the Default Gateways on the client computers.

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

FTP server can be used to handle FTP services, so the client can store file and also download a file from the FTP server. In Linux, it’s easy and free to build an FTP server. Here’s the guide:

First, install PROFTPD by executing

# apt-get install proftpd

proftpd

During installation, you’ll be asked whether you want to run proftpd from inetd or standalone. If the traffic is abundant, choose Standalone.

proftpd

After installed, you now, have to configure by opening proftpd.conf file.

# gedit /etc/proftpd/proftpd.conf

proftpd.conf

Give a code like below, it will set as a read only directory…

<Anonymous ~ftp>
User ftp
Group nogroup
UserAlias anonymous ftp
DirFakeUser on ftp
DirFakeGroup on ftp
RequireValidShell off
MaxClients 10
DisplayLogin welcome.msg
DisplayFirstChdir .message
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
</Anonymous>

Restart the FTPD, you can use this command:

# /etc/init.d/proftpd restart

For Read/Write, you can use this script:

<Anonymous ~ftp>
User ftp
Group nogroup
UserAlias anonymous ftp
DirFakeUser on ftp
DirFakeGroup on ftp
RequireValidShell off
MaxClients 10
DisplayLogin welcome.msg
DisplayFirstChdir .message
</Anonymous>

Now, you’ll be able to connect to your FTP Server using ftp client softwares, eg: filezilla.

proftpd

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

There are many free softwares to download, the lates Free DOwnload Manager is totally great. It can be utilized to download nearly all kind of download methods, eg: bittorrent (via plugins), Youtube, and can customize the downloaded files into music, software, and other categories.

free download manager

To download, just click the plus sign computer learning and then enter the uRl of the file you want to download. Or you may drop down the link from browser to the drop box provided by the free download manager.

Tags: , ,

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

I am currently using Samsung Z170, this gadget is automatically detected in Linux (i use slackware for this testing) as tttACM0. Then, open /etc/wvdial.conf, just enter the connection infromation, eg:

[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = AT+CGDCONT=1,”IP”,”insert_APN_name”
Modem = /dev/ttyACM0
Phone = *insert your dial phone#
Idle Seconds = 300
Modem Type = USB Modem
Stupid Mode = 1
Compuserve = 0
Baud = 460800
Auto DNS = 1
Dial Command = ATDT
Ask Password = 0
ISDN = 0
Password = ”
Username = ”

To let wvdial don’t ask password each time you dial, the password and username should be two ‘ (single quotation) character.

Tags: , ,

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments
  • description
  • description
  • IndianPad
  • Internetmedia
  • kick.ie
  • LinkedIn
  • MyShare
  • MySpace
  • Ping.fm
  • Slashdot
  • SphereIt
  • Spurl
  • StumbleUpon
  • Symbaloo
  • Technorati
  • Webnews.de
  • Yahoo! Buzz

If you find this blog is beneficial, you can donate some money to our management by using paypal. Thanx before. The money will be utilized to enhance the content and paying some professional contributors on our blog.

Thanks before…

Tags: ,

Gracias…senor

Feel free to social bookmark this page :
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Blogosphere News
  • blogtercimlap
  • Bumpzee
  • co.mments