FT-130915
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*UBUNTU12.04.1LTS再インストール [#sdf38eb7]
以前から使っていた12.04LTS、機能的には問題がないの...
~
以下覚書
1.USB-HDDのUUIDは変わらないので、/etc/fstabをどこか別...
2.Sambaは、/etc/samba/smb.confを同じようにコピーして...
3.うっかり忘れてた、wizd_0_12.tar.gzは、$ sudo apt-ge...
wizdは癖があって、同じ階層のwizd.confしか読まないような...
#!sh
cd /root/wizd
./wizd <−./を忘れないようにww
exit 0
としておく。
wizd.confはserver_language_code utf8とdocument_rootだけを...
自動起動は、
#!/bin/sh
#
# Start up script for wizd
#
# chkconfig: 345 96 15
# description: wizd is an server software for MediaWiz
# config: /etc/wizd.conf
#
# See how we were called.
case "$1" in
start)
echo "Starting wizd: "
/usr/sbin/wizd
;;
stop)
echo "Shutting down wizd: "
/usr/bin/killall wizd
;;
restart)
$0 stop
$0 start
;;
*)
echo -n "Usage: $0 {start|stop|restart"
exit 1
esac
exit 0
これを、/etc/init.d/wizdとして作って、chmod a+x (でいい...
#update-rc.d wizd defaults
として組み込めばよかった。~
~
~
~
[[ファイルタンク(サーバ?)]]~
終了行:
*UBUNTU12.04.1LTS再インストール [#sdf38eb7]
以前から使っていた12.04LTS、機能的には問題がないの...
~
以下覚書
1.USB-HDDのUUIDは変わらないので、/etc/fstabをどこか別...
2.Sambaは、/etc/samba/smb.confを同じようにコピーして...
3.うっかり忘れてた、wizd_0_12.tar.gzは、$ sudo apt-ge...
wizdは癖があって、同じ階層のwizd.confしか読まないような...
#!sh
cd /root/wizd
./wizd <−./を忘れないようにww
exit 0
としておく。
wizd.confはserver_language_code utf8とdocument_rootだけを...
自動起動は、
#!/bin/sh
#
# Start up script for wizd
#
# chkconfig: 345 96 15
# description: wizd is an server software for MediaWiz
# config: /etc/wizd.conf
#
# See how we were called.
case "$1" in
start)
echo "Starting wizd: "
/usr/sbin/wizd
;;
stop)
echo "Shutting down wizd: "
/usr/bin/killall wizd
;;
restart)
$0 stop
$0 start
;;
*)
echo -n "Usage: $0 {start|stop|restart"
exit 1
esac
exit 0
これを、/etc/init.d/wizdとして作って、chmod a+x (でいい...
#update-rc.d wizd defaults
として組み込めばよかった。~
~
~
~
[[ファイルタンク(サーバ?)]]~
ページ名: