Connexion au reseau freewifi

-Etre abonne aux reseaux free(freetelecom)
-Activer l’option freewifi sur votre interface de gestion de compte free
-Aller sur https://wifi.free.fr
-Ajouter le code affiche(4 chiffres) sur votre modem freebox
-Le systeme vous propose ensuite un code de 10 a 20 caracteres(c est ce code pour se connecter sur le reseau freewifi)
-Entrer votre mot de passe concernant le freewifi
Et voila, vous pouvez utiliser le reseau freewifi disponible partout en France.

Esxi to USB

First get the following tools: 7-Zip(Free), WinImage(Demo)
Download the ESXi ISO
Open the ISO with 7-Zip
Extract “install.tgz”
Open “install.tgz” with 7-Zip
Click on “install.tar”
Browse to “usr\lib\vmware\installer\”
Open “VMware-VMvisor-big-3.5.0_Update_2-103909.i386.dd.bz2″
Extract “VMware-VMvisor-big-3.5.0_Update_2-103909.i386.dd”
Open WinImage and go to Disk, click on “Restore Virtual Harddisk Image on physical drive”
Select a physical drive
Select “VMware-VMvisor-big-3.5.0_Update_2-103909.i386.dd”
And click “yes” to write the DD image to the USB Disk

Réinitialisation de la PRAM et de la NVRAM

Réinitialisation de la PRAM et de la NVRAM

– Éteignez l’ordinateur.
– Localisez les touches suivantes sur le clavier : Commande, Option, P et R. Maintenez ces touches enfoncées simultanément à l’étape 4.
– Allumez l’ordinateur.
– Appuyez sur Commande-Option-P-R et maintenez ces touches enfoncées. Vous devez appuyer sur ces touches avant que l’écran gris n’apparaisse.
– Maintenez les touches enfoncées jusqu’à ce que l’ordinateur redémarre et que vous entendiez le bruit de démarrage pour la seconde fois.
– Relâchez les touches.

Pour information, on utilise la commande suivante pour afficher les données dans le nvram:

#nvram -p

 

Clearing the Administrator password in Windows XP

-boot Parted Magic on the machine you wish to modify. After you have booted into Parted Magic, mount the partition that Windows is installed on. You can do this by clicking the Mount Devices icon on the desktop and then clicking Mount on the appropriate partition. In my case, it is ”/media/sda1.”
-Once the drive is mounted, open a terminal and type the following command. Be sure to replace sda1 with whatever is appropriate in your case.

root@PartedMagic:~# chntpw /media/sda1/WINDOWS/system32/config/SAM

You will then be presented with the menu. Type 1 and press enter to clear the password.

fullname:
comment : Built-in account for administering the computer/domain
homedir :

User is member of 1 groups:
00000220 = Administrators (which has 1 members)

Account bits: 0x0210 =
[ ] Disabled | [ ] Homedir req. | [ ] Passwd not req. |
[ ] Temp. duplicate | [X] Normal account | [ ] NMS account |
[ ] Domain trust ac | [ ] Wks trust act. | [ ] Srv trust act |
[X] Pwd don’t expir | [ ] Auto lockout | [ ] (unknown 0x08) |
[ ] (unknown 0x10) | [ ] (unknown 0x20) | [ ] (unknown 0x40) |

Failed login count: 0, while max tries is: 0
Total login count: 16

– – – – User Edit Menu:
1 – Clear (blank) user password
2 – Edit (set new) user password (careful with this on XP or Vista)
3 – Promote user (make user an administrator)
(4 – Unlock and enable user account) [seems unlocked already]
q – Quit editing user, back to user select
Select: [q] > 1

You will then be asked to write the registry hive to disk. Type y and press enter.

Rechercher/tuer les process bloquants sous linux

….
il est possible qu’un autre processus utilise à ce moment-là ce système de fichier (ce qui fera échouer le montage avec une erreur du genre resource busy). Il y a un programme qui peut envoyer un signal à tout processus utilisant un fichier ou point de montage donné : c’est fuser. Pour la partition /usr, essayez ceci :

# fuser -v -m /usr

Cela aura pour effet d’afficher la liste des processus concernés. En admettant qu’aucun d’entre eux n’est vital, vous pouvez taper

# fuser -k -v -m /usr

afin d’envoyer à chaque processus un SIGKILL (qui le tuera d’autorité), ou, par exemple,

# fuser -k -TERM -v -m /usr

pour envoyer plutôt à chacun un SIGTERM (qui priera le processus de terminer proprement).