Archivo del Autor: carlosap

Backup XBMC settings:

Try this, copied from somewhere on the forum, not sure where Backup XBMC settings: SSH into the Pi. Go to /home/pi Run the following command: tar -czf xbmc-backup.tar.gz .xbmc Ftp into the Pi and copy the xmbc-backup.tar.gz file away from Raspberry Pi Put settings back: copy file back to /home/pi Run command: tar -xzf xbmc-backup.tar.gz

SD card Performance

SD CARD: ADATA SDHC 8GB CLASS 10 WRITE pi@raspberrypi ~ $ dd if=/dev/zero of=~/test.tmp bs=500K count=1024 1024+0 records in 1024+0 records out 524288000 bytes (524 MB) copied, 47.7796 s, 11.0 MB/s READ pi@raspberrypi ~ $ dd if=~/test.tmp of=/dev/null bs=500K count=1024 1024+0 records in 1024+0 records out 524288000 bytes (524 MB) copied, 24.1782 s, 21.7 MB/s… Leer más »

How to change setup network raspberry debian

now when you open interfaces you will see something like this: # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5).# The loopback network interface auto lo iface lo inte loopback#The primary network interface auto eth0 iface eth0 inet dhcp now to change… Leer más »

pptpd

1. Install ppp via yum: $ yum install ppp -y 2. Download and install pptpd (the daemon for point-to-point tunneling). You can find the correct package at this website http://poptop.sourceforge.net/yum/stable/packages/ : $ cd /usr/local/src $ wget http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-2.el6.x86_64.rpm $ rpm -Uhv pptpd-1.3.4-2.el6.x86_64.rpm 3. Once installed, open /etc/pptpd.conf using text editor and add following line: remoteip 192.168.0.234-238,192.168.0.245… Leer más »