This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- rcube_charset.php.org 2013-09-06 21:20:49.000000000 +0900 | |
+++ rcube_charset.php 2013-12-13 11:27:54.000000000 +0900 | |
@@ -177,6 +177,7 @@ | |
static $mbstring_sch = null; | |
static $conv = null; | |
+ if(strcasecmp('iso-2022-jp', $from)===0) $from = 'ISO-2022-JP-MS'; | |
$to = empty($to) ? RCUBE_CHARSET : $to; | |
$from = self::parse_charset($from); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for /F "skip=1 delims=" %%j in ('wmic bios get serialnumber') do ( | |
set SERIAL=%%j | |
goto :DONE | |
) | |
:DONE | |
echo %SERIAL% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DHCP Server Configuration file. | |
# see /usr/share/doc/dhcp*/dhcpd.conf.sample | |
# | |
### iPXE-specific options | |
# | |
# http://www.ipxe.org/howto/dhcpd | |
# | |
option space ipxe; | |
option ipxe-encap-opts code 175 = encapsulate ipxe; | |
option ipxe.priority code 1 = signed integer 8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ipxe | |
git clone http://git.ipxe.org/ipxe.git | |
cd src | |
make bin/undionly.kpxe | |
cp bin/undionly.kpxe /tftpboot | |
## wimboot | |
git clone http://git.ipxe.org/wimboot.git | |
cd wimboot | |
cp -p wimboot /tftpboot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
guest account = nobody | |
map to guest = bad user | |
[tftpboot] | |
browsable = yes | |
path = /tftpboot | |
public = yes | |
writable = yes | |
guest ok = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vbell off | |
autodetach on | |
defscrollback 9999 | |
caption always "%{= kw}%-w%{= BW}%n %t%{-}%+w %-= %c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!ipxe | |
imgfree | |
chain http://${next-server}/switch-pxe.php?serial=${serial:uristring} || shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install | |
url --url http://ftp.iij.ad.jp/pub/linux/centos/6.3/os/x86_64/ | |
# if you use proxy | |
# url --url http://ftp.iij.ad.jp/pub/linux/centos/6.3/os/x86_64/ --proxy http://proxy-ip:8080/ | |
lang en_US.UTF-8 | |
keyboard us | |
network --bootproto=dhcp | |
rootpw password | |
firewall --disabled | |
authconfig --enableshadow --passalgo=sha512 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dashboard から管理したい git レポジトリの path を指定します。 | |
// pub: true -> 認証なしでみれる | |
// pub: false -> 認証ないとみれない | |
// | |
exports.folders = [ | |
{ type: 'git', name: 'Public GIT folder', path: '/home/nexus/Desktop/play/SparkleDashboard-x/repos/g1', pub: true }, | |
{ type: 'git', name: 'Private GIT folder', path: '/home/nexus/Desktop/play/SparkleDashboard-x/repos/g2', pub: false } | |
]; | |
// Listen する IP, Port の指定 |
NewerOlder