Archivo del Autor: carlosap

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 »

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

url: http://www.howtoforge.com/apache_php_mysql_on_centos_7_lamp   1 Preliminary Note In this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate. I will add EPEL-7 repo here to install latest phpMyAdmin as follows: rpm -ivh http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm

Mondongo a la andaluza

3 kilo mondongo limpio y cortado en cubo 3 kilo papas peladas y cortadas en cuadros 1 kilo garbanzo 1 kilo tomate 1/2 kilo jamón crudo, en trozos 1/2 kilo longaniza, cortada en trozos 1/4 kilo tocineta, en trozos 8 chiles anchos 5 chorizos cortados en trozos, con su manteca 4 naranjas (el jugo) 2… 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 »

dosbox win311 network

Installing Windows 3.1 in DOSBox is pretty simple. If you use Megabuild, you can also browse the Internet by loading a ne2000 packet driver and installing Trumpet WinSock in Windows install first winpcap for windows in dosbox run: realnic 4 ne2000.com 0x65 3 0x300 winpkt 0x65 Before starting Windows. Don’t install MS TCP/32, that won’t… 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 »

Solaris 11 IPS hand-on LAB – Boot environments beadm

Boot Environments Boot environments in solaris 11 are multiple images with different kernel, software applications and packages. Only one boot environment can be active at a time. We can boot into different boot environments according to our need. The command to manage boot environments in solaris is beadm. BEs are extremely useful in case of… Leer más »

Add sshd port macsox mavericks

Edit: #vi /System/Library/LaunchDaemons/ssh.plist Add:                  <key>Alternate Listeners</key>             <dict>                     <key>SockServiceName</key>                     <string>2222</string>             </dict> To: <key>Sockets</key>         <dict>                 <key>Listeners</key>                 <dict>                         <key>SockServiceName</key>                         <string>ssh</string>                         <key>Bonjour</key>                         <array>                                 <string>ssh</string>                                 <string>sftp-ssh</string>                         </array>                 </dict>                  <key>Alternate Listeners</key>             <dict>                     <key>SockServiceName</key>                     <string>2222</string>             </dict>         </dict> Unload and load… 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 »