Fiji's Islands内検索 / 「xmms2」で検索した結果

検索 :
  • xmms2
    ...tp //wiki.xmms2.xmms.se/wiki/Main_Page By the way, How to work? # install sudo apt-get install xmms2 gxmms2 # run # xmms2 implement software using client server model. # so it needs server xmms2d gxmms2 client with xmms2 Esperanza (QT4) gxmms2 (GTK) Abraca (GTK) Blastwave (GTK) eq Euphoria juxtapose Shellac Sonus radiobar Promoe
  • メニュー
    ...webcamera xmms2 dvd usbserial screenshot gtk+-2.0-0 get version 9.04 alpha1 Wii remocon Fedorasudo mpg123 selinux x3d burn CD or DVD nfs programminganimEffect pcc dbus parallelport bluetooth gdb fps Common Lisp OpenVG step count profiler check file extensions make glut core dump buffer overflow free忘れ speed計測 memory copy alignment endian variable argument lists socket witticismitojun temp リ...
  • xmodmap
    " Change key mapping xmodmap -e keycode 133 = Meta_L Meta_R
  • Common Lisp
    http //www.fireproject.jp/feature/common-lisp/
  • Aspire One/How to install ubuntu
    How to install ubuntu 準備 Ubuntu 8.04.1(8.04.0はダメなので要注意) http //cdimage-ashisuto.ubuntulinux.jp/releases/8.04/ubuntu-ja-8.04.1-desktop-i386.iso USB flash memory or USB strage 1GB以上 手順 Ubuntu上で以下の手順を実行 sudo su apt-get install syslinux fdisk /dev/sdb1 # -- USB strageのデバイスファイル # fat32 bootableに編集する mkdosfs -F 32 /dev/sdb1 wget http //www.startx.ro/sugar/isotostick.sh chmod ...
  • check file extensions
    How to check file extentions on linux? char *p, *file = "hoge.xml"; int ok; ok = (p = strrchr(file, . )) ? !memcmp(p, ".xml", 4) 0;
  • proc
    http //www.linux.or.jp/JM/html/LDP_man-pages/man5/proc.5.html http //d.hatena.ne.jp/inutch/20080114/1200298525 http //jo1upk.blogdns.net/linux/?proc fs/proc/array.c static int do_task_stat(struct task_struct *task, char * buffer, int whole) diskstats fs/proc/proc_misc.c void __init proc_misc_init(void) proc_create("diskstats", 0, NULL, proc_diskstats_operations); ...
  • webcamera
    overview I bought "Groovy CAMI30 NightVision2" in Akihabara. This webcamera uses OmmVision OV7660 CMOS sensor and sonix SN9C201 video processer. This camera working web camera on ubuntu 7.04 8.04 I tried this solution at "Sat Oct 11 13 57 07 JST 2008" 1. Build microdia driver sudo apt-get install git-core git clone git //repo.or.cz/microdia.git make sudo mod...
  • xserver
    X.Org http //www.x.org/wiki/ XFree86 http //www.xfree86.org/ tinyX http //www.x-oz.com/tinyx.html OneSecondX http //fedoraproject.org/wiki/Features/OneSecondX AsmLibx http //sourceforge.net/projects/asmlibx/ Framebuffer UI (fbui) http //home.comcast.net/~fbui/ DirectFB http //www.directfb.org/ eGuiEval http //sourceforge.net/projec...
  • GPS
    GT-730F How to use? in the linux terminal I sent sudo modprobe pl2303 I went to /etc/modules and added pl2303 to the bottom of the file baud rate set 38400 I plugged in the device, and sent cat /dev/ttyUSB0 Features Acquire and track 65 satellites simultaneously Venus 5 simultaneous time-frequency search bins Signal detection better than -160dBm Rea...
  • Holophonics
    What is this? http //en.wikipedia.org/wiki/Holophonics Galatea Talk http //lfll.blog73.fc2.com/blog-entry-140.html KEMAR http //sound.media.mit.edu/resources/KEMAR/README 3-dimensional Sound http //games.cs.uni-magdeburg.de/audio/3d_sound.htm OpenAL Creative implementation http //www.memorize-being.net/releases/oal11spec-ja/spec-4.html http //connect.cr...
  • プラグイン/コメント
    コメントプラグイン @wikiのwikiモードでは #comment() と入力することでコメントフォームを簡単に作成することができます。 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_60_ja.html たとえば、#comment() と入力すると以下のように表示されます。 名前 コメント
  • itojun
    we have to switch our mind from "spec then code" to "code then spec". http //www.ietf.org/mail-archive/web/ipv6/current/msg07313.html
  • lfs
    Linux From Scratch Version 6.4 http //www.linuxfromscratch.org/lfs/view/stable/index.html 注意点 sudo apt-get install texinfo mv glibc-2.8-20080929/libidn/configure glibc-2.8-20080929/libidn/configure.00
  • block dump
    # dump on echo -n 1 /proc/sys/vm/block_dump # dump off echo -n 0 /proc/sys/vm/block_dump block/ll_rw_blk.c if (unlikely(block_dump)) { char b[BDEVNAME_SIZE]; printk(KERN_DEBUG "%s(%d) %s block %Lu on %s\n", current- comm, current- pid, (rw WRITE) ? "WRITE" "READ", (unsigned long long)bio- bi_sector, ...
  • u-boot
    u-bootのビルド手順の解析 各ソースをオブジェクト化 各オブジェクトから__u_boot_cmd_で始まる関数のシンボルを抽出 リンクしELFバイナリを生成 ELFからRAWバイナリに変換 ld -Bstatic 共有ライブラリをリンクをしない -T commandfile commandfileからリンクコマンドを読み込む -Ttext org textセグメントに対してorgを開始アドレスにする -u sym symを出力ファイルに未定義なシンボルとして挿入する --start-group archives --end-group 指定されたアーカイブに対し未定義参照がなくなるまで検索が行なわれる -Map mapfile mapfileにリンクマップを出力する -o out...
  • endian
    目的 endianを確認する コード #include stdio.h #include string.h int main() { int i; unsigned char s[4]; int *ptr = (int*)s; memset(s, 0, sizeof s); *ptr = 0x00ff00ff; for (i = 0; i 4; i++) printf("s[%d] = 0x%x\n", i, s[i]); return (0); } 実行 大体の計算機(PC)では1byteごとに値を保存します。 このとき2byte以上の値を保存するときに最下位biteから格納するものを intel系のlittle endianと呼び最上位からbitを格納するもの...
  • kgdb
    http //git.kernel.org/?p=linux/kernel/git/jwessel/linux-2.6-kgdb.git;a=summary http //www.ibm.com/developerworks/jp/linux/library/l-debug/ http //www.shakthimaan.com/downloads/glv/kgdb-howto/kgdb-howto.html
  • skype
    Install skype on Ubuntu 8.10 sudo wget http //www.medibuntu.org/sources.list.d/intrepid.list --output-document=/etc/apt/sources.list.d/medibuntu.list sudo apt-get update sudo apt-get install medibuntu-keyring sudo apt-get update sudo apt-get install skype References https //help.ubuntu.com/community/Medibuntu
  • プラグイン/ニュース
    ニュース @wikiのwikiモードでは #news(興味のある単語) と入力することで、あるキーワードに関連するニュース一覧を表示することができます 詳しくはこちらをご覧ください。 =>http //atwiki.jp/guide/17_174_ja.html たとえば、#news(wiki)と入力すると以下のように表示されます。 真女神転生5攻略Wiki|メガテン5 - AppMedia(アップメディア) 【グランサガ】リセマラ当たりランキング - グランサガ攻略wiki - Gamerch(ゲーマチ) SlackからWikiへ!シームレスな文章作成・共有が可能な「GROWIBot」リリース - アットプレス(プレスリリース) Among Us攻略Wiki【アマングアス・アモングアス】 - Gamerch(ゲーマチ) 【ウマ娘】ナリタブライアン...
  • git
    Install sudo apt-get install git git-core libglib2.0-dev libgtk2.0-dev Setting sudo update-alternatives --config git Password `git を提供する 2 個の alternatives があります。 選択肢 alternative ----------------------------------------------- + 1 /usr/bin/git.transition * 2 /usr/bin/git-scm デフォルト[*] のままにするには Enter、さもなければ選択肢の番号のキーを押してください 2 How to use sudo gi...
  • step count
    find . -type f -exec wc -l {} \; | awk {print $1"\n+\np"} | dc | awk {printf ("%d\r", $1)} echo CCCC http //freshmeat.net/projects/cccc/ 使い方 sudo apt-get install cccc http //x68000.q-e-d.net/~68user/unix/pickup?cccc 挙動 /**/の箇所はカウントしない hoge /* comment */はカウントする 空行はカウントしない //の箇所はカウントしない #if, #else, #end, #define, #include, #erro...
  • free忘れ
    目的 mtraceを使ってmemory leakを検出しfree忘れを見つける Ulrich DrepperによってGNU C Libraryで実装されている。 コード buf2をfreeし忘れている #include stdio.h #include malloc.h #include mcheck.h /* for check memory leak */ int main() { char *buf1, *buf2; mtrace(); buf1 = (char*)malloc(10); buf2 = (char*)malloc(10); free(buf1); /* free only buf1 */ muntrace(); return(0); } 実行 $ gcc -o fr...
  • fastboot
    news http //lwn.net/Articles/299483/ git repository http //git.kernel.org/?p=linux/kernel/git/arjan/linux-2.6-fastboot.git;a=summary Download sudo apt-get install git-core git clone git //git.kernel.org/pub/scm/linux/kernel/git/arjan/linux-2.6-fastboot.git master Config │Symbol FASTBOOT[=n] │Prompt Fast boot support │ Defined at init/Kconfig 527 │ Location │ ...
  • @wiki全体から「xmms2」で調べる

更新順にページ一覧表示 | 作成順にページ一覧表示 | ページ名順にページ一覧表示 | wiki内検索

ツールボックス

下から選んでください:

新しいページを作成する
ヘルプ / FAQ もご覧ください。