Chilean IT Industry Makes Significant Gains in 2010

No Comments

 

(The Hosting News) – Chilean IT companies announced US$3.5 billion in IT revenue in 2010, an 18.5 percent growth over the previous year and a 1.7 percent of the total economy. The Chilean government continues to invest in IT as part of its plan to grow the overall economy and bring outside technology companies to the region. The country is also committed to increasing its services to other countries, particularly the U.S., through government-backed organizations like ProChile, Corfo, Start-Up Chile and Chile-IT. Additionally, Chile’s IT expertise continues to grow through its IT university graduates and workforce, cultivating high-tech education throughout Chile.

“The Chilean infrastructure has strengthened exponentially since last year – the economy is strong, and we are more and more being recognized as a leader in the global market,” said Carlos Fernandez, CEO of Chile-IT. “With cultural similarities to the U.S., time-zone capability and a tech-savvy demographic, Chile is becoming a central IT hub for South America. The government is firmly committed to making the technology industry a priority and we are excited for the continuing growth of the industry in 2011 and beyond.”

With more than 500 IT companies, the country has become an international leader in Latin America for its technology resources and has shaped itself to be a prime market for multi-national companies. Significant highlights from 2010 include:

IT Company Imports: the Chilean government has invested in organizations in Chile, such as ProChile, Corfo, Start-Up Chile and Chile-IT to help grow the IT industry in Latin America and provide them with the resources they need to enter and expand within the U.S. Start-Up Chile, for example, is an organization that seeks to attract foreign entrepreneurs to Chile and aid the country in achieving its goal of becoming a global innovation hub.. Additionally, more than 60 multi-national companies including McAfee, Certifica (part of comScore) and Worleyparsons opened offices in Chile for business expansion.

IT Services Exports: Chile-IT, a government-backed association for the Chilean IT industry comprised of Chile’s top and most established technology companies, is tasked with expanding the IT expertise in Chile beyond its borders and into international markets, starting with the U.S. Since the organization’s founding in 2009, Chile-IT has been hard at work helping its member companies form partnerships with U.S. companies and partners. In total, Chile-IT and its member companies have generated $5M in U.S. sales alone in 2010.

High Tech Education: Chile takes great measures to cultivate its native IT community. The country’s university degrees in IT and number of IT students – currently 55,000 – have the highest growth rate against other education areas.

More information about Chile’s technology economy and organizations that support its growth can be found athttp://www.prochile.us/http://www.startupchile.orghttp://www.chile-it.comhttp://www.corfo.cl and http://www.acti.cl

 

Source - http://www.webhostingtalk.com/news/chilean-it-industry-makes-significant-gains-in-2010/

Add This! Blinkbits Blinklist Blogmarks BlogMemes BlueDot BlogLines co.mments Connotea del.icio.us de.lirio.us Digg Diigo DZone Facebook FeedMeLinks Folkd.com Fleck Furl Google Google Reader icio.de IndianPad Leonaut LinkaGoGo Linkarena Linkter Magnolia Mister Wong MyShare Ask.com MyStuff Ask.com Yahoo! MyWeb Netscape Netvouz Newsgator Newsvine Oneview.de RawSugar reddit Rojo Segnalo Shadows Simpy SlashDot Smarking Sphere Spurl Startaid StumbleUpon TailRank Technorati ThisNext yigg.de Webnews.de ReadMe.ru Dobavi.com Dao.bg Lubimi.com Ping.bg Pipe.bg Svejo.net Web-bg.com Plugin by Dichev.com

Install DD-WRT on your router

No Comments

Hello everybody, now a days people use router for wifi connections, sharing more than 2 computers. Every router comes with its firmware. But what is firmware ?

In electronics and computing, firmware is a term often used to denote the fixed, usually rather small, programs and/or data structures that internally control various electronic devices.

People use different firmwares to make router more powerful. One of the famous firmware is DD-WRT.

DD-WRT is a Linux based alternative OpenSource firmware suitable for a great variety of WLAN routers and embedded systems. The main emphasis lies on providing the easiest possible handling while at the same time supporting a great number of functionalities within the framework of the respective hardware platform used.

DD-WRT is a Linux-based firmware for several wireless routers, most notably the Linksys WRT54G (including the WRT54GL and WRT54GS). Like other similar projects, DD-WRT is considered a third-party firmware solution designed to replace the firmware that ships pre-installed on many commercial routers. This is done for a variety of reasons; including but not limited to the addition of features which are not typically included in a manufacturer’s router firmware.

DD-WRT includes such features as support for the Kai network, daemon-based services, IPv6, Wireless Distribution System, RADIUS, advanced quality of service, radio output power control, overclocking capability, and software support for a Secure Digital Card hardware modification.

Watch the following video before installing DD-WRT on your Router

YouTube Preview Image
Add This! Blinkbits Blinklist Blogmarks BlogMemes BlueDot BlogLines co.mments Connotea del.icio.us de.lirio.us Digg Diigo DZone Facebook FeedMeLinks Folkd.com Fleck Furl Google Google Reader icio.de IndianPad Leonaut LinkaGoGo Linkarena Linkter Magnolia Mister Wong MyShare Ask.com MyStuff Ask.com Yahoo! MyWeb Netscape Netvouz Newsgator Newsvine Oneview.de RawSugar reddit Rojo Segnalo Shadows Simpy SlashDot Smarking Sphere Spurl Startaid StumbleUpon TailRank Technorati ThisNext yigg.de Webnews.de ReadMe.ru Dobavi.com Dao.bg Lubimi.com Ping.bg Pipe.bg Svejo.net Web-bg.com Plugin by Dichev.com

How to Compile Linux kernel 2.6

No Comments

How to Compile Linux kernel 2.6
Start…

Compiling custom kernel has its own advantages and disadvantages. However, new Linux user / admin find it difficult to compile Linux kernel. Compiling kernel needs to understand few things and then just type couple of commands. This step by step howto covers compiling Linux kernel version 2.6.xx under Debian GNU Linux. However, instructions remains the same for any other distribution except for apt-get command.

Step # 1 Get Latest Linux kernel code

Visit http://kernel.org/ and download the latest source code. File name would be linux-x.y.z.tar.bz2, where x.y.z is actual version number. For example file Linux-2.6.25.tar.bz2 represents 2.6.25 kernel version. Use wget command to download kernel source code:
$ cd /tmp
$ wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-x.y.z.tar.bz2

Note: Replace x.y.z with actual version number.

Step # 2 Extract tar (.tar.bz3) file

Type the following command:
# tar -xjvf linux-2.6.25.tar.bz2 -C /usr/src
# cd /usr/src

Step # 3 Configure kernel

Before you configure kernel make sure you have development tools (gcc compilers and related tools) are installed on your system. If gcc compiler and tools are not installed then use apt-get command under Debian Linux to install development tools.
# apt-get install gcc

Now you can start kernel configuration by typing any one of the command:

* $ make menuconfig – Text based color menus, radiolists & dialogs. This option also useful on remote server if you wanna compile kernel remotely.
* $ make xconfig – X windows (Qt) based configuration tool, works best under KDE desktop
* $ make gconfig – X windows (Gtk) based configuration tool, works best under Gnome Dekstop.

For example make menuconfig command launches following screen:
$ make menuconfig

You have to select different options as per your need. Each configuration option has HELP button associated with it so select help button to get help.

Step # 4 Compile kernel

Start compiling to create a compressed kernel image, enter:
$ make
Start compiling to kernel modules:
$ make modules

Install kernel modules (become a root user, use su command):
$ su -
# make modules_install

Step # 5 Install kernel

So far we have compiled kernel and installed kernel modules. It is time to install kernel itself.
# make install

It will install three files into /boot directory as well as modification to your kernel grub configuration file:

* System.map-2.6.25
* config-2.6.25
* vmlinuz-2.6.25

Step # 6: Create an initrd image

Type the following command at a shell prompt:
# cd /boot
# mkinitrd -o initrd.img-2.6.25 2.6.25

initrd images contains device driver which needed to load rest of the operating system later on. Not all computer requires initrd, but it is safe to create one.

Step # 7 Modify Grub configuration file – /boot/grub/menu.lst

Open file using vi:
# vi /boot/grub/menu.lst

title Debian GNU/Linux, kernel 2.6.25 Default
root (hd0,0)
kernel /boot/vmlinuz root=/dev/hdb1 ro
initrd /boot/initrd.img-2.6.25
savedefault
boot

Remember to setup correct root=/dev/hdXX device. Save and close the file. If you think editing and writing all lines by hand is too much for you, try out update-grub command to update the lines for each kernel in /boot/grub/menu.lst file. Just type the command:
# update-grub
Neat. Huh?

Step # 8 : Reboot computer and boot into your new kernel

Just issue reboot command:
# reboot

Add This! Blinkbits Blinklist Blogmarks BlogMemes BlueDot BlogLines co.mments Connotea del.icio.us de.lirio.us Digg Diigo DZone Facebook FeedMeLinks Folkd.com Fleck Furl Google Google Reader icio.de IndianPad Leonaut LinkaGoGo Linkarena Linkter Magnolia Mister Wong MyShare Ask.com MyStuff Ask.com Yahoo! MyWeb Netscape Netvouz Newsgator Newsvine Oneview.de RawSugar reddit Rojo Segnalo Shadows Simpy SlashDot Smarking Sphere Spurl Startaid StumbleUpon TailRank Technorati ThisNext yigg.de Webnews.de ReadMe.ru Dobavi.com Dao.bg Lubimi.com Ping.bg Pipe.bg Svejo.net Web-bg.com Plugin by Dichev.com

FreeBSD Install and Configure Webmin Web-based Interface ( Control Panel )

No Comments

Q. How do I install webmin control panel for my FreeBSD server?

A. Webmin is a web-based interface for system administration for Unix including FreeBSD. Using any browser that supports tables and forms, you can setup user accounts, Apache, DNS, file sharing, firewall and so on. Webmin consists of a simple web server, and a number of CGI programs which directly update system files like /etc/inetd.conf and /etc/master.passwd.
Install webmin

To install webmin, update your ports, enter:

# portsnap fetch update

Install webmin from /usr/ports/sysutils/webmin, enter:

# cd /usr/ports/sysutils/webmin
# make install clean
Configure webmin

Now, webmin is installed. Start webmin on startup, enter:

# vi /etc/rc.conf
Append following line:
webmin_enable=”YES”

Save and close the file. You need to run /usr/local/lib/webmin/setup.sh script in order to setup the various config files, enter:

# /usr/local/lib/webmin/setup.sh

Sample output:

***********************************************************************
* Welcome to the Webmin setup script, version 1.420 *
***********************************************************************
Webmin is a web-based interface that allows Unix-like operating
systems and common Unix services to be easily administered.

Installing Webmin in /usr/local/lib/webmin …

***********************************************************************
Webmin uses separate directories for configuration files and log files.
Unless you want to run multiple versions of Webmin at the same time
you can just accept the defaults.

Log file directory [/var/log/webmin]: [Press Enter]

***********************************************************************
Webmin is written entirely in Perl. Please enter the full path to the
Perl 5 interpreter on your system.

Full path to perl (default /usr/bin/perl): [Press Enter]

Testing Perl …
Perl seems to be installed ok

***********************************************************************
Operating system name: FreeBSD
Operating system version: 7.0

***********************************************************************
Webmin uses its own password protected web server to provide access
to the administration programs. The setup script needs to know :
– What port to run the web server on. There must not be another
web server already using this port.
– The login name required to access the web server.
– The password required to access the web server.
– If the webserver should use SSL (if your system supports it).
– Whether to start webmin at boot time.

Web server port (default 10000): [Press Enter]
Login name (default admin): [Press Enter]
Login password: [type password]
Password again:
Use SSL (y/n): y
***********************************************************************
Creating web server config files..
..done

Creating access control file..
..done

Creating start and stop scripts..
..done

Copying config files..
..done

Changing ownership and permissions ..
..done

Running postinstall scripts ..
..done

How do I view webmin?

Fire a webbrowser and enter url:

https://your-domain.com:10000/

OR

https://your-server-ip:10000/

You should see login html form as follows:

(Fig. 01: – Webmin in action under FreeBSD)

Add This! Blinkbits Blinklist Blogmarks BlogMemes BlueDot BlogLines co.mments Connotea del.icio.us de.lirio.us Digg Diigo DZone Facebook FeedMeLinks Folkd.com Fleck Furl Google Google Reader icio.de IndianPad Leonaut LinkaGoGo Linkarena Linkter Magnolia Mister Wong MyShare Ask.com MyStuff Ask.com Yahoo! MyWeb Netscape Netvouz Newsgator Newsvine Oneview.de RawSugar reddit Rojo Segnalo Shadows Simpy SlashDot Smarking Sphere Spurl Startaid StumbleUpon TailRank Technorati ThisNext yigg.de Webnews.de ReadMe.ru Dobavi.com Dao.bg Lubimi.com Ping.bg Pipe.bg Svejo.net Web-bg.com Plugin by Dichev.com

Windows Server 2008 Simple Activation Crack

No Comments

Simple way to activate Windows Server 2008

1)  Install Windows Server 2008 [ Any Version ].
2)  Click START / RUN / type SERVICES.
3)  Double click on SOFTWARE LICENSING on startup type choose DISABLED.
4) Restart Computer.
5)  Go to: C:\Windows\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\ SoftwareLicensing\
6)  DELETE the Tokens.dat and put this:http://www.mediafire.com/?ojydwnnntdk
7)  Go again do SERVICES. Double click on SOFTWARE LICENSING on sturtup type choose AUTOMATIC.
8)  Use the vistaactivation.exe , Activate like you have a Windows Vista ULTIMATE. Forget the ERROR´s , No Problem it´s normal that errors.
9) RESTART Computer.
10) The Windows Server 2008 Start and ask for a Serial Key , Use This: 6F2D7-2PCG6-YQQTB-FWK9V-932CC
11)  Windows Server 2008 is Activated :) i realy install the upgrades and works 100%.

Tokens.dat + Serial + vistaactivation.exe

Mirror : http://rapidshare.com/files/429961673/Win2008_Crack_by_TeAr.rar

Add This! Blinkbits Blinklist Blogmarks BlogMemes BlueDot BlogLines co.mments Connotea del.icio.us de.lirio.us Digg Diigo DZone Facebook FeedMeLinks Folkd.com Fleck Furl Google Google Reader icio.de IndianPad Leonaut LinkaGoGo Linkarena Linkter Magnolia Mister Wong MyShare Ask.com MyStuff Ask.com Yahoo! MyWeb Netscape Netvouz Newsgator Newsvine Oneview.de RawSugar reddit Rojo Segnalo Shadows Simpy SlashDot Smarking Sphere Spurl Startaid StumbleUpon TailRank Technorati ThisNext yigg.de Webnews.de ReadMe.ru Dobavi.com Dao.bg Lubimi.com Ping.bg Pipe.bg Svejo.net Web-bg.com Plugin by Dichev.com

Older Entries