May 2008 Archives

May 23, 2008

Bell Canada Video Store

Posted by Martin Perron in Videos No comments

Hey oui! Bell Canada a ouvert son magasin de vidéos en ligne. Vous pouvez maintenant acheter ou louer un film (en contenu téléchargeable) via leur site web:
http://www.bellvideostore.ca/
Pour environ 3.99$ vous pouvez louer une copie d’un film!
Voilà!


May 5, 2008

Nouvel album de Nine Inch Nails “Open Source”

Posted by Martin Perron in Albums Reviews No comments

Wow! Nine Inch Nails rapplique avec un nouvel album The Slip sous la licence creative commons
Et oui, peu de temps après la sortie de Ghost I-V, NIN cette fois-ci offre un album non-instrumental de façon gratuite sans avoir à donner un don.

Voici le lien: http://theslip.nin.com/
Liens de la licence Creative Commons: http://creativecommons.org/weblog/entry/8267


May 5, 2008

Gala Blogu’Or 2008

Posted by Martin Perron in News No comments

Wow! Merci à ceux qui on voté pour que je sois en nomination dans la section Meilleur Blogue Techno.
Bien que mon site soit plutôt mal conçu visuellement et n’intéresse que les “true geeks”, ça fait chaud au coeur de savoir que je suis en nomination avec des blogues tel que Radio-Canada, Branchez-vous, Cyberpresse et j’en [...]


May 2, 2008

Force Permission for a specific user with umask

Posted by Martin Perron in HowTo - Linux No comments

# nano /home/username/.bashrc
Add the following line or modify it (for rwx-rwx-rwx)
umask 0000
Save and close the file, then:
# source /home/username/.bashrc
But what is 0022 and 0002?
The default umask 0002 used for normal user. With this mask default directory permissions are 775 and default file permissions are 664.
The default umask for the root user is 0022 [...]


May 1, 2008

Configure a samba share with credentials in /etc/fstab

Posted by Martin Perron in HowTo - Linux No comments

first you have to create a file that have the credential
As root:
# mkdir /home/smbcredentials
# nano /home/smbcredentials/NameOfTheMachine (if you want to add more machine credentials)
Add the following line to /etc/fstab
//netbiosname/sharename /media/sharename cifs credentials=/home/smbcredentials/NameOfTheMachine ,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
Important: Make sure the line above is in one line on /etc/fstab. Also, you can put [...]