Main Menu

friends

Banner

Latest articles

find files not owned by any user or group
29/12/2009 | mad mad mod

  From time to time you should check your systems for files not owned by any user or group. Every file on a system should have a valid owner (user and group).  The command to search for [ ... ]


Hello World in perl
18/11/2009 | mad mad mod

This article describes how to write and execute a "Hello World" perl script on Linux (Fedora).  1. the prerequisitesa text editor of your choice (e.g. vi)the perl interpreter
make sure you have in [ ... ]


Other Articles

Designed by:
SiteGround web hosting Joomla Templates
mad mad mod
NASA: 2012: Beginning of the End or Why the World Won't End? E-mail
Internet Curiosities

 

 

NASA F.A.Q. about 2012: http://www.nasa.gov/topics/earth/features/2012.html

 

 

 

 

 
convert mysql table from MyISAM to InnoDB E-mail
sysadmin

MyISAM is the default storage engine for MySQL. Unfortunately it doesn't support transactions or foreign keys (but it has some other nice features like compression). However, because InnoDB does support transactions and foreign keys you might want to change your tables from MyISAM to InnoDB storage-Engine

If you are not sure which storage engine you should use you should also have a look at this great site: http://www.mysqlperformanceblog.com/2009/01/12/should-you-move-from-myisam-to-innodb/ 

 

Step 1: check your my.cnf configfile

 

change this line

 

skip-innodb

 

to

 

 

# skip-innodb

 

now restart mysql:

 

# /etc/init.d/mysql restart

the location of the mysql start script depends on your Linux distribution and  mysql implementation.

 

 

Step 2: convert the table to InnodB

 

start the MySQL command-line interface, switch to your database and alter the table you want to convert:

 

mysql> ALTER table mytable ENGINE=Innodb;

 

 

 

 
How to fake the mac address on Linux E-mail
sysadmin

Step 1. shutdown the interface (e.g. eth0)



# ifconfig eth0 down



Step 2: change the mac address to e.g. 11:22:33:44:55:66



# ifconfig eth0 hw ether 11:22:33:44:55:66



Step 3. restart the interface



# ifconfig eth0 up

 

 

 

 
mad mad mod, Powered by Joomla! and designed by SiteGround web hosting