Archivo de la categoría: Linux

kodi

It won’t matter if you run 32 or 64 bit for Kodi. The error you are getting is because the server timeout setting is too short. c:\Users\<your user name>\AppData\Roaming\Kodi\userdata\addon_data\pvr .stalker\settings.xml Find this and change the value to something reasonably higher… like 60 up to 90 <setting id=»connection_timeout» value=»65″ />

5 Kodi advanced settings I always use on media centers

http://www.htpcbeginner.com/5-kodi-advanced-settings-i-always-use/   Kodi advanced settings stored in advancedsettings.xml can be used to tweak various settings that cannot be edited through the GUI. Advanced settings, as the name suggests, are “advanced” and hence most users do not have to set them. Some examples of Kodi or XBMC advancedsettings.xml include MySQL library, episode naming patterns, special behaviors,… Leer más »

iptables quick centos

iptables -F iptables -A INPUT -p tcp –tcp-flags ALL NONE -j DROP iptables -A INPUT -p tcp ! –syn -m state –state NEW -j DROP iptables -A INPUT -p tcp –tcp-flags ALL ALL -j DROP iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -p tcp -m tcp –dport 80 -j ACCEPT iptables -A… Leer más »

sshuttle: A Poor man’s VPN Over SSH

Do you ever wanted to use SSH as a VPN? There is little piece of useful utility called “sshuttle” is available to completely turn your SSH connection as VPN. sshuttle is a transparent proxy server that works as a poor man’s VPN over ssh. You don’t need any admin account on your remote system. It… Leer más »

Find sum of file sizes listed in ls -l using awk

March 1, 2010 at 9:17 pm · Filed under Technology ·Tagged add, awk, linux, list, sum, unix 1 ls -l | awk ‘{ TOTAL += $5} END { print TOTAL/1024/1024 }’ With this, awk will pull field number 5 from ls -l, which is the size in bytes in most of the *nix platforms. Then… Leer más »

HP ProLiant DL980 G7 Configure-to-order Server AM451A Supports up to eight 10-Core Intel® Xeon® E7-4800 sequence processors PC3-10600R Fully Buffered DIMMs (DDR3) with 32 memory slots Support for up to 8 hot plug SFF SAS drives HP Smart Array P410i with optional Fast Backed Write Cache (FBWC) HP NC375i Integrated Quad Port Multifunction Gigabit Server… Leer más »

Linux List All Large Files

Linux List All Large Files To finds all files over 50,000KB (50MB+) in size and display their names, along with size, use following syntax: Syntax for RedHat / CentOS / Fedora Linux find {/path/to/directory/} -type f -size +{size-in-kb}k -exec ls -lh {} \; | awk ‘{ print $9 «: » $5 }’ Search or find… Leer más »

LFTP: limit bandwidth upload/download

set net:limit-rate «download bytes» : «upload bytes» Download y Upload 20mbps set net:limit-rate 10480000:10480000 set net:limit-rate 15480000:15480000 set net:limit-rate 20480000:20480000 10 Kb/s -> 10240 500 Kb/s -> 512000 Example: Upload 512kbs set net:limit-rate 0:512000 Example: Upload 20mbps set net:limit-rate 0:20480000

Configuration NFS windows and RPI

http://ubuntuforums.org/showthread.php?t=1686544 En la parte de windows 7: Start Registry Editor Locate HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ClientForNFS \CurrentVersion\Default Create two DWORD values namely AnonymousUid and AnonymousGid Set these values to the UID and GID you would like this NFS client to use Restart your Client for NFS service using the Microsoft Services for NFS MMC snap-in En la parte del… Leer más »