Shaare your links...
410 links
peacecoLiens Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Voir tous les commentaires(24)
Links per page: 20 50 100
◄Older
page 1 / 21
  • traffic surprise
    Me lançant dans un fougueux ménage de mes ftps, me voila errant sur ma page perso free.
    Par pur curiosité je m'en vais regarder les stats. oO !!!
    une centaine de visiteur journalier en moyenne. Mais c'est énorme !!
    Bon je ne sais pas si ce sont des robots, des abonnés au flux rss, ou des erreurs, mais c'est fun.
    Bon le premier "visiteur" il semblerait que cela soit shaarli.fr (que je ne connaissais pas d'ailleurs)
    Bref bonne surprise pour moi :)

    Aller à peluche
    Wed 26 Aug 2015 01:34:05 AM UTC - permalink -
    - ?ALWkVw
    note traffic

    Commentaires(0)













  • Heu... comment dire...
    Je ne viens plus souvent par ici, mais je songe a "rebooter".
    Trop le bordel mon shaarli et surtout je suis pas vraiment rigoureux dans mon "taggage".
    A voir...
    Et puis free quoi...
    Tue 20 May 2014 11:32:57 AM UTC - permalink -
    - ?DdPCkA
    Note

    Commentaires(0)













  • Dealabs.com : Le laboratoire des bons plans !
    De bonne affaires!
    Thu 26 Sep 2013 08:28:18 PM UTC - permalink -
    - http://www.dealabs.com/hot.html
    commerce

    Commentaires(0)













  • Installer BitTorrent Sync proprement | La vache libre
    Propre  et net :)
    Sun 22 Sep 2013 04:14:07 PM UTC - permalink -
    - http://la-vache-libre.org/bittorrent-sync-proprement/
    bittorent_sync tuto

    Commentaires(0)













  • blog:2013:04:12:boinc_client [ReLoad]
    Installer boinc sur un serveur
    Sun 22 Sep 2013 11:57:09 AM UTC - permalink -
    - http://reload.eez.fr/blog:2013:04:12:boinc_client#readmore_blog_2013_04_12_boinc_client
    boinc serveur tuto

    Commentaires(0)













  • Differential backup using 7-zip cli for linux/windows | a32.Blog
    Faire du backup diffrentiel avec 7zip
    Sat 21 Sep 2013 10:21:43 PM UTC - permalink -
    - http://a32.me/2010/08/7zip-differential-backup-linux-windows/
    7zip

    Commentaires(0)













  • Mount remote ftp directory host locally into linux filesystem
    1. Installation

    First install curlftpfs package. On Debian or Ubuntu it would simple as:

    apt-get install curlftpfs

    2. Mount ftp directory

    What needs to be done next is to create a mount point:

    # mkdir /mnt/my_ftp

    next use curlftpfs to mount your remote ftp site. Suppose my access credentials are as follows:

       username: ftp-user
       password: ftp-pass
       host/IP: my-ftp-location.local

    the actual curlftpfs mount command would be:

    # curlftpfs ftp-user:
    ftp-pass@my-ftp-location.local /mnt/my_ftp/

    Caution:

    ftp uses unencrypted passwords so anyone can intercept your password without much effort. Therefore use curlftpfs in combination with SSL certificates if your are not mounting some local LAN ftp server.

    On Debian you can mount ftp using curlftpfs as a root and this allows only root user to access ftp mount. No other users are allowed since by default only users that mounts has and access to mount directory. When mounting ftp as a non-root user you may get a following error message:

    fuse: failed to open /dev/fuse: Permission denied

    Rather that changing permissions of /dev/fuse you can allow other users to access ftp mount directory with an curlftpfs's option allow_other. The command will look similar to the one below:

    # curlftpfs -o allow_other ftp-user:
    ftp-pass@my-ftp-location.local /mnt/my_ftp/

    3. Mount ftp with curlftpfs using /etc/fstab

    Since we do not want put any passwords to /etc/fstab file we will first create a /root/.netrc file with a ftp username and password using this format:

    machine my-ftp-location.local
    login ftp-user
    password ftp-pass

    Now change permissions of this file to 600:

    # chmod 600 /root/.netrc

    Check uid and gid of your non-root user. This user will have a access to ftp mount directory:

    $ id

    In the next step add a following line to your /etc/fstab file ( change credentials for your ftp user ):

    curlftpfs#my-ftp-location.local /mnt/my_ftp fuse allow_other,uid=1000,gid=1000,umask=0022 0 0

    Now mount ftp with:

    mount -a
    Thu 19 Sep 2013 09:19:29 PM UTC - permalink -
    - http://linuxconfig.org/mount-remote-ftp-directory-host-locally-into-linux-filesystem
    curlftpfs ftp

    Commentaires(0)













  • Litterature audio.com | Livres audio gratuits à écouter et télécharger
    Je me demande si c possible d'écouter ('lire?') en voiture :)
    Thu 19 Sep 2013 08:47:46 PM UTC - permalink -
    - http://www.litteratureaudio.com/
    litterature audio

    Commentaires(0)













  • Quelques limites de l'utilisation des données
    Les données ça veut tout dire et rien dire...
    Tue 17 Sep 2013 05:45:18 PM UTC - permalink -
    - http://blog.m0le.net/2013/08/01/quelques-limites-de-lutilisation-des-donnees/
    données information

    Commentaires(0)













  • Effectuer vos sauvegardes avec Duply
    Effectuer vos sauvegardes avec Duply

    written on Monday, September 17, 2012

    Duply est un frontal pour l’outil Duplicity, il permet d’effectuer des backups incrémental vers des serveurs de type FTP, SFTP, IMAP, Amazon S3, etc …, les sauvegardes peuvent être cryptées.

    Création d’un profil

    duply nom_profil create

    Cette commande crée un profil dans le répertoire /root/.duply/nom_profil/

    Paramétrage du profil

    Nous allons modifier le profil qui comprendra 3 fichiers de configuration:

       conf: Configuration du profil
       exclude: Fichiers à exclure lors de la sauvegarde
       pre: Tâche à exécuter avant de débuter la sauvegarde

    Contenu du fichier conf

    GPG_PW='clef_a_definir'
    TARGET='ftp://ftp.cendreo.com/duply'
    TARGET_USER='user'
    TARGET_PASS='userpass'
    SOURCE='/'
    MAX_FULL_BACKUPS=2

    Contenu du fichier exclude

    /bin
    /boot
    /dev
    /lib
    /lost+found
    /media
    /mnt
    /opt
    /proc
    /sbin
    /srv
    /sys
    /tmp
    /usr
    /var
    /data/nobackup
    /lib64
    /run

    Contenu du fichier pre

    Le fichier pre est un lien symbolique sur un exécutable que l’on désire exécuter avant de lancer le backup. Nous utilisons ici le script jsl-mysqlbackup.sh qui permet d’effectuer les backups MySQL.

    Planification des sauvegardes

    avec la commande crontab -e nous allons ajouter les lignes suivantes pour effectuer une sauvegarde incrémentale en semaine et une complète le Samedi.

    0 3 * * 0-5 duply mon_profil backup_purge_status --force
    0 3 * * 6 duply nom_profil pre_full_purge-full_status --force

    Vérification des sauvegardes

    root@w1:~/.duply/mon_profil# duply mon_profil status
    Start duply v1.5.2.3, time is 2012-09-17 19:38:40.
    Using profile '/root/.duply/mon_profil'.
    Using installed duplicity version 0.6.08b, gpg 1.4.10 (Home: ~/.gnupg)
    Test - Encryption with passphrase (OK)
    Test - Decryption with passphrase(OK)
    Test - Compare Original w/ Decryption (OK)
    Cleanup - Delete '/tmp/duply.18426.1347503520_*'(OK)

    --- Start running command STATUS at 19:38:41.055 ---
    NcFTP version is 3.2.4
    Local and Remote metadata are synchronized, no sync needed.
    Last full backup date: Sat Sep 15 03:11:08 2012
    Collection Status
    -----------------
    Connecting with backend: FTPBackend
    Archive dir: /root/.cache/duplicity/duply_mon_profil

    Found 1 secondary backup chain.
    Secondary chain 1 of 1:
    -------------------------
    Chain start time: Sat Sep  8 03:10:59 2012
    Chain end time: Fri Sep 14 03:11:06 2012
    Number of contained backup sets: 7
    Total number of contained volumes: 1904
    Type of backup set:                            Time:      Num volumes:
    Full         Sat Sep  8 03:10:59 2012              1768
    Incremental         Sun Sep  9 03:10:49 2012                46
    Incremental         Mon Sep 10 03:12:05 2012                21
    Incremental         Tue Sep 11 03:11:11 2012                26
    Incremental         Wed Sep 12 03:11:04 2012                14
    Incremental         Thu Sep 13 03:11:04 2012                14
    Incremental         Fri Sep 14 03:11:06 2012                15
    -------------------------


    Found primary backup chain with matching signature chain:
    -------------------------
    Chain start time: Sat Sep 15 03:11:08 2012
    Chain end time: Mon Sep 17 03:12:16 2012
    Number of contained backup sets: 3
    Total number of contained volumes: 1866
    Type of backup set:                            Time:      Num volumes:
    Full         Sat Sep 15 03:11:08 2012              1795
    Incremental         Sun Sep 16 03:11:06 2012                47
    Incremental         Mon Sep 17 03:12:16 2012                24
    -------------------------
    No orphaned or incomplete backup sets found.
    --- Finished state OK at 19:38:43.006 - Runtime 00:00:01.950 ---

    Restauration # Restaure le dernier backup

    duply mon_profil restore /destination_dir

    # Restaure le backup effectué il y'a 4 jours

    duply mon_profil restore /destination_dir 4D

    # Restaure le dernier fichier rep/fichier

    duply mon_profil fetch rep/fichier /destination_dir

    # Restaure le fichier rep/fichier d'il y'a 4 jours

    duply mon_profil fetch rep/fichier /destination_dir 4D

    Note 1: Concernant la commande fetch, si vous désirez restaurer un fichier, le fichier de destination doit être également indiqué sinon le répertoire (si il est vide) sera remplacé par le fichier à restaurer. Note 2: Concernant la commande fetch, dans le cas d’un répertoire, le répertoire de destination doit être vide, sinon la restauration sera interrompu.

    Ce billet est taggé avec Anti-Virus, Linux and planet-libre
    Sat 14 Sep 2013 05:37:20 AM UTC - permalink -
    - http://blog.cendreo.com/2012/09/17/effectuer-vos-sauvegardes-avec-duply/
    duply sauvegarde duplicity ftp

    Commentaires(0)













  • YouTube thumbnail
    Coyote Kisses - Acid Wolfpack - YouTube
    Musique style jeux video
    Sun 08 Sep 2013 06:20:35 PM UTC - permalink -
    - http://www.youtube.com/watch?v=SyORw8bee4o
    musique youtube

    Commentaires(0)













  • YouTube thumbnail
    ▶ TIME - Hans Zimmer - YouTube
    No comment
    Sun 08 Sep 2013 06:19:37 PM UTC - permalink -
    - https://www.youtube.com/watch?v=XO3246dik14
    Musique youtube inception

    Commentaires(0)













  • Linux - Commandes - Mémento [Netensis - TechniNotes]
    Archives - tar, 7z
    tar

    Création d'une archive :

       sans compression :

       tar -cvf CHEMIN_ARCHIVE.tar FICHIERS_ET_OU_REPERTOIRES_A_STOCKER

       avec compression gzip :

       tar -cvzf CHEMIN_ARCHIVE.tar.gz FICHIERS_ET_OU_REPERTOIRES_A_STOCKER

    Lister le contenu d'une archive :

    tar -tvf CHEMIN_ARCHIVE.tar
    tar -tvf CHEMIN_ARCHIVE.tar.gz

    Décompresser le contenu d'une archive (dans le répertoire courant) :

       archive sans compression :

       tar -xvf CHEMIN_ARCHIVE.tar

       archive avec compression gzip :

       tar -xvzf CHEMIN_ARCHIVE.tar.gz

    7z

       Archive 7-Zip avec compression maximale (-mx=9 : niveau de compression de 0 = aucun à 9 = maximum, le standard est 5), contenu et entêtes chiffrés par mot de passe (-mhe=on -p) :

       7z a -ms=on -mx=9 -mhe=on -p ARCHIVE FICHIERS_ET_OU_REPERTOIRES
       
       # Exemple
       7z a -ms=on -mx=9 -mhe=on -p ~/backup/confidentiel.7z ~/Documents ~/.evolution

       Archive au format zip au lieu de 7z :

       7z a -tzip ARCHIVE.zip FICHIERS_ET_OU_REPERTOIRES
       
       # Exemple
       7z a -tzip ~/backup/images.zip ~/Images

       Chiffrer/déchiffrer du texte avec 7z (AES 256 Bits) :

       # Chiffrage
       echo -n "Texte" | 7z a -si -mx=9 -ms=on -mhe=on -pMOT_DE_PASSE ARCHIVE.7z
       
       # Déchiffrage sur la sortie standard, la redirection de stderr est obligatoire
       7z e -so -pMOT_DE_PASSE ARCHIVE.7z 2>/dev/null

    tar et 7z combinés

    7-Zip n'est pas adapté seul à la sauvegarde de tous les attributs des fichiers Linux. On peut combiner tar et 7-Zip (pour remplacer la compression gzip).

    Création d'une archive "tar.7z" :

    # "-si" compresse l'entrée standard (stdin)
    tar -c FICHIERS_ET_OU_REPERTOIRES 2>/dev/null | 7z a -si OPTIONS_7Z ARCHIVE.tar.7z

    Décompression d'une archive "tar.7z" :

    7z x -so ARCHIVE.tar.7z | tar xf -
    Sat 07 Sep 2013 09:10:39 PM UTC - permalink -
    - http://netensis.net/linux:commandes:memento
    7zip astuce

    Commentaires(0)













  • SSH Troubleshooting - Metawerx Java Wiki
    Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)
    Connection works, but the following warning is issued

    Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)

    This error occurs when:

       The user's HOME folder has incorrect permissions
       The user's HOME/.ssh folder or HOME/.ssh/known_hosts file has incorrect permissions (such as when the folder has been copied into location by root, or permissions have been manually set incorrectly)

    To fix, execute these commands (as root) to reset the permissions to their correct values (replace USERNAME with the appropriate username)

    cd ~
    chown USERNAME /home/username
    chown USERNAME -R /home/username/.ssh
    chmod 700 /home/USERNAME/.ssh
    chmod 600 /home/USERNAME/.ssh/*
    Tue 03 Sep 2013 07:08:29 AM UTC - permalink -
    - http://wiki.metawerx.net/wiki/SSHTunnelTroubleshooting
    ssh astuce

    Commentaires(0)













  • Sickbeard | Raspberry-at-home.com – Your ultimate source of Raspberry Pi tutorials (WiFi, 3G, XBMC, Subtitles, VoD, TVN Player, IPLA, TVP, Squeezeslave, Logitech Media Server, Sickbeard, Webcam, Torrent, DLNA)
    SickBeard sur le raspberry

    SickBeard me sert uniquement pour le renommage et le classement des épisodes de séries, mais il peut bien plus :)
    Sun 01 Sep 2013 02:22:39 PM UTC - permalink -
    - http://raspberry-at-home.com/sickbeard/
    sickbeard raspberry

    Commentaires(0)













  • locale configuration
    edit: ça ne fonctionne plus... je ne sais pas pourquoi. mais après un  sudo dpkg-reconfigure locales  et un reboot ça a fonctionné.

    Pour avoir les accents sur mon raspberry pi, avec raspbmc j'ai du faire cette manip:

    add it in /etc/profile
    export LANG=fr_FR.utf-8
    export LC_ALL=fr_FR.utf-8
    export LC_CTYPE=fr_FR.utf-8
    export LANGUAGE=fr_FR

    reboot.

    run locale.
    voilá!
    Sun 01 Sep 2013 01:22:39 PM UTC - permalink -
    - http://forum.stmlabs.com/showthread.php?tid=5612
    raspberry astuce

    Commentaires(0)













  • Raspberry Pi: How to install PyLoad downloadmanager » Jan Karres
    Installer pyload sur son raspberry

    Raspberry Pi: How to install PyLoad downloadmanager
    Geschrieben von Elias Porcio in Raspberry Pi/ 7 Kommentare
    19 Jun

    I have already published some instructions on how to set up Raspbian. Now follows the most used program on my Raspberry Pi. It is called pyLoad and is a, in Python written, downloadmanager with webinterface. How to get it on the Raspberry Pi will be explained hereinafter. We will istall the version of pyLoad without graphical user interface but with webinterface.

    Requires Raspbian or a similar Debian-distribut

    Step 1

    In order to be able to install all packages in step 2 we have to extend the sources.list. We can do so with the editor nano. Just insert the line after the nano command into the end of the file. You can save by pressing CTRL + X (which ends the programm), whereupon you are asked if you want to save before closing.

    sudo nano /etc/apt/sources.list

    deb-src http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi

    At last we update apt.

    sudo apt-get update

    Step 2

    First we need some Packages, so we can install PyLoad. We are mainly talking about Python (already Preinstalled) with some extensions and programs, that are used to unpack downloaded files.

    sudo apt-get -y install liblept3
    sudo apt-get -y install python python-crypto python-pycurl python-imaging tesseract-ocr python-qt4 spidermonkey-bin zip unzip
    sudo apt-get -y build-dep rar unrar-nonfree

    Step 3

    Afterwards we download the latest .DEB-file of Python of the version cli. As I wrote this tutorial, the version 0.4.9 was up to date. You can get the latest download link at http://pyload.org/download

    wget http://download.pyload.org/pyload-cli-v0.4.9-all.deb

    Step 4

    Now we install PyLoad using dpkg and delete the DEB-file afterwards.

    sudo dpkg -i pyload-cli-v0.4.9-all.deb
    rm pyload-cli-v0.4.9-all.deb

    Step 5

    Next, we launch PyLoad for the first time. Some questions to the set up will be asked.

    cd /usr/share/pyload
    ./pyLoadCore.py

    Step 6 (optional)

    We can start PyLoad as Deamon, so we do not always have to leave the terminal open to run the downloadmanager.

    pyLoadCore --daemon

    Step 7 (optional; start on boot)

    If we want to make PyLoad start together with the Raspberry Pi, we will create a crontab entry for the start of the Deamon. We insert the following line into the end of the file and save using CTRL + X and the confirmation, that we want to save.

    crontab -e

    @reboot pyLoadCore --daemon

    Done! The PyLoad downloadmanager has been installed and is now set up. If you have activated the webinterface during the installation, you will be able to open IP:8000 (IP has to be replaced by the IP of the Raspberry Pi) in your browser and you can start downloading!
    Wed 28 Aug 2013 10:04:15 PM UTC - permalink -
    - http://jankarres.de/2013/06/raspberry-pi-how-to-install-pyload-downloadmanager/
    raspberry pyload

    Commentaires(0)













  • Running cron jobs on Raspberry Pi in Raspbmc | wexoo.net
    Comment activer cron jobs sous raspbmc

    Running cron jobs on Raspberry Pi in Raspbmc
    Posted on April 6, 2013 by wexoo

    Here’s another little tutorial especially for people new to raspberry pi or linux in general (such as myself). Cron jobs are used to execute specific actions at pre-configured times. These actions can be executing scripts, writing data to a file, etc. (would be glad to hear of stuff you do with cron jobs in the comment section ;) )

    In my specific case I needed a script to map my changing external ip address at home to the domain I specified for my raspberry to have access to it when I’m away. Big thanks for all the help to my good friend Thomas for domain hosting and tipps on how to get this to work! Now let’s get to it!

       Activate cron jobs in Raspbmc
       Per default running cron jobs is deactivated in Raspbmc and there are two ways to activate them.
       - In the Raspbmc GUI under Programs Raspbmc Settings -> System Configuration -> Service Management -> Cronjob Scheduler
       - Via SSH/FTP by modifying sys.service.cron value to “true” the settings file under /home/<your_username>/.xbmc/userdata/addon_data/script.raspbmc.settings/settings.xml – for more infos on changing settings via SSH / FTP, check my
    Wed 28 Aug 2013 10:03:08 PM UTC - permalink -
    - http://www.wexoo.net/20130406/running-cron-jobs-on-raspberry-pi-in-raspbmc
    raspberry cron

    Commentaires(0)













  • Une extension VLC pour récupérer facilement des sous titres
    Faudra que je teste ça !
    Tue 06 Aug 2013 07:07:14 AM UTC - permalink -
    - http://korben.info/sous-titres-vlc.html
    vlc sous-titre

    Commentaires(0)













  • Apprendre les mises en page CSS
    Tout est dans le titre.
    Cela dit le site à l'air clair et bien expliqué.
    Tue 06 Aug 2013 07:06:19 AM UTC - permalink -
    - http://fr.learnlayout.com/
    css tuto

    Commentaires(0)













Links per page: 20 50 100
◄Older
page 1 / 21
Shaarli 0.0.40 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.