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… Read More: Mondongo a la andaluza »

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… Read More: dosbox win311 network »

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… Read More: »

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… Read More: Add sshd port macsox mavericks »

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… Read More: Linux List All Large Files »