87 Debian Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 1

Size: px
Start display at page:

Download "87 Debian 2012 4 1 Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 1"

Transcription

1 87 Debian : 2: 3:

2 87 Debian Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 1

3 koedoyoshida noritadak dictoss( ) henrich ikeomasa MATOHARA beatenavenue yamamoto emasaka Debian Debian Debian Debian Trivia Quiz 6 5 Debian node Debian Node npm Node npm Android Debian Android Barnes & Noble Nook Color Android Debian Nook Color Debian Nook Color Debhelper dh md5sums dh strip

4 87 Debian : 1. Debian koedoyoshida 1. Debian Greasemonkey noritadak 1. Ruby on Rails 2. Web 2.3 dictoss( ) 1. python Django python3 cakephp henrich Django 2.5 ikeomasa django python MVC (Python ) RDB O/R URL http 2.6 MATOHARA 1. Debian Perl Catalyst 2. exif exif 2.7 beatenavenue 1. pukiwiki web wiki 3

5 2. web CakePHP pear yamamoto Sinatra Debian Ubuntu 2. 1 OS pylons pyramid web debian 2. Web 2.12 emasaka 1. Bash on Rails 3 2. Web django Perl Catalyst?( mojiolicious... )

6 87 Debian Debian 3.1 Debian 85 2 Debian Debian 5 debian KDE4.7.4 Debhelper dh dpatch patch dh autotools-dev updateconfig KDE cmake autotools 3.2 Debian 86 3 Debian OSC 2012 Tokyo/Spring Debian Debian Apache Debian W3Techs Linux Web 1,2 2012/1 1 *1 Debian *1 5

7 87 Debian Debian Trivia Quiz Debian Debian debian-devel-announce@lists.deban.org debian-devel@lists.deban.org Debian Project News 1. Debian JP A Kouhei Maeda B Nobuhiro Iwamatsu C Junichi Uekawa 2. Debian.org DPL A Stefano Zacchiroli B Nobuhiro Iwamatsu C Kouhei Maeda 3. Debconf12 suponsord A 4 B 5 15 C 5 4. Debian (CFP) A B 4 C experimental apache A 2.3 B C Debian Edu? A emdebian B Scientific Linux C Skolelinux 7. 3/30 Debian Project A OSC B OSI C ETF 8. Debian Project gobby gobby.debian.org gobby A B churro C 6

8 87 Debian Debian node JavaScript? 2011 node Debian node *2 JavaScript JavaScript node JavaScript I/O node squeeze wheezy : # apt-get install nodejs Node nodejs *3 node- node JavaScript REPL JavaScript V8 $ node -v v $ node > console.log( hello world ) hello world node node Debian node 0.4: Debian sid : (stable) 0.7.x: (unstable) 0.8.x: 5.1 Debian Node Debian node *2 node node.js *3 node node 7

9 5.1.1 Node CLI node CLI) node cli cli Debian # apt-get install node-cli // Command-line tool to sum the stdin items. var cli = require( cli ); cli.withstdinlines(function(lines, newline) { var sum = 0; var count = 0; for (var i = 0; i < lines.length; ++i) { console.log(lines[i]); if (lines[i]!= ) { sum += parseint(lines[i]); count ++; } } console.log( sum: + sum + avg: + sum / count); }); $ node sum.js < testdata.txt sum: 233 avg: npm Node Node npm Debian npm Perl CPAN TeX CTAN Debian npm Debian npm ITP Debian /usr/lib/nodejs Debian npm /usr/local/lib/nodejs Exception node npm (Node 0.4 ) Bug# * npm npm Debian node Debian npm node 0.6 npm 1.1 npmjs[3] npm npm install npm sudo sudo root nobody *4 8

10 npm sudo npm install sudo *5 sudo npm install -g /usr/lib/node_modules nobody *6 npm -g sudo npm install node npm CLI # apt-get install nodejs nodejs-dev # curl sh $ sudo npm install -g express ejs socket.io npm http GET npm http GET npm http GET npm http npm http npm http GET npm http /usr/bin/express -> /usr/lib/node_modules/express/bin/express ejs@0.6.1 /usr/lib/node_modules/ejs express@2.5.8 /usr/lib/node_modules/express qs@0.4.2 mkdirp@0.3.0 mime@1.2.4 connect@1.8.6 socket.io@0.9.2 /usr/lib/node_modules/socket.io policyfile@0.0.4 redis@0.6.7 socket.io-client@ Debian npm Debian Debian npm npm install -g npm install /usr/lib/nodejs /usr/local/lib/nodejs /usr/lib/node modules./node modules npm $ npm help $ npm help npm $ npm help install npm /usr/lib/node modules Debian nodejs PATH NODE PATH *5 nobody *6 9

11 $ NODE_PATH=/usr/lib/node_modules node./program.js : package.json package.json npm link $ npm link./node modules * 7*8 npm./package.json npm help json (man npm-json.1) name/version dependencies npm install npm link node-waf Debian npm link package.json { } "name": "aptserver", "version": "v0.0.1", "dependencies": { "cli": "", "express": "", "ejs": "" } 5.4 apt-cache search HTTP request app.get() apt cache aptcache.stdout.on aptcache.on exit HTTP node *7 *8 /usr/lib/node modules/ 10

12 /* * A simple server which serves apt cache search results. */ var child_process = require( child_process ); var cli = require( cli ); var url = require( url ); var ejs = require( ejs ); cli.parse({ port: [ p, HTTP server will listen on this port., number, 8088] }); cli.main(function climain(args, options) { var express = require( express ); var app = express.createserver(); // set view options. app.set( view engine, ejs ); app.set( view options, { layout: false }); app.set( views, dirname + /views ); // Set up routes. app.get( /, getslash); app.get( /search, getsearch); console.log( Start listening on + options.port + / ); app.listen(options.port); }); /** handler for / request */ function getslash(request, response) { response.render( index.ejs ); } /** handler for /search? request */ function getsearch(request, response) { var query = request.query.q; var aptcache = child_process.spawn( apt-cache, [ search, query ]); /** Output of apt-cache search, to be used for response. */ var responsestring = ; aptcache.stdout.on( data, function handleaptcachestdout(data) { responsestring += data; }); aptcache.stderr.on( data, function handleaptcachestderr(data) { responsestring += data; }); aptcache.on( exit, function handleaptcacheexit(exitcode) { // apt-cache finished executing, send repsponse back to the server. response.render( search.ejs, {locals:{query: query, response: responsestring}}); }); } ejs HTML views/search.ejs <!-- -*- html; -*- --> <html> <body> <form method=get action= /search > <input type=text name=q></input> <button>search</button> </form> <h3>search for: <%= query %></h3> <pre> <%= response %> </pre> </body> </html> express, ejs, cli express: node ejs: HTML cli: 11

13 5.5 node Debian node 0.8 node nave / nvm Debian node [1] Node.js v Manual & Documentation /usr/share/doc/nodejs/api/index.html [2] Alioth pkg-javascript-devel pkg-javascript-devel/ [3] NPM [4] nodejs for Debian /usr/share/doc/nodejs-dev/readme.debian 12

14 87 Debian Android Debian 6.1 PC Android OS Debian Debian 6.2 Android Barnes & Noble Nook Color Android Barnes & Noble ( B&N) Nook Color *9 * 10 2 PDF Debian Android 6.3 Android Debian Android Debian OS : Android Android OS Linux 1. Android CPU Debian Linux / SD 2. Android Android VNC Viewer * Android / chroot Debian *9 *10 URL *

15 4. Debian vncserver Android VNC Viewer :5901 Debian Android Debian Linux Android Wi-Fi ubuntu Android ubuntu instller free details?id=com.zpwebsites.ubuntuinstall&hl=ja Debian Android : Lil Debi : Android OS Debian Android ARM CPU Debian ARM / Android Android OS Debian Android ARM CPU Wi-Fi / Linux Wi-Fi PC VGA BIOS IBM PC AT BIOS Debian B&N Nook Color Android OS Android OS Android VNC Viewer * adb USB Nook Color adbd USB /PC / adbd adbd * 13 *12 Android OS Android OS jpg *13 Wi-Fi adbd Wi-Fi 14

16 Nook Color Debian Android Nook Color Debian Nook Color minisd OMAP * 14 Debian 6.6 Debian Nook Color qemu Debian ARM 2. Nook Color root nooter0.2.zip /initrd Nook Color USB RNDIS I/F USB 3. 1,2 OMAP minisd Debian sid PC,, minisd 1 minisd USB 1. PC $ sudo aptitude install debian-installer-6.0-netboot-armel qemu-system util-linux kpartx dump unzip gvncviewer $ wget chmod 755 omap3-mkcard.sh 2. $ qemu-img create -f raw arm-versatile.img 5G 3. * 15 $ qemu-system-arm -M versatilepb -kernel /usr/lib/debian-installer/images/armel/versatile/vmlinuz versatile \ -initrd /usr/lib/debian-installer/images/armel/versatile/initrd.gz -m 256 -drive file=./arm-versatile.img,if=scsi,\ bus=0,unit=0,cache=writeback -append "root=/dev/ram desktop=lxde priority=medium" 4. Debian Debian (IP ) qemu PC 2 5. Reboot system qemu Ctrl+C *14 fdisk Debian *15 LXDE GNOME swap 15

17 1 Choose language Japanese 2 DHCP 3 Debian sid 4 5, Linux initrd $ mkdir debian $ sudo kpartx -a./arm-versatile.img $ sudo mount -t ext3 /dev/mappoer/loop0p1./debian $ cp debian/boot/initrd.img versatile. $ cp debian/boot/vmlinuz versatile. $ sudo umount./debian $ sudo kpartx -d./arm-versatile.img loop deleted : /dev/loop0 $ 7. initrd qemu xdm LXDE $ qemu-system-arm -M versatilepb -kernel./vmlinuz versatile \ -initrd./initrd.img versatile -m 256 -drive file=./arm-versatile.img,if=scsi,\ bus=0,unit=0,cache=writeback -append "root=/dev/sda1 " 8. LXDE lxterminal vnc $ su root Passwd: root # aptitude update;aptitude safe-upgrade;aptitude install tightvncserver 9. vnc LXDE $ sudo shutdown -h now 10. Power off qemu Ctrl+C 11. minisd PC mount umount /dev/sdb1 $ sudo umount /dev/sdb1 Tips: PC minisd / minisd Richo R5C822 minisd mmc0: error -110 whilst initialising SD card mmc0: Reset 0x1 never completed dmesg 16

18 /etc/modules minisd $ cat /etc/modules # for R5C822 mmc_block tifm_sd $ 12. minisd OMAP minisd /dev/sdb $ sudo./omap3-mkcard.sh /dev/sdb 13. nooter0.2 ( epiphany WEB nooter0.2.zip 14. nooter/ $ unzip nooter0.2.zip $ mkdir nooter $ sudo kpartx -a./nooter_sdcard_40mb.img $ sudo mount /dev/mapper/loop0p1./nooter 15. minisd 1 (/dev/sdb1) $ mkdir minisd $ sudo mount -t vfat -o rw,uid=your-uid,gid=your-gid /dev/sdb1./minisd 16. nooter u-boot initrd minisd,nooter $ cp nooter/*./minisd/ $ sudo umount./nooter $ sudo kpartx -d./nooter_sdcard_40mb.img loop deleted : /dev/loop0 $ sudo umount./minisd 17. minisd (/dev/sdb2) Debian $ su root Passwd: # kpartx -a./arm-versatile.img # mount /dev/mapper/loop0p1./debian # mount /dev/sdb2./minisd # cd debian # dump -0 -f-./ (cd../minisd && restore -rvf- ) # cd.. # umount./debian # umount./minisd Nook Color OFF 2. Nook Color minisd minisd 3. Nook Color usb PC USB 4. usb PC dmesg cdc ether usb NIC 17

19 5. Nook Color root PC Nook Color nooter initrd $ sudo /sbin/ifconfig usb0 inet netmask up $ ssh root@ # 6. minisd Debian vncserver # mount -t ext3 /dev/mmcblk0p2 /mnt # mount -t devpts devpts /mnt/dev/pts # mount -t proc proc /mnt/proc # mount -t sysfs sysfs /mnt/sys # chroot /mnt /bin/bash root@bildroot:/# cd root@buildroot:~# vncserver -geometry 800x600 Passwd: < > Retry : < >... vncserver... root@buildroot:~# 7. PC gvncviewer Nook Color Debian $ vncviewer :1 8. lxterminal vncviewer /etc/resolv.conf route add default gw PC NAT Nook Color USB PC aptitude 6.8 OFF 1. Nook Color ssh 2. sync;sync;halt 3. Nook Color ssh 4. Nook Color minisd 5. Nook Color 15 minisd (15 ) Nook Color 6.9 chroot Nook Color Debian Debian ARM CPU Nook Color LCD/ /Audio/Wi-Fi Debian 100 Debian OMAP3 CPU kernel 18

20 87 Debian Debhelper 7.1 dh md5sums dh md5sums DEBIAN/md5sums DEBIAN/md5sums $ ar x debian-package.deb control.tar.xx md5sums md5sums data.tar.xx md5sum $ apt-get download hello-debhelper $ ar x hello-debhelper_2.7-3_i386.deb $ ls control.tar.gz data.tar.gz debian-binary hello-debhelper_2.7-3_i386.deb $ tar xf control.tar.gz $ ls control data.tar.gz hello-debhelper_2.7-3_i386.deb control.tar.gz debian-binary md5sums $ head -n 1 md5sums cc321f0467dc0e7c67f65e2cc1 usr/bin/hello dh md5sums dh md5sums md5sum $ apt-get source hello-debhelper $ cd hello-debhelper-2.7 $ debuild -uc -us ( ) dh\_gencontrol -a dh\_md5sums -a dh\_builddeb -a ( ) $ ls debian/hello-debhelper DEBIAN usr $ head -n 1 debian/hello-debhelper/debian/md5sums cc321f0467dc0e7c67f65e2cc1 usr/bin/hello dh md5sums -x, include-conffiles -Xitem, exclude=item DEBIAN/conffiles md5 md5sum 19

21 7.2 dh strip dh strip strip dh strip strip strip dh strip [1] strip DEB BUILD OPTIONS=nostrip strip dh strip dbg-package /usr/lib/debug debhelper strip CFLAGS -g debian/rules override dh strip dh strip dbg-package=package-dbg debian/control package-dbg package-dbg package depend dh strip -Xitem, exclude=item dbg-package=package -k, keep-debug strip package-dbg usr/lib/debug strip dbg-package [1] Debian Wiki - DebugPackage [2] Debian.org 6 developers-reference/best-pkging-practices.html 20

22 Debian Debian 21

東京エリアDebian勉強会 - 第87回 2012年4月度

東京エリアDebian勉強会 - 第87回 2012年4月度 Debian 87 2012 4 nozzy@debian.or.jp 2012 4 21 Agenda Debian 85 Debian 86 Debian Agenda( ) DWN quiz Debian node Android Debian Debhelper 85 Debian (JR ) KDE / Debhelper(dh dpatch patch,dh autotoolsdev

More information

東京エリアDebian勉強会 - 第85回 2012年2月度

東京エリアDebian勉強会 - 第85回 2012年2月度 Debian 85 2012 2 nozzy@debian.or.jp 2012 2 18 Agenda Debian 84 Debian Debian Trivia Quiz Debian KDE 4 cmake 84 Debian 84 Debian WEB VPS twitter ) gnome desktop KDE EBView (RDP) VNC KRDC KSnapshot EBView

More information

51 Debian

51 Debian 51 Debian 2009 4 18 51 Debian 2009 4 1 Introduction Debian Debian Debian Debian Debian Developer () face-toface Debian Debian Debian Debian Package Debian 2009 1. () 2. OSC Tokyo 3. VAIO P ( )(?) 4. Git

More information

東京エリアDebian勉強会 Debian JP Project - OSC 2017 Tokyo/Fall (第154回出張勉強会)

東京エリアDebian勉強会 Debian JP Project - OSC 2017 Tokyo/Fall (第154回出張勉強会) Debian Debian JP Project OSC 2017 Tokyo/Fall 154 dictoss@live.jp 2017 09 10 Agenda Debian Debian 9 Debian Updates Debian Debian / RHEL RedHat CentOS RedHat Ubuntu Canonical Debian Debian Linux FreeBSD

More information

108 Debian.Deb 銀河系唯一のDebian 専門誌

108 Debian.Deb 銀河系唯一のDebian 専門誌 108 Debian.Deb 銀河系唯一のDebian 専門誌 2014 01 18 1 2 1.1......... 2 1.2 (yy y ja jp)...... 2 1.3 henrich........... 2 1.4 dictoss( )..... 2 1.5............. 2 1.6 koedoyoshida........ 2 2 Debian Trivia Quiz

More information

Raspberry Pi 2 Model B に Debian Jessie / armhf をインストールする - 第125回 2015年3月度

Raspberry Pi 2 Model B に Debian Jessie / armhf をインストールする - 第125回 2015年3月度 Raspberry Pi 2 Model B Debian Jessie / armhf 125 2015 3 2015 3 7 1 Raspberry Pi 2 Model B Raspberry Pi 2 Raspberry Pi 2 Model B Debian Jessie / armhf Raspberry Pi 2 Model B Raspberry Pi Raspberry Pi 2

More information

東京エリアDebian勉強会 - 第111回 2014年3月度

東京エリアDebian勉強会 - 第111回 2014年3月度 Debian 111 2014 3 2014 3 15 Agenda Debian 109 Debian 110 Debian Debian Trivia Quiz Debian iphone5 110 Debian Debian 109 ( ) 4 Debian dnsmasq Debian PC Debian DNS DNS 5 PXE boot 111 Debian 110 Debian

More information

Raspberry Pi3 / arm64 - Debian/Ubuntu ミートアップ in 札幌

Raspberry Pi3 / arm64 - Debian/Ubuntu ミートアップ in 札幌 Raspberry Pi3 / arm64 Debian/Ubuntu in 2016 6 17 : @iwamatsu Debian Project Official Developer Debian : Debian linux kernel, Debian Bluetooth, Debian Science (OpenCV), Erlang, Debian Go : Linux kernel

More information

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi Windows bash on Ubuntu on Windows [Windows Creators Update(1703) ] TAKE 2017-10-06 bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu

More information

3 Ubuntu Linux Ubuntu Linux Debian Linux DistroWatch.com 1 Debian Ubuntu Linux 1 Debian CD(4.1 ) Knoppix Debian CentOS Linux CentOS 1 Ubuntu L

3 Ubuntu Linux Ubuntu Linux Debian Linux DistroWatch.com 1 Debian Ubuntu Linux 1 Debian CD(4.1 ) Knoppix Debian CentOS Linux CentOS 1 Ubuntu L Linux PC #5 29 5 12 1 #1 tdh8025 1 Kadai1 evince kghostview ls -a ( ) 5 19 ( ) 2 Linux Linux distribution CentOS Linux Ubuntu Linux PC Linux Linux (OS) OS ( OS ) Linux 1 Linux Hurd FreeBSD GNU OS OS Linux

More information

111 Debian.Deb 銀河系唯一の Debian 専門誌 iphone

111 Debian.Deb 銀河系唯一の Debian 専門誌 iphone 111 Debian.Deb 銀河系唯一の Debian 専門誌 iphone5 2014 03 15 1 2 1.1 (yy y ja jp)...... 2 1.2 dictoss( ).... 2 1.3 umireon.......... 2 1.4............. 2 1.5............. 2 2 Debian Trivia Quiz 3 3 Debian 4 3.1

More information

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法 Debian 2013 gdb+python nozzy@debian.or.jp 2013 6 29 Level Debian Up Debian Debian debian sid unstable Debian debian sid unstable *-dbg Debian debian sid unstable *-dbg gdb Debian debian sid unstable *-dbg

More information

東京エリア Debian 勉強会 - 資料

東京エリア Debian 勉強会 - 資料 .... Debian dancer@debian.or.jp IRC nick: dancerj 2009 1 17 Agenda / / ustream Debian Debian 2009 2008 12 / / ustream Debian Debconf Debian 2008 2009 Debian JP on IAX 2009 1 9 IAX :asterisk :iaxcomm 1

More information

MathLibre KNOPPIX (next generation) 2012 KNOPPIX/Math MathLibre KNOPPIX , KNOPPIX 6.0, next generation. KNOPPIX/Math KDE,

MathLibre KNOPPIX (next generation) 2012 KNOPPIX/Math MathLibre KNOPPIX , KNOPPIX 6.0, next generation. KNOPPIX/Math KDE, MathLibre KNOPPIX (next generation) 2012 KNOPPIX/Math MathLibre KNOPPIX 20120514, 20120608 KNOPPIX 60, next generation KNOPPIX/Math 2010 KDE, lxde, 1 KNOPPIX/Math DVD Q KNOPPIX/Math A http://wwwmathkobe-uacjp/openxm/math/dojo,

More information

Ubuntu Linux PC Ubuntu Linux (14.04 LTS, Trusty Tahr) 32bit CD 64bit CD 2. 32bit CPU 64bit 32bit PC CPU 32bit 64bit Windows 64bit 64bit. 32bit Core 64

Ubuntu Linux PC Ubuntu Linux (14.04 LTS, Trusty Tahr) 32bit CD 64bit CD 2. 32bit CPU 64bit 32bit PC CPU 32bit 64bit Windows 64bit 64bit. 32bit Core 64 Linux PC #5 26 5 16 1 Linux Linux distribution CentOS Linux Ubuntu Linux PC Linux Linux (OS) OS ( OS ) Linux 1 Linux Hurd FreeBSD GNU OS OS Linux Linux Linux Debian GNU/Linux, Ubuntu Linux, RedHat Linux,

More information

henrich knok koedoyoshida kenhys wbcchsyn z

henrich knok koedoyoshida kenhys wbcchsyn z 121 Debian.Deb 銀河系唯一の Debian 専門誌 Debian Linux Mint 2014 12 20 1 2 1.1 henrich........... 2 1.2............. 2 1.3 knok............ 2 1.4 koedoyoshida....... 2 1.5 kenhys........... 2 1.6 wbcchsyn.........

More information

東京エリアDebian勉強会 - 第91回 2012年9月度/OSC2012 Tokyo/Fall)

東京エリアDebian勉強会 - 第91回 2012年9月度/OSC2012 Tokyo/Fall) Debian 91 2012 9 /OSC2012 Tokyo/Fall) iwamatsu@debian.org 2012 9 8 2012 9 8 1/82 / Nobuhiro Iwamatsu Twitter / @iwamatsu Debian Project Official Developer Linux kernel, Debian/SuperH, Bluetooth subsystem,

More information

1 Debian Debian nabaua dictoss Roger Shimizu koedoyoshida

1 Debian Debian nabaua dictoss Roger Shimizu koedoyoshida 144 Debian.Deb 銀河系唯一の Debian 専門誌 preseed 2016 10 15 1 Debian 2 1.1 143 Debian............ 2 2 3 2.1 nabaua........... 3 2.2 dictoss........... 3 2.3 Roger Shimizu....... 3 2.4 koedoyoshida....... 3 2.5

More information

東京エリアDebian勉強会 - 第86回 2012年3月度

東京エリアDebian勉強会 - 第86回 2012年3月度 Debian 86 2012 3 iwamatsu@debian.org Twitter: @iwamatsu 2012 3 17 Agenda Debian 85 Debian 0 Debian Debian - - Apache2 HTTP Debian / @iwamatsu Debian Project Official Developer Bluetooth, OpenCV, mozc,

More information

東京エリアDebian勉強会   Buffalo Linkstation向け Debian Installer - 第139回 2016年5月度

東京エリアDebian勉強会   Buffalo Linkstation向け Debian Installer - 第139回 2016年5月度 Debian Buffalo Linkstation Debian Installer 139 2016 5 Roger Shimizu 2016 5 21 Agenda 1 2 3 Buffalo Linkstation Debian Installer 4 Linkstation Debian 5 6 Demo 10 ( ) Debian user. 2 Linkstation LS-WXL

More information

KNOPPIX/Math ( ) MathLibre 2012dojo

KNOPPIX/Math ( ) MathLibre 2012dojo GitHub と Debian Live による MathLibre の構築 濱田龍義福岡大学理学部 /JST CREST/OCAMI MSFD2013Spring, 3/19(Tue) KNOPPIX/Math (2003-2011) MathLibre 2012dojo KNOPPIX KNOPPIX 基礎知識 ドイツの Klaus Knopper による Live CD/DVD 産総研が日本語化

More information

53 Debian 2009 6 1 Introduction Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 2009 1. ( ) 2.

53 Debian 2009 6 1 Introduction Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 2009 1. ( ) 2. 53 Debian 2009 6 20 53 Debian 2009 6 1 Introduction Debian Debian Debian Debian Debian Developer ( ) face-toface Debian Debian Debian Debian Package Debian 2009 1. ( ) 2. OSC Tokyo 3. VAIO P ( )(?) 4.

More information

東京エリアDebian勉強会 - 第75回 2011年5月度

東京エリアDebian勉強会 - 第75回 2011年5月度 Debian 75 2011 5 iwamatsu@debian.org IRC nick: iwamatsu 2011 5 21 Agenda Debian 75 Debian 46 Debian @OSC2011 Kobe Apache2 Debian on NiftyCloud Debian/m68k PPC64 Debian backports.debian.org initramfs-tools

More information

E2 Spider 2018/08/03 Intel NUC Core i7 PC 2.5 /M.2 SSD BOXNUC7I7BNH PC DDR4-2133(PC ) 8GBX2 260pin 1.2V CL15 SP016GBSFU213B22 WD SSD M /51

E2 Spider 2018/08/03 Intel NUC Core i7 PC 2.5 /M.2 SSD BOXNUC7I7BNH PC DDR4-2133(PC ) 8GBX2 260pin 1.2V CL15 SP016GBSFU213B22 WD SSD M /51 E2 Spider 2018/08/03 Intel NUC Core i7 PC 2.5 /M.2 SSD BOXNUC7I7BNH PC DDR4-2133(PC4-17000) 8GBX2 260pin 1.2V CL15 SP016GBSFU213B22 WD SSD M.2-2280/512GB/WD Black/PCIe Gen3 NVMe/5 /WDS512G1X0C 1 NUC NUC7i7BNH

More information

Add-onアプリケーション開発 - 環境構築マニュアル -

Add-onアプリケーション開発 - 環境構築マニュアル - - - 1.0 M2M 2018 11 20 i 1 1 1.1............................................... 1 1.2................................................. 1 1.3................................................ 2 2 3 2.1 OFF.......................................

More information

Microsoft Word - マニュアル4.1J

Microsoft Word - マニュアル4.1J Yellow Dog Linux 4.1J 20060605 1. 2. 2.1 2.2 2.3 Mac OS X 2,4 Mac OS 9 2.5 3. Yellow Dog Linux 3.1 Welcome to Yellow Dog Linux 3.2 Language Selection 3.3 3.4 3.5 3.5.1 3.5.2 Disk Druid 3.5.3 3.6 3.7 3.8

More information

Armadillo-9 ソフトウェアマニュアル

Armadillo-9 ソフトウェアマニュアル Software Manual http://www.atmark-techno.com/ http://armadillo.atmark-techno.com/ Armadillo-9 software manual ver.1.0.16 1.... 1 1.1.... 1 1.2.... 1 1.3.... 1 1.4.... 2 1.5.... 2 1.6.... 2 2.... 3 2.1....

More information

174 Debian.Deb 銀河系唯一の Debian 専門誌 /usr Merge

174 Debian.Deb 銀河系唯一の Debian 専門誌 /usr Merge 174 Debian.Deb 銀河系唯一の Debian 専門誌 /usr Merge 2019 5 18 1 Debian 2 1.1 173 Debian............ 2 2 3 2.1 yy y ja jp......... 3 2.2 khibino........... 3 2.3 NOKUBI Takatsugu (knok) 3 2.4 lion (2015fuj).......

More information

東京エリアDebian勉強会 debootstrapを有効活用してみよう

東京エリアDebian勉強会  debootstrapを有効活用してみよう .. Debian debootstrap dictoss@live.jp 2013 04 20 debian debootstrap (SUGIMOTO Norimitsu) Twitter: @dictoss Debian User FreeBSD User debian Debian GNU/kFreeBSD QEMU VirtualBox KVM Xen OpenVZ LXC FreeBSD

More information

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF A.2 Bash macos.bash_profile exp

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF   A.2 Bash macos.bash_profile exp A Erlang/OTP Elixir Phoenix nvm Node.js A.1 Erlang/OTP 21.1 $ kerl update releases $ kerl build 21.1 21.1 $ kerl install 21.1 ~/erlang/21.1 $ source ~/erlang/21.1/activate Erlang/OTP 1 203 A : kerl kerl

More information

CentOSv2_furoku

CentOSv2_furoku at $ at 23:00 $ at 6:00 tomorrow $ at now + 3 days chkconfig # chkconfig --list # chkconfig --list postfix # chkconfig --level 35 postfix on # chkconfig rsync on # chkconfig telnet off 2 crontab $ crontab

More information

debian_manual.dvi

debian_manual.dvi How to set up Linux 01/07/02 Debian GNU/Linux 1 potato 1.1 rescue.bin root.bin driver-1.bin 1 1.2 1. Debian GNU/Linux Debian http://http.us.debian.org/debian/ http://ftp.jp.debian.org Fig. 1 Fig. 1 Debian

More information

Microsoft Word - PSB導入ガイド_ docx

Microsoft Word - PSB導入ガイド_ docx 入 1 / 49 入 日 1.0.0 2013/12/02 用 用 F-Secure 角 自 止 一 2 / 49 ... 4 1.... 4 2.... 4 3. 入... 4 4. 手 Windows... 5 4.1... 5 4.2 Windows... 9 5. 手 Windows Server... 13 6. 手 Linux... 19 6.1... 19 6.2 PSB... 20

More information

11 Debian Debian Debian Project Official Developer

11 Debian Debian Debian Project Official Developer 11 Debian Debian 2005 12 10 Debian Project Official Developer 1 Introduction To Debian 2 1.1.................................................. 2 1.2................................................ 2 2

More information

114 Debian.Deb 銀河系唯一のDebian 専門誌 GPG

114 Debian.Deb 銀河系唯一のDebian 専門誌 GPG 114 Debian.Deb 銀河系唯一のDebian 専門誌 2014 06 14 GPG 1 2 1.1 wbcchsyn......... 2 1.2......... 2 1.3 yyuu............ 2 1.4 zinrai............ 2 1.5 koedoyoshida....... 2 1.6 regonn(kenta Tanoue).. 2 1.7.......

More information

3.2 Linux root vi(vim) vi emacs emacs 4 Linux Kernel Linux Git 4.1 Git Git Linux Linux Linus Fedora root yum install global(debian Ubuntu apt-get inst

3.2 Linux root vi(vim) vi emacs emacs 4 Linux Kernel Linux Git 4.1 Git Git Linux Linux Linus Fedora root yum install global(debian Ubuntu apt-get inst 1 OS Linux OS OS Linux Kernel 900 1000 IPA( :http://www.ipa.go.jp/) 8 12 ( ) 16 ( ) 4 5 22 60 2 3 6 Linux Linux 2 LKML 3 3.1 Linux Fedora 13 Ubuntu Fedora CentOS 3.2 Linux root vi(vim) vi emacs emacs 4

More information

$ sudo apt-get install libavahi-compat-libdnssd-dev $ sudo apt-get autoremove nodejs $ wget http://nodejs.org/dist/latest/node-v7.6.0-linux-armv7l.tar.gz $ tar xzf node-v7.6.0-linux-armv7l.tar.gz $ sudo

More information

Microsoft Word - AFT_3TB_HDD_install_guide doc

Microsoft Word - AFT_3TB_HDD_install_guide doc AFT 及び 3TB HDD への OS インストール 目次 概要 P.1 動作確認構成 P.1 対応要件 P.1 Server 対応一覧 P.2 OS 対応一覧 P.3 OS インストール方法 P.4 AFT P.4 3TB P.8 AFT +3TB P.10 2012.01.26: ぷらっとホーム技術部山﨑作成 2012.02.06: ぷらっとホーム技術部山﨑更新 2012.02.09: ぷらっとホーム技術部山﨑更新

More information

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 2018 3 24 1 Debian 2 1.1 159 Debian............ 2 1.2 OSC 2018 Tokyo/Spring.. 2 2 3 2.1 hiromiso.......... 3 2.2 yy y ja jp......... 3 2.3 ysaito............ 3 2.4 henrich...........

More information

東京エリアDebian勉強会 - 第117回 2014年9月度

東京エリアDebian勉強会 - 第117回 2014年9月度 Debian 117 2014 9 2014 9 27 Agenda Debian 116 Debian Debian Trivia Quiz DebConf14 xmris rogerlocalet.com Roger dictoss( ) ITP wx3.0-doc Debian (yy y ja jp) DDTSS 1 1 http://ddtp.debian.net/ddtss/index.cgi/ja

More information

HARK Designer Documentation 0.5.0 HARK support team 2013 08 13 Contents 1 3 2 5 2.1.......................................... 5 2.2.............................................. 5 2.3 1: HARK Designer.................................

More information

Raspberry Pi ZeroによるIoT入門

Raspberry Pi ZeroによるIoT入門 Raspberry Pi Zero IoT Zero W Raspberry Pi ZeroRaspberry Pi Zero WRaspberry Pi Zero WH RaspbianRaspberry Pi OS 2018-03-13-raspbian-stretch.img 2018 3 URL TM R Web IoT http://www.coronasha.co.jp/np/isbn/9784339009019/

More information

debian_install.dvi

debian_install.dvi 2002 Debian GNU/Linux 3.0 1 potato 1.1 Windows 1. 3 2. rescue.bin root.bin driver-1.bin 1 1.2 1. Debian GNU/Linux Debian http://http.us.debian.org/debian http://ftp.jp.debian.org Fig. 1 Fig. 1 Debian 2.

More information

Server Backup Manager 5.0 Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール

Server Backup Manager 5.0 Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール (DPKG でのインストール ) 3. Server Backup のWeb ベースユーザーインターフェイスをしてする 4. Linux Server

More information

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile 9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile $ cp -f ~/.bash_profile ~/.bash_profile.bak ~/.bash_profile

More information

Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015

Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015 Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015 (@Yuryu) : Web (HPC) ( MMORPG) Docker Web OS nginx HTML nginx OS nginx nginx RHEL RHEL OS Docker 2 Dockerfile $ docker build

More information

東京エリア Debian 勉強会 - Debian Package ハンズオン

東京エリア Debian 勉強会 - Debian Package ハンズオン .... Debian Debian Package iwamatsu@debian.or.jp IRC nick: iwamatsu 2008 03 01 Agenda Agenda Debian Package Debian Package debian/control debian/changelog debian/copyright debian/rules Debian Package Debian

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 5 6 Xen OS VT AMD-V OSWindows

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 1 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 2 5 6 Xen OS VT AMD-V OSWindows

More information

PRIMECLUSTER™ Global Disk Services 説明書 4.3 Linux 版

PRIMECLUSTER™ Global Disk Services 説明書 4.3 Linux 版 PRIMECLUSTER parted(8) sdxvolume - sdxvolume -S sdxvolume umount(8) mount(8) jrm sdxslice -T umount(8) mount(8) sdxdisk M sdxdisk R sdxclass -Rsdxconfig

More information

第173回東京エリアDebian勉強会   grml-debootstrapを用いた USB起動メモリの作成

第173回東京エリアDebian勉強会    grml-debootstrapを用いた  USB起動メモリの作成 173 Debian grml-debootstrap USB NOKUBI Takatsugu ( ) knok@debian.org 2019-04-20 NOKUBI Takatsugu ( ) knok@debian.org / knok@daionet.gr.jp Twitter: @knok Debian developer since 2002 bo USB grml-debootstrap

More information

KNOB Knoppix for Bio Itoshi NIKAIDO

KNOB Knoppix for Bio Itoshi NIKAIDO KNOB Knoppix for Bio Itoshi NIKAIDO Linux Grasp the KNOB! grasp 1, (grip). 2,, (understand). [ 2 ] What s KNOB CD Linux Bioinformatics KNOB Why KNOB? Bioinformatics What

More information

12 Debian Debian Debian Project Official Developer

12 Debian Debian Debian Project Official Developer 12 Debian Debian 2006 1 21 Debian Project Official Developer 1 Introduction To Debian 2 1.1.................................................. 2 1.2................................................ 2 2 Debian

More information

85 Debian Introduction Debian Debian Debian Debian Debian Developer ( ) face-to-face Debian Debian Debian Debian Package Debian 1

85 Debian Introduction Debian Debian Debian Debian Debian Developer ( ) face-to-face Debian Debian Debian Debian Package Debian 1 85 Debian 2012 2 18 85 Debian 2012 2 1 Introduction Debian Debian Debian Debian Debian Developer ( ) face-to-face Debian Debian Debian Debian Package Debian 1 1 Introduction 1 2 3 2.1........... 3 2.2

More information

untitled

untitled CD (CTP/CPZ- SH03)[Debian Sarge, Vine, RedHat Enterprise Linux V4, Fedora Core5 ] How-to CD CTP/CPZ-SH03 CTP/CPZ-SH03 CF GNU/Linux FA (PCI-PM11A3) Debian Sarge, Vine, RedHat Enterprise Linux V4, Fedora

More information

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb " # $ % & ' ( ) * +, -. / 0 1 2 3 4 5 6 7 8 9 : ; < = >? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y " # $ % & ' ( ) * + , -. / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

142 Debian.Deb 銀河系唯一の Debian 専門誌 LXC

142 Debian.Deb 銀河系唯一の Debian 専門誌 LXC 142 Debian.Deb 銀河系唯一の Debian 専門誌 LXC 2016 8 20 1 Debian 2 1.1 141 Debian............ 2 2 3 2.1 mkouhei.......... 3 2.2 dictoss........... 3 2.3............. 3 2.4 kenhys........... 3 2.5 koedoyoshida.......

More information

エラー処理・分割コンパイル・コマンドライン引数

エラー処理・分割コンパイル・コマンドライン引数 L10(2017-12-05 Tue) : Time-stamp: 2017-12-17 Sun 11:59 JST hig. recv/send http://hig3.net ( ) L10 (2017) 1 / 21 IP I swallow.math.ryukoku.ac.jp:13 = 133.83.83.6:13 = : IP ( = ) (well-known ports), :. :,.

More information

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について Ruby PaaS MOGOK 2013/11/19 1 IIJ PaaS MOGOK MOGOK PaaS 2 IIJ PaaS MOGOK PaaS MOGOK MOGOK 3 IIJ PaaS 4 IIJ Internet, Backbone, Mobile IIJ GIO 5 IIJ IaaS IIJ GIO SaaS PaaS 6 PaaS Platform

More information

第133回東京エリアDebian勉強会   Debian GNU/kFreeBSD セットアップガイド 2015年版

第133回東京エリアDebian勉強会    Debian GNU/kFreeBSD セットアップガイド 2015年版 133 Debian Debian GNU/kFreeBSD 2015 Norimitsu Sugimoto ( ) dictoss@live.jp 2015-11-21 Debian Ports Debian GNU/kFreeBSD Debian GNU/kFreeBSD Debian GNU/kFreeBSD Debian Windows Debian GNU/kFreeBSD Norimitsu

More information

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門 .... Debian gnuplot, Octave, R mkouhei@debian.or.jp IRC nick: mkouhei 2009 11 14 OOo OS diff git diff --binary gnuplot GNU Octave GNU R gnuplot LaTeX GNU Octave gnuplot MATLAB 1 GNU R 1 MATLAB (clone)

More information

\backslash j$, 95, $KNOPPIX/MathCD/DVD$,,, $=$ 3 Debian Package KNOPPIX Debian $GNU/Linux[7]$ Linux $=$ KNOPPIX Debian $GNU/Linux$ $-\backslash \backs

\backslash j$, 95, $KNOPPIX/MathCD/DVD$,,, $=$ 3 Debian Package KNOPPIX Debian $GNU/Linux[7]$ Linux $=$ KNOPPIX Debian $GNU/Linux$ $-\backslash \backs 1572 2007 94-108 94 KNOPPIX/Math TATSUYOSHI HAMADA FUKUOKA UNIVERSITY *, $KNOPPR/Math[1]$, UNIX 1 KNOPPIX KNOPPIX[2], Klaus Knopper CD Linux, Klaus Knopper LinuxTAG, Linux,, (AIST) KNOPPIX 2002 9 [3] KNOPPIX,,,

More information

プレゼンテーション

プレゼンテーション OpenSolaris VPS Phase2Server Japan OpenSolaris Users Group Leader DimensionPlus DimensionPlus DimensionPlus DimensionPlus DimensionPlus - 2 - JUSTPLAYER WHEN YOU WANT IS WHEN YOU PLAY - 3 - WEB( ) WEB

More information

Ansible

Ansible Ansible 2014 8 2014 8 1 1 3 1.1 Ansible..................................... 4 1.2 Ansible................................... 7 1.3 Chef Puppet... 7 1.4 Ansible Better Shell Script.............................

More information

# mv httpd tar.gz /usr/local/src /usr/local/src # tar zxvf httpd tar.gz make #./configure # make # make install Apache # /usr/local/apac

# mv httpd tar.gz /usr/local/src /usr/local/src # tar zxvf httpd tar.gz make #./configure # make # make install Apache # /usr/local/apac LAMP 2007 10 29 1 LAMP LAMP Web L:Linux( ) A:Apache(Web ) M:MySQL( ) P:PHP(Hypertext Preprocessor) OS Windows WAMP Mac OS MAMP Vine Linux OS root yum Red Hat Linux 2 Apache Apache http://httpd.apache.org/download.cgi

More information

Linux XScreenSaver T020074

Linux XScreenSaver T020074 Linux XScreenSaver T020074 Linux XScreenSaver XScreenSaver Linux Linux Linux X Window System X Window System Xlib XScreenSaver X Window System Xlib XScreenSaver Xlib vroot.h Xlib XScreenSaver Linux Linux

More information

% finger apt-get kernel-package, libc6-dev, gcc, make, bin86, bzip2, libdb3-dev, libncurses-dev, fakeroot

% finger apt-get kernel-package, libc6-dev, gcc, make, bin86, bzip2, libdb3-dev, libncurses-dev, fakeroot apt-get % uname -r http://www.kernel.org/ % finger @kernel.org finger apt-get kernel-package, libc6-dev, gcc, make, bin86, bzip2, libdb3-dev, libncurses-dev, fakeroot apt-get apt-get # apt-get install

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

150 Debian.Deb 銀河系唯一の Debian 専門誌

150 Debian.Deb 銀河系唯一の Debian 専門誌 150 Debian.Deb 銀河系唯一の Debian 専門誌 2017 4 22 1 Debian 2 1.1 148 Debian............ 2 1.2 OSC 2017 Tokyo/Spring 149 Debian........ 2 2 3 2.1 Charles Plessy....... 3 2.2 ftake............ 3 2.3 NOKUBI Takatsugu...

More information

,…I…y…„†[…e…B…fi…O…V…X…e…•‡Ì…J†[…l…‰fi®“ì‡Ì›Â”‰›»pdfauthor

,…I…y…„†[…e…B…fi…O…V…X…e…•‡Ì…J†[…l…‰fi®“ì‡Ì›Â”‰›»pdfauthor OS 1 1 4 1.1........................................... 4 1.2........................................... 4 2 5 2.1..................................... 5 2.2 OS................................... 5 3 7

More information

[user@linux tmp]$ tar xzvf utvpn-src-unix-v100-7092-beta-2010.06.25.tar.gz [user@linux tmp]$ cd utvpn-unix-v100-7092-beta [user@linux utvpn-unix-v100-7092-beta]$ ls License-ja.txt configure makefiles src

More information

Debian GNU/kFreeBSDで暮らせる環境を構築してみる - 第38回関西Debian勉強会

Debian GNU/kFreeBSDで暮らせる環境を構築してみる - 第38回関西Debian勉強会 .. Debian GNU/kFreeBSD 38 Debian dictoss@live.jp 2010 8 22 Debian GNU/kFreeBSD Debian GNU/kFreeBSD xorg (dictoss@live.jp) Twitter : dictoss Debian GNU/Linux 2 ( testing sarge) Debian GNU/Linux FreeBSD

More information

ゲスト OS インストール ガイド

ゲスト OS インストール ガイド 2 VMware, Inc. VMware, Inc. 3 4 VMware, Inc. VMware, Inc. 5 6 VMware, Inc. VMware, Inc. 7 8 VMware, Inc. VMware, Inc. 9 10 VMware, Inc. VMware, Inc. 11 12 VMware, Inc. VMware, Inc. 13 14 VMware, Inc. VMware,

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション "# "# $%&' "#$% $# & $# $% % ' ()(*"#$% +,(- ()(*"#$%.' ()(* $/.0##'' %0$&0% 1*2#/0/%'&0343$56 789#/0/'%&04../ "3"0##"$ "0%0$" "7 1*2#.30///04%.$ 789#.30///0#$'4 http://www.ibie2016.com/exhibitorlist/

More information

DCL intro Manual for Ubuntu11.10

DCL intro Manual for Ubuntu11.10 ubnutu 11.10 2011/Nov/23 i 1 1 2 ubuntu 2 3 3 3.1........................................... 3 3.2 gedit........................................... 3 3.3........................................ 4 4 sun

More information

untitled

untitled HP OpenSource MySQL Server 5.0 Red Hat Enterprise Linux 4 ver 1.5 MySQL Red Hat Enterprise Linux 4 Super Smack Super Smac MySQL Super Smack RHEL4 1 2 MySQL SuperSmack SuperSmack 3 SuperSmack MySQL 4 MySQL

More information

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License

LAN Copyright c Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License LAN 2014 3 19 Copyright c 1993 2014 Daikoku Manabu This tutorial is licensed under a Creative Commons Attribution 2.1 Japan License. 1 2 1.1................................... 2 1.2.........................

More information

WIDE 1

WIDE 1 WIDE 1 2 Web Web Web Web Web Web Web Web Web Web? Web Web Things to cover Web Web Web Web Caching Proxy 3 Things NOT covered / How to execute Perl Scripts as CGI binaries on Windows NT How to avoid access

More information

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( ) L09 IP (2017) 1 / 28

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( )   L09 IP (2017) 1 / 28 L09(2017-11-21 Tue) : Time-stamp: 2017-11-21 Tue 14:52 JST hig TCP/IP. IP,,,. http://hig3.net L09 (2017) 1 / 28 9, IP, - L09 (2017) 2 / 28 C (ex. ) 1 TCP/IP 2 3 ( ) ( L09 (2017) 3 / 28 50+5, ( )50+5. (

More information

目次 1. 動作環境チェック 動作必要環境 Java のインストール Java のインストール Firebird のインストール Firebird のインストール Adobe Reader のインストール

目次 1. 動作環境チェック 動作必要環境 Java のインストール Java のインストール Firebird のインストール Firebird のインストール Adobe Reader のインストール ORCA PROJECT Linux 対応版インストールマニュアル (Version 2.0.0 対応 ) Ubuntu 10.04 Lucid 用 2.0.0 版 2013 年 3 月 8 日 目次 1. 動作環境チェック...3 1.1. 動作必要環境...3 2. Java のインストール...3 2.1. Java のインストール...3 3. Firebird のインストール...4 3.1.

More information

第 72 回 関西 Debian 勉強会 - 発表資料

第 72 回 関西 Debian 勉強会 - 発表資料 72 Debian Debian 2013 5 26 ANNAI Agenda 1 Debian 2 3 Debian Ubuntu 4 Debian 5 Debian 71 Debian : 4 28 ( ) : AWS Debian 100 Debian : 5 11 ( ) : Debian Project 5 4 Debian 7.0 Wheezy 6 15 Wheezy Jessie 1

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

一般技術用紙…

一般技術用紙… 版日付記述 発行作成確認承認 版日付記述 発行作成確認承認 版日付 208//28 記述新規発行 発行プロフェッショナルサービス作成確認承認 /5 RedHawk7./7.5 で grub2 がクラッシュした場合に grub2-install を実行しても 復旧しな い原因と対策を報告します 原因は http://download.rhn.redhat.com/errata/rhba-208-3264.html

More information

GNU/Linux on SuperH g,,,,, GNU/Linux on SuperH [1] SuperH (SH-3 SH-4) GNU/Linux g linux-kernel 1998 Linux (SH-3) g GD

GNU/Linux on SuperH g,,,,, GNU/Linux on SuperH [1] SuperH (SH-3 SH-4) GNU/Linux g linux-kernel 1998 Linux (SH-3) g GD GNU/Linux on SuperH g,,,,, 2001 9 28 1 GNU/Linux on SuperH [1] SuperH (SH-3 SH-4) GNU/Linux 1999 8 g 1 1998 linux-kernel 1998 Linux (SH-3) 1999 7 g GDB CqREEK SH-3 1999 8 g Linux (SH-3) 1999 8 Linux (SH-4)

More information

バージョン管理ツールを使い Debian パッケージを管理する - Git 編

バージョン管理ツールを使い Debian パッケージを管理する - Git 編 Debian Git iwamatu@debian.or.jp IRC nick: iwamatsu 2008 4 19 VCS Debian VCS 2008 4 Debian VCS git-buildpackage git-buildpackage git-dch Git Debian Changelog git-import-dsc Debian Package Git git-import-orig

More information

Microsoft Word - ChoreonoidStartUpGuide.docx

Microsoft Word - ChoreonoidStartUpGuide.docx Choreonoid 1 ... 4... 4... 4... 4... 4... 5... 5 Choreonoid... 6 Choreonoid... 6 Choreonoid... 6 Choreonid... 8 Choreonoid... 9 Choreonoid Windows... 9...9...13 Choreonoid (Linux )... 21 Ubuntu Linux...21

More information

Red Hat Enterprise Linux ES (v. 3)

Red Hat Enterprise Linux ES (v. 3) 2005-02-01 Red Hat Enterprise Linux ES (v. 3) PRIMERGY Linux Linux PRIMERGY Linux (SupportDesk Product ) All Rights Reserved, Copyright (C) 2004 1 1. 1.1 Linux ) SCSI ID=1, 2, 3 /dev/sda, /dev/sdb, /dev/sdc

More information

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP 6-1 HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP ( ) ( ) (GET, POST ) (Host ) Tomcat Servlet Examples / Request Headers ( ) (200, 404 ) (Content-Type ) 6-3

More information

IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2

IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2 IP 2010 10 1 1 IP (IP ) 2 IP IP 2.1 IP (IP ) 1 IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2 4 1,2 4.1 (Protocol) IP:Internet Protocol) 4.2 internet The Internet (internet)

More information

④辻修平_37-48.smd

④辻修平_37-48.smd $ sudo apt-get update $ sudo apt-get upgrade $ sudo rpi-update(banana Pi ) $ sudo apt-get gfortran mpich-3.2.tar.gz 254 dns=8.8.8.8; dns-search= methods= (/etc/hostname) bananapi00 $ configure --prefix=/usr/local/mpich-3.2

More information

27 A) B) B) B) A) B) IPv6 IPv6 IPv4 IPv6 1 1 (9 2 ) (9 3 ) (9 4 ) (1) (2) IPv6 (1) RaspberryPi (1) OS (2) (2) RaspberryPi (3) wireshar

27 A) B) B) B) A) B) IPv6 IPv6 IPv4 IPv6 1 1 (9 2 ) (9 3 ) (9 4 ) (1) (2) IPv6 (1) RaspberryPi (1) OS (2) (2) RaspberryPi (3) wireshar 27 A) B) B) B) A) B) 27 27 9 2 9 4 9 IPv6 IPv6 IPv4 IPv6 1 1 (9 2 ) (9 3 ) (9 4 ) (1) (2) IPv6 (1) RaspberryPi (1) OS (2) (2) RaspberryPi (3) wireshark (3) RaspberryPi (4) Linux IPv6 (4) RaspberryPi IPv6

More information

slice00_install.dvi

slice00_install.dvi Slice Installation manual SPring-8 1 Slice 1 1.1 Windows... 1 1.1.1 Cygwin... 1 1.2 MacOSX... 10 1.2.1 Xcode... 10 2 Slice 14 2.1 Slice... 14 1 1 Slice Slice Winsows UNIX (Liunx, FreeBSD, MacOSX ) Slice

More information

ÆþÌçGTK+

ÆþÌçGTK+ 1 1 GTK+ 1.1 GTK+ GTK+ *1 GUI Graphical User Interface GIMP * 2 1.1 GIMP GNOME *3 GTK+ + GTK+ 2 Pango ATK cairo 2 GTK+ GLib... 1.1 GIMP *1 GTK+ The GIMP Toolkit : http://www.gtk.org/ *2 GIMP The GNU Image

More information

BMC Configuration ユーザーズガイド

BMC Configuration ユーザーズガイド BMC Configuration 1 2 3 4 5 Rev.1.01 NEC Corporation 2011 1 BMC Configuration... 1... 2... 3... 4... 5 1... 6 1.1 BMC Configuration... 6 2... 7 2.1... 7 2.2... 8 3... 9 3.1 BMC Configuration (Windows)...

More information

SFS UML-KNOPPIX 1), 1), ), 3) 1),

SFS UML-KNOPPIX   1), 1), ), 3)   1), SFS UML-KNOPPIX http://unit.aist.go.jp/it/knoppix 1), 1), ), 3) k.suzaki@aist.go.jp, k-iijima@aist.go.jp, tanh@alpha.co.jp, kazugoto@oita-ri.go.jp 1), 2), 3) KNOPPIX (cloop) Self-certifying File System

More information

kiso2-01.key

kiso2-01.key 計算機基礎実習 II 2018 シラバス 到達目標 Ubuntu Linux のデスクトップ GUI CUI すべてのデータを ファイル として管理 ログアウト シャットダウンなどの終了 その ファイル を操作するユーザ インターフェイス 操作はこのメニューから ランチャー よく使うアプリケーションを登録 起動する 起動中のアプリケーションもここに表示される Graphical User Interface

More information

WiFiの現状

WiFiの現状 V2.0 2018/10/29 はじめての AI プログラム学習キット 2 グーグル開発の Tensorflow Python の基礎をマスター設定編 ( 抜粋版 ) スペクトラム テクノロジー株式会社 https://spectrum-tech.co.jp sales@spectrum-tech.co.jp 1 目次 学習キット接続構成 学習キット設定マニュアル ページ 1. Raspberry

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information