Archivo de la categoría: Nix

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 »

13 Tips to Optimize Your Mac After Yosemite Installation [UPDATED]

http://www.hightechdad.com/2014/10/23/13-tips-optimize-mac-yosemite-installation/ 13 Tips to Optimize Your Mac After Yosemite Installation [UPDATED] In Apple, Fix It, General, Hardware, How To, HTD Tech Tip, Technology by Michael SheehanOctober 23, 201478 As most of us know, Apple’s latest operating system Yosemite (10.10), a free upgrade from Apple, is now available. And with it come a lot of nice… Leer más »

autoboot ilom sparc solaris

The auto boot option can be set true/false in the ILOM. From the -> prompt. 1. Set the auto boot to true/false. -> set /HOST/bootmode script= «setenv auto-boot? false» -> set /HOST/bootmode script= «setenv auto-boot? true» 2. Reset the system to apply the changes. -> reset /SYS

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 »

Bash specially-crafted environment variables code injection attack CVE-2014-6271

http://www.rapid7.com/db/modules/auxiliary/scanner/http/apache_mod_cgi_bash_env Posted on 2014/09/24 by Huzaifa Sidhpurwala Bash or the Bourne again shell, is a UNIX like shell, which is perhaps one of the most installed utilities on any Linux system. From its creation in 1980, bash has evolved from a simple terminal based command interpreter to many other fancy uses. In Linux, environment variables… Leer más »

install webmin centos 7

Webmin is a web based tool for Linux, it helps to manage the services like DNS, DHCP, MySQL server, PostgrSQL and other networking services. It also helps to manage the user, disk, file system, process, packages, etc.. This post will guide you to install Webmin on CentOS 7. Create repo for webmin. vi /etc/yum.repos.d/webmin.repo Place… Leer más »

centos 7 minimal

ifconfig -a equivalente en centos 7: ip a list   Install net-tools (ifconfig) #yum install net-tools

How to get started with Firewalld

source: http://www.tejasbarot.com/2014/08/05/rhel-7-centos-7-how-to-get-started-with-firewalld/#axzz3DakgfzHX   Hello All, Today I was trying to learn and know about Systemd. I have found one of the great Article about firewalld, Sharing with you guys, It will help you to understand this biggest and major change in RHEL and CentOS 7. This article is not mine, I found on internet and… Leer más »