CentOS 5.1 Install (2)
【シャットダウン出来ない場合の対処】
# vi /boot/grub/menu.lst
kernel 項の行末に acpi=force を追加。
| 固定リンク
【シャットダウン出来ない場合の対処】
# vi /boot/grub/menu.lst
kernel 項の行末に acpi=force を追加。
| 固定リンク
【各種設定の確認】
# /usr/sbin/setup
【 Network の設定】
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
【 Firewall の設定】
# system-config-securitylevel-tui
Security Level: Disabled
SELinux: Disabled
【 NTP の設定】
# vi /etc/ntp.conf
#server 0.rhel.pool.ntp.org #server 1.rhel.pool.ntp.org #server 2.rhel.pool.ntp.org #server 127.127.1.0 # local clock #fudge 127.127.1.0 stratum 10 server ntp1.jst.mfeed.ad.jp server ntp2.jst.mfeed.ad.jp server ntp3.jst.mfeed.ad.jp restrict ntp1.jst.mfeed.ad.jp restrict ntp2.jst.mfeed.ad.jp restrict ntp3.jst.mfeed.ad.jp
【 ImageMagick インストール】
# yum -y install ImageMagick ImageMagick-perl
# yum clean packages
| 固定リンク
CSV ファイルをファイル名付きでダウンロードさせる CGI プログラム(Perl)
if (-f $filename) {
print "Content-Type: text/csv\n";
print "Content-Disposition: attachment; filename=$filename\n\n";
$size = -s $filename;
open(IN, $filename);
read(IN, $buf, $size);
close(IN);
print $buf;
}
| 固定リンク
Enable Domain Credential Storage
By default, users' computers will be able to store their user name and password credentials. This enables them to connect to your organization's domain in the Microsoft Online service without being repeatedly prompted for their credentials.
If your organization has disabled domain credential storage, you must re-enable this feature on all computers that will use the Microsoft Online service. The registry entry is:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\disabledomaincreds
You must set this value to 0 to enable domain credential storage on the computer.
| 固定リンク