lundi 25 novembre 2013

Supprimer sites et publicités avec le fichier HOSTS


AdZHosts
Airelle hosts
Bidules informatiques d'Airelle
Blacklists UT1
Dan Pollock hosts
StevenBlack hosts


Autres :

AntiPubWeb

Installation exotiques : bareos, P*Web...

Bareos is a 100% open source fork of the backup project from bacula.org.
 
URL=http://download.bareos.org/bareos/release/12.4/xUbuntu_12.04/
printf "deb $URL /\n" > /etc/apt/sources.list.d/bareos.list
# add package key
wget -q $URL/Release.key -O- | apt-key add -
apt-get update
apt-get install bareos bareos-database-postgresql
 
(suite)

P*Web
wget -q -O - apt.p-star.org/pub.key | apt-key add -
echo -e "\n\ndeb [arch=amd64] http://apt.p-star.org/ unstable main\n\n" \ >> /etc/apt/sources.list
apt-get update
apt-get install p-star

mercredi 20 novembre 2013

#Players #video

ExMplayer
sudo add-apt-repository ppa:exmplayer-dev/exmplayer 
sudo apt-get update 
sudo apt-get install exmplayer

CMPlayer
sudo add-apt-repository ppa:canonical-qt5-edgers/qt5-beta-proper
sudo add-apt-repository ppa:darklin20/cmplayer-ppa
sudo apt-get update
sudo apt-get install cmplayer


Kaffeine
sudo add-apt-repository ppa:aap/kaffeine
sudo apt-get update
sudo apt-get install kaffeine


VLC Mode d'emploi

mardi 19 novembre 2013

#PDF vers #powerpoint #PPT

Vous avez une documentation ou un rapport en PDF que vous souhaitez convertir pour en faire une présentation powerpoint en PPT.
Voici une méthode :
- Importer votre fichier PDF dans LibreOffice
- Sauver votre fichier au format .odg
- Renommer en changeant l'entension .odg en .odp
- Ouvrir le fichier .odp avec LibreOffice
- L'enregistrer ensuite en powerpoint .PPT

mercredi 6 novembre 2013

#Interface #graphique #OpenVPN

OpenClassrooms/Protegez-l-ensemble-de-vos-communications-sur-internet/Decouvrez-les-protocoles-vpns-et-openvpn
OpenManiak/OpenVPN
OpenVPN/Android  /GooglePlay
OpenVPNConnect/Android
OpenVPN.net
OpenVPN/github
OpenVPN/Sourceforge
OpenVPN/Ubuntu - Serverguide
OpenVPN.se

/Linbox
Tunnelblick/Mac
TurnkeyLinux/OpenVPN
/Window$7
Autres :
Hamachi
Installer facilement un serveur openvpn sur Debian / Ubuntu / Centos
SADMS Integration of Linux hosts in Active Directory Domain.
Make Linux hosts Windows domain hosts,
Make Windows domain users Linux users.
SecurityKISS
  • Rendez-vous sur le site FrootVPN pour créer votre compte.
  • Pour les plateformes Windows, Mac, Android, iOS consultez la catégorie Guide pour installer FrootVPN.
  • Installer OpenVPN sur Ubuntu.
sudo apt-get install openvpn
  • Télécharger le fichier de configuration.
sudo wget https://www.frootvpn.com/files/frootvpn.ovpn -O ~/frootvpn.ovpn
  • Se connecter à OpenVPN. Une fois la commande ci dessous entrée, renseignez votre identifiant ensuite votre mot de passe.
sudo openvpn ~/frootvpn.ovpn
  • Faites un tour sur whatismyip pour vérifier votre nouvelle adresse IP

Pour un anonymat plus renforcer, vous pouvez essayer de changer votre adresse MAC avec macchanger. ou via ifconfig (via l’argument “ether hw”)
SmallVPNTool
VPN Gate /MOFO Linux

#Zoneminder #videosurveillance


Zoneminder Appliance for VMware

 Zoneminder est une solution open source efficace de vidéosurveillance, acceptant des sources vidéo analogiques (connectées via une carte d'acquisition), des webcams ou encore des caméras réseau. Il est capable d'envoyer les images capturées sur un serveur déporté via FTP ou SMTP (mail) mais dispose également d'un serveur web dédié permettant de consulter les images et vidéos capturées ainsi que de contrôler le système de vidéo-surveillance…

Install Zoneminder / Debian

Zoneminder / Ubuntu  ( 2 / Howtoforge )

/Guruplug

/janhellevik.com

ZoneMinder Client firefox add-on

Autres:
MJPG-streamer

<source>
The webcam I have available for testing is a Microsoft LifeCam 720p 30fps , the important thing to note is that it outputs as mjpg which means the raspberrt pi will not need to do any CPU intensive encoding.



phillips321@raspberrypi /etc/init.d $ lsusb
Bus 001 Device 004: ID 045e:075d Microsoft Corp. LifeCam Cinema
The first thing to do is install some required dependencies:

sudo apt-get install subversion libv4l-dev libjpeg8-dev imagemagick fswebcam

Then check that your webcam supports mjpg:

phillips321@raspberrypi ~ $ sudo fswebcam --verbose --- Opening /dev/video0...
Trying source module v4l2...
/dev/video0 opened. <SNIP>
src_v4l2_set_pix_format,541: Device offers the following V4L2 pixel formats:
src_v4l2_set_pix_format,554: 0: [0x56595559] 'YUYV' (YUV 4:2:2 (YUYV))
src_v4l2_set_pix_format,554: 1: [0x47504A4D] 'MJPG' (MJPEG)
Using palette MJPEG
<SNIP>

If it does that’s great, otherwise you’ll need to do a small bit of messing around to ensure the stream gets converted.
Now we need to install mjpg_streamer, to do this download the source via svn and then compile it:


svn co https://mjpg-streamer.svn.sourceforge.net/svnroot/mjpg-streamer
mjpg-streamer
cd mjpg-streamer/mjpg-streamer make USE_LIBV4L2=true clean all sudo make DESTDIR=/usr install cd ../.. ; rm -rf mjpg-streamer
Now test that you can stream your webcam using:


mjpg_streamer -i "/usr/lib/input_uvc.so -d /dev/video0" -o
"/usr/lib/output_http.so -p 80 -w /var/www/mjpg_streamer -n"
and access the stream using http://IP/?action=stream.
Once you have it working you can adjust the webcam resolution and fps using:


[-r | --resolution ]...: the resolution of the video device, can be one of the following strings:  QSIF QCIF CGA QVGA CIF VGA SVGA XGA SXGA or a custom value like the following example: 640x480
[-f | --fps ]..........: frames per second
Now once you have your command to start the stream you need to set it to run at boot. To do this we’ll need to create an init script. Copy the following to a file called /etc/init.d/mjpg_streamer.sh and make is executable. Here’s mine which you can copy/paste and then change for your own use:

#!/bin/sh
# /etc/init.d/mjpg_streamer.sh
# v0.2 phillips321.co.uk
### BEGIN INIT INFO
# Provides:          mjpg_streamer.sh
# Required-Start:    $network
# Required-Stop:     $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: mjpg_streamer for webcam
# Description:       Streams /dev/video0 to http://IP/?action=stream
### END INIT INFO

f_message(){
        echo "[+] $1"
}

# Carry out specific functions when asked to by the system
case "$1" in
        start)
                f_message "Starting mjpg_streamer"
                mjpg_streamer -b -i "/usr/lib/input_uvc.so -d /dev/video0" -o "/usr/lib/output_http.so -p 80 -w /var/www/mjpg_streamer -n"
                sleep 2
                f_message "mjpg_streamer started"
                ;;
        stop)
                f_message "Stopping mjpg_streamer..."
                killall mjpg_streamer
                f_message "mjpg_streamer stopped"
                ;;
        restart)
                f_message "Restarting daemon: mjpg_streamer"
                killall mjpg_streamer
                mjpg_streamer -b -i "/usr/lib/input_uvc.so -d /dev/video0" -o "/usr/lib/output_http.so -p 80 -w /var/www/mjpg_streamer -n"
                sleep 2
                f_message "Restarted daemon: mjpg_streamer"
                ;;
        status)
                pid=`ps -A | grep mjpg_streamer | grep -v "grep" | grep -v mjpg_streamer. | awk '{print $1}' | head -n 1`
                if [ -n "$pid" ];
                then
                        f_message "mjpg_streamer is running with pid ${pid}"
                        f_message "mjpg_streamer was started with the following command line"
                        cat /proc/${pid}/cmdline ; echo ""
                else
                        f_message "Could not find mjpg_streamer running"
                fi
                ;;
        *)
                f_message "Usage: $0 {start|stop|status|restart}"
                exit 1
                ;;
esac
exit 0
Once that is done you’ll need to instruct the command to be run at boot, you can do that using the following:


sudo update-rc.d mjpg_streamer.sh defaults
Now reboot and test that it’s working

Narrative Clip 2

samedi 2 novembre 2013

#BeagleBone #SBC

Armhf/Beaglebone-black

Beaglebone_green  Beagleboard_blue

BeagleBone GamingCape

Beagleboard.org

Beaglebone-making-a-home-media-server

Beagleros

BeagleSNES

BeagleBoard.org Latest Firmware Images

InstallingDebianOnBeagleBone
Kamikaze
Minix3
mras2an.webnode.fr
Minoca
OpenCV on the BeagleBone Black with UbuntuOpensuse/BeagleBone_Black
RiscOSOpen
VoidLinux
Wiki.seeed.cc/Platform
Xinu
Yoctoproject

Autres :

ADC board for BeagleBoneFacebook/BeagleboneBlack
designmakeshare.wordpress.com

linuxgizmos

UDOO+Distribs

Dave Cheney

RuneAudio Hi-Fi Player 

Videos : 
BeagleBoard Wi-Fi Robot 

The Beaglebone - Unboxing, Introduction Tutorial and First Example

Beaglebone: Adding USB Wi-Fi & Building a Linux Kernel

Robot BeagleBoard

Tigal

How to control a servo motor

icculus.org

cwraig.id.au

The Deck is a penetration testing Linux distribution that runs on the ARM-based small computer boards in the BeagleBoard and BeagleBone family. To install this software you will need a Linux computer with a microSD reader/writer (which could be full size SD with an adapter). 

The Deck (mirror)

Beaglebone with Ubuntu 11.04

Beaglebone with Ubuntu 12.10

Beaglebone with Ubuntu 13.10

Beaglebone avec Ubuntu

KaliLinux

https://www.offensive-security.com/kali-linux-vmware-arm-image-download/ 

unxz kali-1.0.9-bbb.img.xz
sudo dd if=kali-1.0.9-bbb.img of=/dev/sdf bs=512k

https://github.com/offensive-security/kali-arm-build-scripts/blob/master/bbb.sh

BBBAndroid
BeagleBone Black – Controlling user LEDs using C++
BeagleBone Tutorial: Accessing Main Memory From the PRU (and visa versa)
Crash course BeagleBone
Cross-compiling applications for the Beaglebone
Embedded Hobbyist
Enable PWM on BeagleBone with Device Tree overlays
First steps with the BeagleBone PRU
OneMansAnthology
Using Eclipse to Cross-compile Applications for Embedded Systems
WeatherMonitoringSystem




LIVRES :

Dummies

Getting Started with BeagleBone 

Matériel :

Aerodynes

Arducam

BeagleboneBlack / RS Online

Autres :

Imp.Computer
Mini PCs aliexpress
How to install a rtl8192cu on the Beaglebone Black (BBB) running Angstrom

www.blaess.fr/christophe/category/beagleboneblack/
dotnetdavid.wordpress.com/tag/beaglebone-black/
phmarduino.free.fr

LinuxCNC :
blog.machinekit.io
www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/
exadler.myshopify.com/products/dual-motor-controller-cape-dmcc-mk-6
github.com/Exadler/DualMotorControlCape
github.com/modmaker/BeBoPr/wiki/The-BeBoPr-plus-plus-Cape
github.com/modmaker/BeBoPr-plus-plus/blob/master/BeBoPr%2B%2B%20User%20Manual.pdf
github.com/hzeller/bumps
github.com/jonpry/LPT
github.com/dgouramanis/optocape
www.kickstarter.com/projects/necitec/up-to-4-axis-beaglebone-black-based-cnc-control
www.pmdx.com/PMDX-432
www.probotix.com/CNC-CONTROL-SYSTEMS/BREAKOUT-BOARDS
reprap.org/wiki/CRAMPS
www.robotise.lt/hardware-for-beaglebone/8-furaday-cape-1-2.html
www.tbone.cc
www.thecooltool.com
www.thing-printer.com/product/replicape/
www.tindie.com/products/TEMProducts/optocape/
webshop.juve.ro
www.xylotex.com/OSCommerce/catalog/index.php

Archives du blog