火曜日, 12月 29, 2009
月曜日, 12月 28, 2009
日曜日, 12月 27, 2009
金曜日, 12月 25, 2009
Fedora 12 Nvidia Driver Installation
How to nVidia Fedora 12 notes
Fedora12 に Nvidia ドライバを入れた (RPMFusion)
Fedora 12 Nvidia Driver Installation
Installing video drivers
Nvidia on Kunbuntu
Howto: Install NVIDIA manually in Ubuntu and Debian
NVIDIA Accelerated Linux Graphics Driver README and Installation Guide
Fedora12 に Nvidia ドライバを入れた (RPMFusion)
Fedora 12 Nvidia Driver Installation
Installing video drivers
Nvidia on Kunbuntu
sudo apt-get install nvidia-glx
sudo apt-get install nvidia-settings
sudo nvidia-glx-config enable
Howto: Install NVIDIA manually in Ubuntu and Debian
NVIDIA Accelerated Linux Graphics Driver README and Installation Guide
木曜日, 12月 24, 2009
postgresサーバーに認証するようにする
PostgreSQL のセキュリティ(Apache + PHP + PostgreSQL 実験室)
/data/pg_hba.conf で
/data/pg_hba.conf で
local all md5
host all 127.0.0.1 255.255.255.255 md5
> psql testでログインして
alter user postgres with password 'xxxx'でパスワードを変更する。
Dual on various Database Systems
Where is my dual?
■表不要→MySQL, PostgreSQL, MS SQL Server
□表必要→Oracle(DUAL), InterBase/Firebird(RDB$DATABASE), IBM DB2(SYSIBM.SYSDUMMY1)
■表不要→MySQL, PostgreSQL, MS SQL Server
□表必要→Oracle(DUAL), InterBase/Firebird(RDB$DATABASE), IBM DB2(SYSIBM.SYSDUMMY1)
月曜日, 12月 21, 2009
Format FAT32 on Linux
LinuxにおけるFAT32フォーマットの方法
LinuxでUSBメモリ等の中のvfat/ntfsのラベル付け方法
mlabel -i /dev/hoge ::NEWLABEL
FAT32を表す領域タイプとして0x0B(FAT32)、0x0C(FAT32 (LBA))がある。これらの使い分けは以下の通り。
- 0x0B (FAT32)
- パーティションの終了シリンダが1023、ディスクの先頭から8GBまでの領域にパーティションが収まる場合に利用してもよい。
- 0x0C (FAT32 (LBA))
- LBA対応版。パーティションが終了シリンダが1023を超える場合にこちらを利用する。
実際にmkfsコマンドを利用してフォーマットする。
$ sudo mkfs.vfat -v -c -F 32 /dev/sde1
後はまったりとフォーマットが完了するまで待つだけです。
オプションの解説
- -v
- 詳細な進捗を表示
- -c
- 不良ブロックの精査を行う
- -F 32
- FAT32形式でのフォーマットの指定。-FだとFAT(16)となる。
LinuxでUSBメモリ等の中のvfat/ntfsのラベル付け方法
mlabel -i /dev/hoge ::NEWLABEL
日曜日, 12月 20, 2009
10 things you can do when Windows XP won't boot
10 things you can do when Windows XP won't boot
起動しないエラーと修復方法
起動しないエラーと修復方法
- fixmbr - ブートストラップローダを修復する
- fixboot - NT-IPLが壊れている
金曜日, 12月 18, 2009
grldrファイルの説明
使うファイルとその説明
grldr grub4dos のプログラム本体
grub の stage2 に相当
grldr.mbr grldr を ロードするブートストラップ
grub の stage1(MBR) と stage1_5 をくっつけたもの。
これだけで FAT/FAT32 , NTFS, EXT2/EXT3 に対応
menu.lst 設定ファイル (MSDOS 形式 CR+LF OK)
default 状態を保存するためのファイル。
状態を保存しなければ必要なし
木曜日, 12月 17, 2009
Converting a Relative Path to an Absolute Path in Bash
Converting a Relative Path to an Absolute Path in Bash
if the directory exists, then
if [[ ! $d =~ /^\/.*/ ]]; then d=$PWD/$d; fi;
if the directory exists, then
echo "Absolute path: `cd $1; pwd`"
-- or --
readlink -f ../bar
-- or --
readlink -f ../bar
How to install ubuntu9.04 dual boot with Windows XP using grub4dos
How to install ubuntu9.04 dual boot with Windows XP
Install Ubuntu 8.04 from Hard Disk
Installing Fedora from the hard drive (without a boot CD).
Grub4dosでのCDイメージの起動
Grub4dos Guide
Boot Fedora 12
In menu.lst, add
Install Ubuntu 8.04 from Hard Disk
title Install Ubuntu
root (hd0,4)
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-8.04.1-desktop-i386.iso
initrd /initrd.gz
root (hd0,4)
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-8.04.1-desktop-i386.iso
initrd /initrd.gz
Installing Fedora from the hard drive (without a boot CD).
- Let Grub to load before XP boot menu
- ▲.rename ntldr (the XP loader) as ntldrxp and grldr (Grub loader) as ntldr
- ▲.create an entry in menu.lst to load XPtitle Microsoft Windows XP SP2 Pro (Find and Load)
find --set-root /ntldrxp
chainloader /ntldrxp
Grub4dosでのCDイメージの起動
title Windows PE 2.0 (from /recovery.iso)
find --set-root /recovery.iso
map /recovery.iso (0xff) || map --mem /recovery.iso (0xff)
map --hook
chainloader (0xff)
find --set-root /recovery.iso
map /recovery.iso (0xff) || map --mem /recovery.iso (0xff)
map --hook
chainloader (0xff)
Grub4dos Guide
Boot Fedora 12
In menu.lst, add
title Fedora Live
kernel (hd0,0)/boot/vmlinuz0 root=/dev/sda1 rootfstype=ntfs ro quiet liveimg rhgb
initrd=(hd0,0)/boot/initrd0.img
kernel (hd0,0)/boot/vmlinuz0 root=/dev/sda1 rootfstype=ntfs ro quiet liveimg rhgb
initrd=(hd0,0)/boot/initrd0.img
水曜日, 12月 16, 2009
火曜日, 12月 15, 2009
月曜日, 12月 14, 2009
Split Window in Vim
How do I open and edit multiple files under VIM text editor running under Ubuntu Linux / UNIX operating systems to improve my productivity?
My vi/vim cheatsheet
Vim documentation: windows
My vi/vim cheatsheet
Vim documentation: windows
Open two windows | |
---|---|
$ vim -o file1.txt resume.txt | Start vim as follows to open two windows,split horizontally |
$ vim -O /etc/passwd /etc/hosts | The -O option allows to open two windows, split vertically |
^W-s | Split current window in two horizontally |
^W-v | Split current window in two vertically |
^W-n | Open new empty window horizontally |
:new | Open new empty window horizontally |
:sp | Open new empty window horizontally |
:vsp | Open new empty window vertically |
:new /etc/hosts.deny | Open exiting file in a new windows horizontally |
:sp /etc/hosts.deny | Open exiting file in a new windows horizontally |
:vsp /etc/hosts.deny | Open exiting file in a new windows vertically |
Switch from Horizontal split to Vertical split | |
^W-L | Switch from horizontal to vertical split, putting the current buffer on the right side of the vertical split. |
^W-H | Put it on the left |
^W-J | bottom |
^W-K | top |
Moving between windows | |
Key combination | Action |
^W-h | move to the window on the left |
^W-j | move to the window below |
^W-k | move to the window above |
^W-l | move to the window on the right |
^W-t | move to the TOP window |
^W-b | move to the BOTTOM window |
Close windows | |
^W-^Q | Close the current windows |
[ESC]-:q | Quit current window |
Resize Window | |
[ESC] - 5 - ^W - + | Increase windows size by 5 |
[ESC] - 5 - W - - | Decrease windows size by 5 |
Save and quit all windows | |
:wqall | Save all changes in all windows and quite |
:qall! | Quits Vim and throws away all changes |
Makefileディレクトリ
As make reads various makefiles, including any obtained from the MAKEFILES variable, the command line, the default files, or from include directives, their names will be automatically appended to the MAKEFILE_LIST variable. They are added right before make begins to parse them.
Using the ?= construct will keep variable from being redefined if it is already set.
Using the ?= construct will keep variable from being redefined if it is already set.
日曜日, 12月 13, 2009
Setting Up a PXE Server(Including Ubuntu and Fedora)
Setting Up a PXE Server
WindowsでPXEネットワークブート用サーバの設定 - TFTPD32(内容がこく、大変参考になります)
Ubuntu Netboot Images
Fedora 11 Network Installation from GRUB
Fedora 9をPXEブートでインストールする
PXEネットワークブート用サーバを構築するには
PXE関連で使用するポートは以下のとおり。
ネットワーク経由でCentOSを導入する
WindowsでPXEネットワークブート用サーバの設定 - TFTPD32(内容がこく、大変参考になります)
Ubuntu Netboot Images
Fedora 11 Network Installation from GRUB
Fedora 9をPXEブートでインストールする
PXEネットワークブート用サーバを構築するには
PXE関連で使用するポートは以下のとおり。
|
ネットワーク経由でCentOSを導入する
金曜日, 12月 11, 2009
Start postgresql database server
You can now start the database server using:
サービスで起動の時:
PostgreSQLサーバーに接続:
/usr/bin/postgres -D /var/lib/pgsql/data
or
/usr/bin/pg_ctl -D /var/lib/pgsql/data -l logfile start
サービスで起動の時:
service postgresql initdb <- 初回だけ service postgresql start
PostgreSQLサーバーに接続:
- postgresユーザーでログイン
# su - postgres
ログインした後:
$ psql -lで初期作成したデータベースを確認できる - 「createuser」コマンド で、ユーザ(ロール)を作成する
createuser myuser
- postgresユーザーからmyuserアカウントに戻って、データベースを作成する
createdb mydb
- 「psql」コマンド で、作成したデータベースに接続する
psql mydb
木曜日, 12月 10, 2009
Linuxドライバに変数を渡すのにうってつけの方法
ドライバに変数を渡すのにうってつけの方法
- ioctl
- /dev/以下のファイルに対してread/write(例:/dev/dvb)
- /procファイルシステム
- /sysfsファイルシステム
- モジュール起動時のオプション
- これら以外にも、block-driverやnetlink、configfsを使うなどの案もありました。
水曜日, 12月 09, 2009
火曜日, 12月 08, 2009
.mozilla/firefox/ggc9qb7w.default/extensions/VMwareVMRC@vmware.com/plugins/np-vmware-vmrc-2.5.0-122581.soアクセスの許可
chcon -t textrel_shlib_t '/home/ccc/.mozilla/firefox/ggc9qb7w.default/extensions/VMwareVMRC@vmware.com/plugins/np-vmware-vmrc-2.5.0-122581.so'
semanage fcontext -a -t textrel_shlib_t '/home/ccc/.mozilla/firefox/ggc9qb7w.default/extensions/VMwareVMRC@vmware.com/plugins/np-vmware-vmrc-2.5.0-122581.so'
或いは
setsebool -P allow_execmod 1
月曜日, 12月 07, 2009
How to use OpenSSL
How to use OpenSSL
Check:
Check:
$ openssl verify -verbose -purpose smimesign /Library/Ruby/Gems/1.8/gems/httpclient-2.1.5/lib/httpclient/cacert.p7s
水曜日, 12月 02, 2009
SSH Tunneling
SSH Tunneling
Windows 用ターミナルエミュレータ
TeraTerm、Putty 、Poderosa
Linux
ssh-gui
Souptonuts
ssh -f user@personal-server.com -L 2000:personal-server.com:25 -N
ssh -f -L 3000:talk.google.com:5222 home -N
Windows 用ターミナルエミュレータ
TeraTerm、Putty 、Poderosa
Linux
ssh-gui
Souptonuts
火曜日, 12月 01, 2009
登録:
投稿 (Atom)