_________________________________________________________________________________ Firefox サブフレーム問題 * アドレスバーに about:config と入力して開く(警告がでます)。 * 右クリックして 新規作成 → 真偽値 を選択する。 設定名は browser.frame.validate_origin とする。 * 真偽値に false を選択する。 * ブラウザを再起動する。 _________________________________________________________________________________ rm -rf ***** ディレクトリごと警告無しで削除 chmod -R 777 ***** ディレクトリごとパーミッションの変更 _________________________________________________________________________________ NTFSファイルシステムをマウントする mkdir /mnt/windows mount /dev/hda1 /mnt/windows -t ntfs -r アンマウント umount /mnt/windows umount /dev/hda1 _________________________________________________________________________________ ---------------------------------- df -lh (ディスクの使用量を表示 -サイズを適当な単位で表示) ---------------------------------- 右クリックメニューでターミナルを起動する yum install nautilus-open-terminal ---------------------------------- ---------------------------------- # yum install mplayer* xmms* ogle* # yum --enablerepo=atrpms install w32codec divx4linux # yum --enablerepo=flash install flash-plugin # yum install gkrellm # yum install jd # yum install xscreensaver* # yum install gdesklets* firefox plugin-------- Bookmarks Synchronizer ---------------------------------- ---------------------------------- Firefox拡張機能 http://mozilla.dorando.at/keyconfig.xpi http://www.pqrs.org/~tekezo/firefox/extensions/functions_for_keyconfig/index.html.ja http://tmp.garyr.net/ https://addons.mozilla.org/firefox/77/ *「Sage の起動時に新着チェック」 *プロファイルの extensions にある Sage にフォルダの sage.jar に格納されている sage.js 内の関数 init() の最後の方に updateCheck(); と書き足す。 ---------------------------------- yum install mplayerplug-in yum --enablerepo=atrpms install w32codec yum install xmms-mp3 ---------------------------------- <<>> ・サウンドは /boot/loader.conf に以下の行を追加するだけで動作します。 snd_ich_load="YES" ・コンソールモードで106キーボード配列はに対応させる。/etc/sysconfigの内部で、 keymap=jp.106 _________________________________________________________________________________ FC2のnautilusを従来通りに gconftool-2 --type bool --set /apps/nautilus/preferences/always_use_browser true _________________________________________________________________________________ 起動時 eth0 が存在しないというエラーが出る # cd /etc/rc.d/rc5.d/ # mv S10network S11network # mv S24pcmcia S10pcmcia _________________________________________________________________________________ Javaの導入 http://java.sun.com/j2se/1.4.2/ja/download.htmlから、J2SE JREのダウンロード ダウンロードしたファイルに実行属性をつけて実行をします。 $ chmod +x j2re-1_4_2_04-linux-i586-rpm.bin $ ./j2re-1_4_2_04-linux-i586-rpm.bin root権限でインストールします。 $ su Password: "rootのパスワードを入力" # rpm -ihv j2re-1_4_2_04-fcs-linux-i586.rpm JavaプラグインのシンボリックリンクをMozillaのプラグインディレクトリに作成して終了。 # ln -s /usr/java/j2re1.4.2_04/plugin/i386/ns610-gcc32/libjavaplugin_oji.so /usr/lib/mozilla/plugins _________________________________________________________________________________ Flash Playerの導入 http://macromedia.mplug.org/site_uh.htmlからflash-pluginのRPMをダウンロードします ダウンロードしたrpmをインストールします。 _________________________________________________________________________________ Vineのインストールに役立ったサイト http://homepage1.nifty.com/~hide822/vl31_mplayer.html http://www.ne.jp/asahi/tokyo/shin/linux/desktop/tips.html http://www013.upp.so-net.ne.jp/ikeda/linux/mplayer.html _________________________________________________________________________________ HDDフォーマットTips fdisk /mbr fdisk _________________________________________________________________________________ Firefoxを日本語表示にするには http://www.atmarkit.co.jp/flinux/rensai/linuxtips/686fc3ffjp.html _________________________________________________________________________________ Firefox 高速化&キーバインド(BでPgUp) ~/.mozilla/firefox/@@@@@@.default/user.js を作成して下記をコピペ user_pref("network.http.pipelining", true); user_pref("network.http.pipelining.firstrequest", true); user_pref("network.http.pipelining.maxrequests", 8); user_pref("network.http.max-connections", 48); user_pref("network.http.max-connections-per-server", 16); user_pref("network.http.max-persistent-connections-per-proxy", 16); user_pref("network.http.max-persistent-connections-per-server", 8); user_pref("nglayout.initialpaint.delay", 0); user_pref("content.notify.backoffcount", 5); user_pref("plugin.expose_full_path", true); user_pref("ui.submenuDelay", 0); user_pref("content.interrupt.parsing", true); user_pref("content.max.tokenizing.time", 2250000); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); user_pref("browser.cache.memory.capacity", 65536); user_pref("keyconfig.main.my_key_ScrollPageUp", "][B][][goDoCommand('cmd_scrollPageUp');"); _________________________________________________________________________________ Firefox 右クリックの検索がおかしくなった about:configで browser.search.defaulturlってとこを http://www.google.co.jp/search?&num=ie=UTF-8&oe=UTF-8&hl=ja&lr=lang_ja&q= _________________________________________________________________________________ bittorrent ダウンロードするには、.torrent ファイルの URL を btdownloadcurses.py スクリプトに渡す _________________________________________________________________________________ J-Pilot設定 ポートを /dev/ttyUSB1 にする _________________________________________________________________________________ Javaの文字化け対策 fallback ディレクトリを作成 # mkdir /usr/java/jre1.5.0_04/lib/fonts/fallback fallback ディレクトリへ移動 # cd /usr/java/jre1.5.0_04/lib/fonts/fallback kochi-gothic-subst.ttfへのシンボリックリンクを作成 # ln -s /usr/share/fonts/japanese/TrueType/kochi-gothic-subst.ttf kochi-mincho-subst.ttfへのシンボリックリンクを作成 # ln -s /usr/share/fonts/japanese/TrueType/kochi-mincho-subst.ttf _________________________________________________________________________________ yumで関連パッケージをまとめて追加/削除するには # yum grouplist ←インストール済みのグループおよびインストール可能なグループを表示 # yum groupinstall "○○○○" ←指定したグループのパッケージをインストール _________________________________________________________________________________ ochusha rebuild # rpmbuild --rebuild ochusha-0.5.8.2-2.fc5.src.rpm # rpm -ivh /usr/src/redhat/RPMS/i386/ochusha-0.5.8.2-2.fc5.i386.rpm ------------------------------------------------------------------------------ webcaster v110のポートの開放 ルータ設定→NAPT設定↓ 割り当てWAN側受信ポート範囲::(開放したいポート番号)〜(開放したいポート番号) プロトコル種別::TCPにチェックを付ける LAN側 転送IPアドレス::PCのIPアドレス LAN側 転送ポート::開放したいポート番号 追加→確認→送信→更新 ------------------------------------------------------------------------------ 24777 ------------------------------------------------------------------------------ /etc/start_if.***0 に、 ifconfig ***0 ssid **** wepmode on wepkey **** とか書いて、 /etc/rc.conf に、 network_interface="***0 lo0" ***_enable="YES" ifconfig_***0="DHCP"