Archive
Linux distroak
Antivirus – Antibirus – Segurtasuna
Birusak dituen sistema bat desinfektatzeko informazioa:
knoppix + clamAv
10 Best Security Live CD Distros (Pen-Test, Forensics & Recovery)
Linux Antivirus (ClamAV, F-prot, Grisoft AVG and BitDefender)
Top 100 Network Security Tools
Segurtasunari buruz :
http://www.hermann-uwe.de
http://www.forensicswiki.org/wiki/Main_Page
Basque Substation of the Internet
Beste post batean “Subway Stations of the Internet” sarrera bat egin nuen bertan web 2.0 aplikazioak metro mapa batean antolatuta agertzen direlarik. Orain, “Basque Substation of the Internet” agertzen zaigu. Euskal web 2.o aplikazioak:

VMware Converter: Cómo virtualizar tu Windows “real”
La situación de partida es la siguiente: tienes un sistema con Windows XP ya funcionando y quieres obtener una copia exacta del mismo para poder ejecutarla virtualizada en otro equipo distinto, o en el mismo equipo pero bajo otro sistema operativo (una partición Linux en un sistema de arranque dual, por ejemplo).
Cómo virtualizar una partición Windows ya existente
Artikulu interesgarri honetan ondorengoa nola egin azaltzen da:
Suposatu bi partizio ditugula, batean linux eta bestean windows xp. Linux martxan dugul, windowseko beste partizioa birtualizazioz exekutatzen dugu eta gainera bertan egindako aldaketak, partizioan gordetzen dira. –> PROBATZEKO!!
vmware erabiltzen du
QEMU-Puppy: Tu PC de bolsillo
Irakurri. Linux exekutatzeko aukera USB pend drive batetik Windows XP martxan dagoen bitartean, …
Instalazio egiteko garaian, tutorialean agertzen diren pausoez aparte, ondorengo instalazioak (eta aginduak) egin behar izan ditut:
…
# apt-get install dosfstools
# mkfs.vfat -F32 /dev/sde1
…
$sudo apt-get install mbr
$sudo install-mbr /dev/sde
$sudo apt-get install syslinux mtools
…
Clonezilla
Backup, klonazioa, .. egiteko zenbait tresna:
http://gparted.sourceforge.net/
http://clonezilla.sourceforge.net/gparted-clonezilla/
…
Zerrenda interesgarri bat, hemen
You’re probably familiar with the popular proprietary commercial package Norton Ghost®, and its OpenSource counterpart, Partition Image. The problem with these software packages is that it takes a lot of time to massively clone systems to many computers. You’ve probably also heard of Symantec’s solution to this problem, Symantec Ghost Corporate Edition® with multicasting. Well, now there is an OpenSource clone system (OCS) solution called Clonezilla with unicasting and multicasting! With DRBL and network boot enabled client computers, the only thing you have to prepare is a Clonezilla server. You do not even have to prepare a bootable CD or floppy with Partition Image for every client computer.
Clonezilla, based on DRBL, Partition Image, ntfsclone, and udpcast, allows you can massively clone many (40 plus!) computers simultaneously. Unlike G4U (Ghost for Unix)G4L (Ghost for Linux), Clonezilla saves and restores only used blocks in the harddisk. This increases the clone effiency. At the NCHC’s Classroom C, Clonezilla was used to clone 41 computers simultaneously. It took about 50 minutes to clone a 5.6 GBytes system image to all 41 computers via unicasting and only about 10 minutes via multicasting! or
Clonezilla – Live: Honen bidez, PCa hasieratu eta CD baten bidez Clonezilla eta pqmagic (GParted) moduko aplikazioak dauzkagu erabilgarri. Irudiak eta partizioak egiteko.
Nola erabili, adibide bat
PROBATZEKO!!
Nola instalatu WordPress USB memoria batean
Pausoetan izandako arazo bat, xampp instalatzeko garaian xampplite erabili dut eta .zip jaitsi ondoren direktorio bakar batean jarri behar da konprimitutakoa.
»I want to start XAMPP without setup!«
If you extract XAMPP in a top level folder like c:\xampp or d:\xampp etc., you can start XAMPP directly. That means you do not need to execute the “setup_xampp.bat” at all. Apache, MySQL and Mercury Mail server will start up correctly! FileZilla FTP server will not start because it requires absolute paths. Please note: Do not use a double-xampp-folder like c:\xampp\xampp! You need a single-xampp folder like d:\xampp(\apache and so on). Otherwise you must run the “setup-xampp.bat” to set up the path configurations.
Nere kasuan xampplite direktorioa erabili dut!!
(kontuz!! honako hau gertatu zait: xampp direktorioa erbiliz mysql ez zebilen, konpontzeko \xampp\mysql\bin\my.conf fitxategi barruan xampplite agertzen den erreferentzietan xampp jarri behar da!!)
Pausoak (hemendik):
1. Xampp gure pendrive batean instalatu/kopiatu
2. wordpress jeitsi eta \xampp\htdocs direktorioan deskonprimitu
3. Mysql-n root erabiltzaileari pasahitza jarri:
\xampp\mysql\bin diretorioan dagoen mysqladmin agindua ejekutatu:
mysqladmin -u root password pasahitza
4. phpmyadmin konfiguratu root erabiltzailea erabiltzeko:
Open the “config.inc.php” in \xampp\phpmyadmin an edit following lines:
INSTEAD OF …
$cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = '';
NOW …
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'pasahitza';
5. Phpmyadmin erabiliz datubase bat sortu (http://localhost/phpmyadmin)
6. Rename the wp-config-sample.php file to wp-config.php.
7. Open wp-config.php in your favorite text editor and fill in your database details: hau da:
define('DB_NAME', 'wordpress'); // The name of the database
define('DB_USER', 'root'); // Your MySQL username
define('DB_PASSWORD', 'pasahitza'); // ...and password
8. Instalazio prozesua abiarazi: (suposatuz wordpress izeneko direktorioan dagoela)
http://localhost/wordpress/wp-admin/install.php
9….