Archivo de la categoría: Raspberry

Install pyLoad Raspberry Pi for Download Management

Install pyLoad Raspberry Pi for Download Management 1 2 0 pyLoad is a tool used for downloading files from online storage lockers. These storage sites are usually plagued with nags like waiting for bandwidth restrictions to expire or slow downloading speeds. pyLoad will automatically download lists of files that you add from the storage lockers.… Leer más »

raspberry wolfram lic

To add a user that can run the Wolfram Language: pi@test-pi ~ $ sudo adduser pi2 Adding user pi2′ … Adding new grouppi2′ (1004) … Adding new user pi2′ (1001) with grouppi2′ … Creating home directory /home/pi2′ … Copying files from/etc/skel’ … […]   Add it to the ‘video’ group (required as part of a… Leer más »

hostname jessi

Good catch on the dbus dependency. FYI: I’ve been learning how to configure systemd systems and discovered that hostnamectl set-hostname myhostname automatically updates the contents of /etc/hostname (the static hostname) so there’s no need for the first echo command. – Anthony Geoghegan Jul 14 at 12:01

Volume was not properly unmounted …

Volume was not properly unmounted … Post a reply 35 posts   Page 1 of 2   12 by Richard-TX » Tue Dec 31, 2013 12:23 am Here is the fix for this annoying message. Code: Select all # dmesg | grep corrupt [   21.280705] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may… Leer más »

openvpn username password auth

edit /etc/openvpn/server.conf CENTOS X64 # Username and Password authentication. client-cert-not-required plugin /usr/lib64/openvpn/plugin/lib/openvpn-auth-pam.so login RASPBERRY # Username and Password authentication. client-cert-not-required plugin /usr/lib/openvpn/openvpn-auth-pam.so login Also script for firewall cat firewall-openvpn-rules.sh #!/bin/sh iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j SNAT –to-source 11.22.33.44 11.22.33.44 you RPI address Add pre-up /etc/firewall-openvpn-rules.sh We want to add a… Leer más »

Step # 1: Create self signed SSL Certificates lighttpd

Step # 1: Create self signed SSL Certificates Create a directory to store SSL certificate: # mkdir /etc/lighttpd/ssl/domain.com -p # cd /etc/lighttpd/ssl/domain.com # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes # chown lighttpd:lighttpd /etc/lighttpd/ssl -R # chmod 0600 /etc/lighttpd/ssl/domain.com You need to provide information such as country name, your domain name… Leer más »

fix heartbleed update OpenSSL on Raspbian raspberry

As of 09/04/2014 the main wheezy repository uses the patched version 1.0.1e-2+deb7u5 and as commented, you can get it like this: > sudo apt-get update > sudo apt-get upgrade Which will update the following packages: libssl1.0.0 openssh-client openssh-server openssl ssh

Optimize Apache and MySQL for a 256MB VPS

Home > Misc. Tutorial Logs > Optimize Apache and MySQL for a 256MB VPS « Newer | Older » Optimize Apache and MySQL for a 256MB VPS September 1, 2011 No Comments Tags: apache mysqltuner prefork ubuntu vps For small websites or not so popular WordPress blogs a small VPS with only 256MB of RAM… Leer más »