cd /lib/firmware
sudo wget http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/plain/{ctfw,ct2fw}-3.2.5.1.bin
openssl req -x509 -newkey rsa:2048 -keyout $NAME.key -out $NAME.pem -days 365 -nodes \ | |
-subj "/C=TW/ST=Taiwan/L=Taipei/O=$ORG/OU=$UNIT/CN=$NAME" |
void scr_about_init(void) | |
{ | |
w_about = newwin_title(0, WAV_HEIGHT, "About", false); | |
for (i = 0; i < ARRAY_SIZE(about_lines); i++) { | |
linecd[i] = malloc(strlen(about_lines[i]) * sizeof(int)); | |
for (j = 0; j < strlen(about_lines[i]); j++) | |
linecd[i][j] = (rand() / (float)RAND_MAX) * 120 + 60; | |
} | |
} |
python -m pip uninstall pip |
iptables -A SSH -m conntrack --ctstate NEW -m recent --set --name ssh --mask 255.255.255.255 --rsource | |
iptables -A SSH -m recent --update --seconds 30 --hitcount 6 --name ssh --mask 255.255.255.255 --rsource -j DROP | |
iptables -A SSH -m recent --update --seconds 15 --hitcount 2 --name ssh --mask 255.255.255.255 --rsource -j DROP | |
iptables -A SSH -j ACCEPT |
OS X Yosemite (10.10) is the latest OS X release of 2014 by apple, but Apple locks the operating system to only be installed in genuine Apple computers known as Macintosh & they cost a lot any how there is always a way if you want to install the operating system in your common pc, without paying high cost for a real mac you can make a Hackintosh
We have previously covered the article for Installing Niresh Mavericks on PC if you’re interested in Installing Mac OS X Yosemite on PC this article is for you, You may experience many problems while trying to Install Hackintosh, most of them can be fixed easily most troubleshoot informations are included in this guide so first just read all Instructions once before starting any procedures.
Few Notes about this OSX 10.10 & 10.10.1 (Intel & AMD Supported)
<?php | |
class Node { | |
public $val; | |
public $mem; | |
public $par; | |
function __constructor($v) | |
{ | |
$this->val = $v; | |
$this->mem = Array(); |
# VMware notes | |
#### BR-1020 Driver | |
#### Mount virtual cd on ESXi host | |
1. Find out cdrom device reference | |
```bash | |
esxcfg-mpath -l | |
``` | |
2. Load iso9660 module |