2012/6/8 (c) Hiroki Sato 2 / 70

Size: px
Start display at page:

Download "2012/6/8 (c) Hiroki Sato 2 / 70"

Transcription

1 FreeBSD Jail / FreeBSD Project 2012/6/8 2012/6/8 (c) Hiroki Sato 1 / 70

2 2012/6/8 (c) Hiroki Sato 2 / 70

3 RACCT / RCTL 2012/6/8 (c) Hiroki Sato 3 / 70

4 UNIX OS 2012/6/8 (c) Hiroki Sato 4 / 70

5 UNIX OS 2012/6/8 (c) Hiroki Sato 5 / 70

6 UNIX OS /bin/sh (grep) 2012/6/8 (c) Hiroki Sato 6 / 70

7 UNIX OS 2012/6/8 (c) Hiroki Sato 7 / 70

8 UNIX OS 2012/6/8 (c) Hiroki Sato 8 / 70

9 UNIX OS 2012/6/8 (c) Hiroki Sato 9 / 70

10 UNIX OS 2012/6/8 (c) Hiroki Sato 10 / 70

11 UNIX OS 2012/6/8 (c) Hiroki Sato 11 / 70

12 UNIX OS 2012/6/8 (c) Hiroki Sato 12 / 70

13 UNIX OS 2012/6/8 (c) Hiroki Sato 13 / 70

14 UNIX OS 2012/6/8 (c) Hiroki Sato 14 / 70

15 UNIX OS 2012/6/8 (c) Hiroki Sato 15 / 70

16 UNIX OS 2012/6/8 (c) Hiroki Sato 16 / 70

17 UNIX OS 2012/6/8 (c) Hiroki Sato 17 / 70

18 UNIX OS 2012/6/8 (c) Hiroki Sato 18 / 70

19 UNIX OS 2012/6/8 (c) Hiroki Sato 19 / 70

20 UNIX OS 2012/6/8 (c) Hiroki Sato 20 / 70

21 /6/8 (c) Hiroki Sato 21 / 70

22 Subject Action Object 2012/6/8 (c) Hiroki Sato 22 / 70

23 Subject Action Object 2012/6/8 (c) Hiroki Sato 23 / 70

24 (ACL) Subject Action Object 2012/6/8 (c) Hiroki Sato 24 / 70

25 (ACL) Subject Action Object : {S,A,O} = or 2012/6/8 (c) Hiroki Sato 25 / 70

26 (ACL) Subject Action Object : {S,A,O} = or 2012/6/8 (c) Hiroki Sato 26 / 70

27 (ACL) Subject Action Object {S, O} UID ACL 2012/6/8 (c) Hiroki Sato 27 / 70

28 2012/6/8 (c) Hiroki Sato 28 / 70

29 2012/6/8 (c) Hiroki Sato 29 / 70

30 setrlimit(2) 2012/6/8 (c) Hiroki Sato 30 / 70

31 setrlimit # cat /etc/login.conf default:\ :passwd_format=md5:\ :copyright=/etc/copyright:\ :welcome=/etc/motd:\ :setenv=mail=/var/mail/$,blocksize=k,ftp_passive_mode=yes:\ :path=/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin ~/bin:\ :nologin=/var/run/nologin:\ :cputime=unlimited:\ :datasize=unlimited:\ :stacksize=unlimited:\ :memorylocked=unlimited:\ :memoryuse=unlimited:\ :filesize=unlimited:\ :coredumpsize=unlimited:\ :openfiles=unlimited:\ :maxproc=unlimited:\ :sbsize=unlimited:\ :vmemoryuse=unlimited:\ :swapuse=unlimited:\ :pseudoterminals=unlimited:\ :priority=0:\ :ignoretime@:\ :umask=022: 2012/6/8 (c) Hiroki Sato 31 / 70

32 setrlimit # cat /etc/login.conf default:\ setrlimit :passwd_format=md5:\ PID :copyright=/etc/copyright:\ :welcome=/etc/motd:\ UID :setenv=mail=/var/mail/$,blocksize=k,ftp_passive_mode=yes:\ :path=/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin ~/bin:\ :nologin=/var/run/nologin:\ :cputime=unlimited:\ :datasize=unlimited:\ :stacksize=unlimited:\ :memorylocked=unlimited:\ :memoryuse=unlimited:\ :filesize=unlimited:\ :coredumpsize=unlimited:\ :openfiles=unlimited:\ :maxproc=unlimited:\ :sbsize=unlimited:\ setrlimit(2) :vmemoryuse=unlimited:\ :swapuse=unlimited:\ :pseudoterminals=unlimited:\ :priority=0:\ :ignoretime@:\ :umask=022: 2012/6/8 (c) Hiroki Sato 32 / 70

33 =limits(1) # /usr/bin/limits Resource limits (current): cputime infinity secs filesize infinity kb datasize kb stacksize kb coredumpsize-cur 0 kb memoryuse infinity kb memorylocked infinity kb maxprocesses 5547 openfiles sbsize infinity bytes vmemoryuse infinity kb pseudo-terminals infinity swapuse infinity kb # limits -u Resource limits (current): maxprocesses /6/8 (c) Hiroki Sato 33 / 70

34 limit/ulimit # limit cputime unlimited filesize unlimited datasize kbytes stacksize kbytes coredumpsize 0 kbytes memoryuse unlimited vmemoryuse unlimited descriptors memorylocked unlimited maxproc 5547 sbsize unlimited swapsize unlimited 2012/6/8 (c) Hiroki Sato 34 / 70

35 2012/6/8 (c) Hiroki Sato 35 / 70

36 2 root /6/8 (c) Hiroki Sato 36 / 70

37 2 root 2012/6/8 (c) Hiroki Sato 37 / 70

38 1 2 2? root 2012/6/8 (c) Hiroki Sato 38 / 70

39 /etc/passwd 2012/6/8 (c) Hiroki Sato 39 / 70

40 UNIX = 2012/6/8 (c) Hiroki Sato 40 / 70

41 UNIX = chroot 2012/6/8 (c) Hiroki Sato 41 / 70

42 # mkdir -p /a/jail /a/jail/dev /a/jail/tmp # cp -Rp /etc /lib /bin /sbin /usr /var /a/jail # cd / # mount -t devfs devfs /a/jail/dev # chroot /a/jail /bin/sh make installworld /etc # mkdir -p /a/jail # cd /usr/src && make DESTDIR=/a/jail installworld 2012/6/8 (c) Hiroki Sato 42 / 70

43 chroot 2012/6/8 (c) Hiroki Sato 43 / 70

44 kill 2012/6/8 (c) Hiroki Sato 44 / 70

45 FreeBSD chroot FreeBSD Jail chroot + α sysctl MIB proc list PID PID + Jail ID UID Jail 2012/6/8 (c) Hiroki Sato 45 / 70

46 FreeBSD Jail # mkdir -p /a/jail /a/jail/dev /a/jail/tmp # cp -Rp /etc /lib /bin /sbin /usr /var /a/jail # cd / # mount -t devfs devfs /a/jail/dev # jail -c name=j1 host.hostname=j1.example.com path=/a/jail command=/bin/sh 2012/6/8 (c) Hiroki Sato 46 / 70

47 FreeBSD Jail # mkdir -p /a/jail /a/jail/dev /a/jail/tmp # cp -Rp /etc /lib /bin /sbin /usr /var /a/jail # cd / # mount -t devfs devfs /a/jail/dev # jail -c name=j1 host.hostname=j1.example.com path=/a/jail command=/bin/sh # ps auwwx USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND SJ 6:08AM 0:00.01 /bin/sh R+J 6:11AM 0:00.00 ps auwwx # 2012/6/8 (c) Hiroki Sato 47 / 70

48 FreeBSD Jail # mkdir -p /a/jail /a/jail/dev /a/jail/tmp # cp -Rp /etc /lib /bin /sbin /usr /var /a/jail # cd / # mount -t devfs devfs /a/jail/dev # chroot /a/jail/bin/sh # ps auwwx USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND ?? RL 7:59AM 2611:43.88 [idle] ?? DLs 7:59AM 0:00.06 [kernel] : : : : : : 2012/6/8 (c) Hiroki Sato 48 / 70

49 FreeBSD Jail # mkdir -p /a/jail /a/jail/dev /a/jail/tmp # cp -Rp /etc /lib /bin /sbin /usr /var /a/jail # cd / # mount -t devfs devfs /a/jail/dev # jail -c name=j1 host.hostname=j1.example.com path=/a/jail command=/bin/sh # ps auwwx USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND SJ 6:08AM 0:00.01 /bin/sh R+J 6:11AM 0:00.00 ps auwwx 2012/6/8 (c) Hiroki Sato 49 / 70

50 FreeBSD Jail 2012/6/8 (c) Hiroki Sato 50 / 70

51 FreeBSD Jail jail_enable="yes" jail_list="j1" jail_j1_rootdir="/a/basejail" jail_j1_hostname="j1.example.com jail_j1_interface="" jail_j1_ip=" " jail_j1="/bin/sh /etc/rc" # /etc/rc.d/jail start FreeBSD Jail 2012/6/8 (c) Hiroki Sato 51 / 70

52 FreeBSD Jail struct jail { u_int32_t version; char *path; char *hostname; char *jailname; unsigned int ip4s; unsigned int ip6s; struct in_addr *ip4; struct in6_addr *ip6; }; 2012/6/8 (c) Hiroki Sato 52 / 70

53 FreeBSD Jail % df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a % / devfs % /dev /dev/da0s1d % /tmp /dev/da0s1f % /usr /dev/da0s1e % /var /dev/da0s1g % /a devfs % /a/altroot/a/centos/4.8/dev linprocfs % /a/altroot/a/centos/4.8/proc :/home % /a/altroot/a/centos/4.8/home 2012/6/8 (c) Hiroki Sato 53 / 70

54 FreeBSD Jail % uname -a Linux cadmaster2.vlsi.ee.noda.tus.ac.jp FreeBSD 8.2-STABLE #4: Thu Dec 29 09:05:09 JST 2011 i686 i686 i386 GNU/Linux 2012/6/8 (c) Hiroki Sato 54 / 70

55 FreeBSD Jail 2012/6/8 (c) Hiroki Sato 55 / 70

56 FreeBSD Jail 2012/6/8 (c) Hiroki Sato 56 / 70

57 2012/6/8 (c) Hiroki Sato 57 / 70

58 2012/6/8 (c) Hiroki Sato 58 / 70

59 RACCT / RCTL 2012/6/8 (c) Hiroki Sato 59 / 70

60 RACCT / RCTL 2012/6/8 (c) Hiroki Sato 60 / 70

61 RACCT / RCTL # rctl -hu user:hrs cputime=4214 datasize=21m stacksize=0 coredumpsize=0 memoryuse=33m memorylocked=0 maxproc=12 openfiles=0 vmemoryuse=446m pseudoterminals=0 swapuse=9620k nthr=12 msgqqueued=0 msgqsize=0 nmsgq=0 nsem=0 nsemop=0 nshm=0 shmsize=0 wallclock=899k -u 2012/6/8 (c) Hiroki Sato 61 / 70

62 RACCT / RCTL # rctl -hu user:hrs cputime=4214 datasize=21m stacksize=0 coredumpsize=0 memoryuse=33m memorylocked=0 maxproc=12 openfiles=0 vmemoryuse=446m pseudoterminals=0 swapuse=9620k nthr=12 msgqqueued=0 msgqsize=0 nmsgq=0 nsem=0 nsemop=0 nshm=0 shmsize=0 wallclock=899k -u 2012/6/8 (c) Hiroki Sato 62 / 70

63 RACCT / RCTL # rctl -hu user:hrs cputime=4214 datasize=21m stacksize=0 coredumpsize=0 memoryuse=33m memorylocked=0 maxproc=12 openfiles=0 vmemoryuse=446m pseudoterminals=0 swapuse=9620k nthr=12 msgqqueued=0 msgqsize=0 nmsgq=0 nsem=0 nsemop=0 nshm=0 shmsize=0 wallclock=899k -u 2012/6/8 (c) Hiroki Sato 63 / 70

64 RACCT / RCTL # rctl -hu user:hrs cputime=4214 datasize=21m stacksize=0 coredumpsize=0 memoryuse=33m memorylocked=0 maxproc=12 openfiles=0 vmemoryuse=446m pseudoterminals=0 swapuse=9620k nthr=12 msgqqueued=0 msgqsize=0 nmsgq=0 nsem=0 nsemop=0 nshm=0 shmsize=0 wallclock=899k -u 2012/6/8 (c) Hiroki Sato 64 / 70

65 RACCT / RCTL # rctl -a user:hrs:maxproc:deny=10 # rctl -a jail:j1:maxproc:log=10/user -a -r 2012/6/8 (c) Hiroki Sato 65 / 70

66 RACCT / RCTL # rctl -a jail:j1:maxproc:devctl=5 # /etc/devd.conf notify 0 { match "system" match "rule" action }; "RCTL"; "jail:j1:maxproc:.*"; "/etc/maxproc.sh restart"; action = devctl devd(8) devd.conf action 2012/6/8 (c) Hiroki Sato 66 / 70

67 RACCT / RCTL # rctl -a user:70:swap:devctl=1g # /etc/devd.conf notify 0 { match "system" match "rule" action }; "RCTL"; "user:70:swap:.*"; "/usr/local/etc/rc.d/postgresql restart"; UID swap 1GB 2012/6/8 (c) Hiroki Sato 67 / 70

68 RACCT / RCTL # /etc/rctl.conf user:70:swap:devctl=1g jail:j1:maxproc:devctl=5 # /etc/rc.conf rctl_enable= YES 2012/6/8 (c) Hiroki Sato 68 / 70

69 2012/6/8 (c) Hiroki Sato 69 / 70

70 2012/6/8 (c) Hiroki Sato 70 / 70

sato-FBSDW key

sato-FBSDW key 4 FreeBSD (18:30 / FreeBSD Project 2015/1/30 2015/01/30 (c) Hiroki Sato 1 / 45 2015/01/30 (c) Hiroki Sato 2 / 45 2015/01/30 (c) Hiroki Sato 3 / 45 2015/01/30 (c) Hiroki Sato 4 / 45 2015/01/30

More information

ネットワークリテラシー

ネットワークリテラシー 実習項目 3 オペレーティングシステムの管理 ~ セキュリティアップデートプロセス サービスの管理 ~ 情報学群実験第 3C ライセンス認証 Windows のライセンス認証 コントロールパネル システムとセキュリティ システム Windows ライセンス認証 プロダクトキーの変更 YV876-462BM-4W3RQ- 22RJH-FPKT6 1 2 ソフトウェア 設計上のミス 丌具合 (bug)

More information

Model BRevision 2.0 OS Raspbian wheezy NOOBS v1.3.2 HDMIHDMI USB USBUSBUSB LAN 1AUSBmicro USB Web URL Web

Model BRevision 2.0 OS Raspbian wheezy NOOBS v1.3.2 HDMIHDMI USB USBUSBUSB LAN 1AUSBmicro USB Web URL   Web Model BRevision 2.0 OS Raspbian wheezy 2013-09-25 NOOBS v1.3.2 HDMIHDMI USB USBUSBUSB LAN 1AUSBmicro USB Web URL http://v7.com/raspi2/ Web http://www.rutles.net/ FAX 35 35!? USBHDMILAN SD RS Components120126

More information

新しいDNSサーバ、 NSDの紹介

新しいDNSサーバ、 NSDの紹介 DNS NSD 2004 8 30 124 jus kohi@iri.co.jp NSD NLnet Labs RIPE/NCC DNS 2002 4 1.0.0-2003 6 16 1.0.3 2.1.2(2004 7 30 ) h.root-servers.net k.root-servers.net NSD 2004 8 30 Copyright(c) 2004 Koh-ich Ito 2 2004

More information

OpenStack環境で、 FreeBSD Jail + VIMAGE を使った 疑似インターネット実験環境の構築

OpenStack環境で、 FreeBSD Jail + VIMAGE を使った 疑似インターネット実験環境の構築 OpenStack 環境で FreeBSD Jail + VIMAGE を使った 疑似インターネット実験環境の構築 株式会社インターネットイニシアティブ 山本茂 shigeru@iij.ad.jp 1 自己紹介 FreeBSD は 2.1.5 から BSD 自体は大学で 4.3BSD にふれたのが最初 基本的に current しか使っていない もちろん業務用 PC も current よって release

More information

PXEブートによるFreeBSDの全自動インストールサーバー構築手順

PXEブートによるFreeBSDの全自動インストールサーバー構築手順 日本 HP OpenSource/Linux 技術文書 PXE ブートによる FreeBSD の 全自動インストールサーバー構築手順 日本ヒューレット パッカード株式会社 2011 年 8 月 10 日 目次 [ 本ドキュメントについて ] 4 FreeBSD サーバーの PXE ブートによる自動インストールについて 5 SSH サービスの設定. 6 DHCP サーバーの設定 6 TFTP サーバーの設定

More information

勉強会基本情報

勉強会基本情報 FreeBSD 勉強会 第 1 回システム / カーネル構築の高速化 Tips FreeBSD 勉強会実行委員後藤大地 勉強会基本情報 本日のスピーカプロフィール 後藤大地 (GOTO Daichi) 1980- ( 日本 ) o LinkedIn http://www.linkedin.com/in/daichigoto o Twitter http://twitter.com/daichigoto

More information

etrust Access Control etrust Access Control UNIX(Linux, Windows) 2

etrust Access Control   etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control 3 ID 10 ID SU ID root 4 OS OS 2 aaa 3 5 TCP/IP outgoing incoming DMZ 6 OS setuid/setgid) OS

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

[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

スライド 1

スライド 1 Red Hat Enterprise Linux Atomic Host のご紹介 レッドハット株式会社 v1.1 2015-02-09 RHEL Atomic Host のご紹介 自己紹介 中井悦司 ( なかいえつじ ) Twitter @enakai00 日々の仕事 Senior Solution Architect and Cloud Evangelist at Red Hat K.K. 企業システムでオープンソースの活用を希望される

More information

Microsoft PowerPoint - InfPro_I6.pptx

Microsoft PowerPoint - InfPro_I6.pptx 今日の学習内容 ファイルとディレクトリ ( 続 )(pp.34-36) 色々なUNIXのコマンド (pp.203-209) 今日の基礎教養セミナ講演会 Yahooの坂本さん 3コマ (13:10~) A204 ディレクトリ ( 復習 ) UNIXファイルシステムにはファイルとディレクトリがあり ツリー状の階層型構造をしている ツリー構造の頂点 ( ツリー構造の根の部分 ) 一番上の唯一のディレクトリをルートディレクトリと呼ぶ

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

Microsoft Word - nvsi_090196_r1_vaultdr_offline_rhel_dualpath.doc

Microsoft Word - nvsi_090196_r1_vaultdr_offline_rhel_dualpath.doc Article ID: NVSI-090196JP_R1 Created: 2009/08/17 Revised: 2010/07/9 Multipath 構成の RHEL5.3 での VaultDR Offline 追加復旧手順 1. 概要 Multipath 構成の Red Hat Enterprise Linux 5.3 は OS 内部に LUN 固有の ID を含んでいる場合があります その場合

More information

01 01 01 01 01 Last login: Tue Jan 21 21:54:32 on ttys000 macbook:~ hisako$ 01 02 01 02 01 $ pwd /Users/hisako $ ls Applications Desktop Documents Downloads Dropbox Google Drive Library 03 01 03 Movies

More information

ZFS on Momonga7

ZFS on Momonga7 やってみた Native ZFS on Momonga Linux 2010-09-11 ver0.5 Momonga Project Takaaki Tabuchi 1 概要 ZFS とは Native ZFS on Linux Momonga Linux 7 での ZFS 環境の構築方法 2 ZFS とは Solaris で作成されたファイルシステム 3 ZFS の利点 128 bit FileSystem

More information

n PSMT(Perfectly Secure Message Transmission) PSMT

n PSMT(Perfectly Secure Message Transmission) PSMT 23 n jail 200802991 1 1 5 1.1.................................... 5 2 n 7 2.1 PSMT(Perfectly Secure Message Transmission)............ 8 2.1.1 PSMT................. 8 2.1.2 PSMT...........................

More information

はじめに 本書は Express5800/ft サーバに Red Hat Enterprise Linux 6 Server 及び ft Server Control Software がインストールされており OS がインストールされている内蔵ディス クに空き容量がある場合に 追加でボリュームを作

はじめに 本書は Express5800/ft サーバに Red Hat Enterprise Linux 6 Server 及び ft Server Control Software がインストールされており OS がインストールされている内蔵ディス クに空き容量がある場合に 追加でボリュームを作 Red Hat Enterprise Linux 6 Server 未使用領域のボリューム作成手順書 NEC Express サーバ Express5800/ft サーバシリーズ 2013 年 03 月第 2 版 はじめに 本書は Express5800/ft サーバに Red Hat Enterprise Linux 6 Server 及び ft Server Control Software がインストールされており

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

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

note.dvi

note.dvi 1 1 1.1,.,,.,.,, CPU LSI.,.,,, Nintendo64, PlayStation 1, 2.,,,,. 1.1.1,.,.,.,.,..,.,....... 1,, Nintendo64. PlayStation SONY Computer Entertainment. 2., CPU PlayStation2 SONY Computer Entertainment, Pentium3

More information

PrintWalker/LXE インストールガイド

PrintWalker/LXE インストールガイド PrintWalker/LXE V16L20 1 2 PrintWalker/LXE V16L20 for Red Hat Enterprise Linux (for x86) Linux Linus Torvalds Red Hat RPM Red Red Hat, Inc. Common UNIX Printing System CUPS Apple Inc. UNIX Microsoft Windows

More information

できるん?! セキュリティ ~ハードディスクの情報消去~

できるん?! セキュリティ ~ハードディスクの情報消去~ ?! 2004 12 29 40 pp.3 36 34 Project Copyright (C) 2004 by Project 2004 12 PDF 2011 12 http://www.wheel.gr.jp/~dai/software/wipe-out/dekirun2/dekirun2-sample2.pdf CD PDF 2011 12 http://www.wheel.gr.jp/~dai/software/wipe-out/dekirun2/dekirun2-sample.pdf

More information

yamamoto_hadoop.pptx

yamamoto_hadoop.pptx Hadoop Streaming 2011/2/16 H22 ? SaaS (So5ware as a Service) (,etc.) PaaS (Pla?orm as a Service) (Google App Engine,, Mixi Appli etc.) IaaS (Infrastructure as a Service) (Amazon EC2) VMWare ESX, Hyper-

More information

1. OS のインストール 今回インストールするのは, Ubuntu という Linux ディストリビューションの中の一つ. OS, ディストリビューションの種類 ディストリビューションとは, 一般利用者が導入 利用するために多くのコンポーネントをまとめた頒布形態. 無料のものと有料のものがあり,

1. OS のインストール 今回インストールするのは, Ubuntu という Linux ディストリビューションの中の一つ. OS, ディストリビューションの種類 ディストリビューションとは, 一般利用者が導入 利用するために多くのコンポーネントをまとめた頒布形態. 無料のものと有料のものがあり, 新人セミナー第 2 回 Linux セットアップ 目次 1. OS のインストール 2. root 権限と一般権限 3. ターミナルの開き方 4. 基本的なコマンド 5. 新しいソフトウェアのインストール方法 担当 : 松原正季 ( M 2) 1. OS のインストール 今回インストールするのは, Ubuntu という Linux ディストリビューションの中の一つ. OS, ディストリビューションの種類

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

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

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

橡環境設定.PDF

橡環境設定.PDF UNIX Vine Linux 1.1 A B C D E F G XML H mod_rewrite(url Rewriting Engine # /etc/rc.d/init.d/httpd stop /usr/local/src % cd /usr/local/src % cp /copysrcpath/apache_1.3.9.tar.gz./ copysrcpath % gzip cd apache_1.3.9.tar.gz

More information

SE-PostgreSQL Linux SELinux Security-Enhanced PostgreSQL

SE-PostgreSQL   Linux SELinux Security-Enhanced PostgreSQL Open Source Conference 2008.DB (07-Jun-2008, Tokyo/Japan) Security-Enhanced PostgreSQL OS OS SE-PostgreSQL http://code.google.com/p/sepgsql/ http://sepgsql.googlecode.com/files/osc2008.db-sepgsql.pdf

More information

ファイルシステム

ファイルシステム ファイルシステム コンピュータリテラシ 2016 年 5 月 2 日 建 部 修 見 ファイルシステム ファイルを 管 理 するシステム ハードディスク USBなど 階 層 的 な 名 前 空 間 UNIXは/(ルートディレクトリ)から 始 まる 単 一 な 名 前 空 間 / ディレクトリ ファイル /usr/bin/cal アクセス 制 御 所 有 者 所 有 グループ その 他 読 込 可 書

More information

Version Page 1

Version Page 1 HP Compartment Guard for Linux Version 2.0 Version 2.0 168-8585 3 29 21 03-3331-6111 Page 1 Version 2.0 Revision Rev1.0 2004/3/4 Version 2.0 Release K.Iwasaki Rev1.1 2004/3/17 K.Iwasaki Page 2 Version

More information

21 20 20413525 22 2 4 i 1 1 2 4 2.1.................................. 4 2.1.1 LinuxOS....................... 7 2.1.2....................... 10 2.2........................ 15 3 17 3.1.................................

More information

untitled

untitled osamu@sfc.keio.ac.jp OK CNS OS CPU HDD FDD USB 1 (CPU) (CPU) CISCPentium4(Windows PC) RISCPowerPC(Macintosh PC) CPU CPU CPU CPU CD/DVD OS 2 OS Windows MacOS ( Talk, MacOSX) UNIX Word/Excel/PowerPoint etc..

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

第5回お試しアカウント付き並列プログラミング講習会

第5回お試しアカウント付き並列プログラミング講習会 qstat -l ID (qstat -f) qscript ID BATCH REQUEST: 253443.batch1 Name: test.sh Owner: uid=32637, gid=30123 Priority: 63 State: 1(RUNNING) Created at: Tue Jun 30 05:36:24 2009 Started at: Tue Jun 30 05:36:27

More information

unix.dvi

unix.dvi 1 UNIX 1999 4 27 1 UNIX? 2 1.1 Windows/Macintosh? : : : : : : : : : : : : : : : : : : : : : : : : 2 1.2 UNIX OS : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 2 1.3 : : : : : : : : : : : :

More information

FreeBSD 1

FreeBSD 1 FreeBSD 1 UNIX OS 1 ( ) open, close, read, write, ioctl (cdevsw) OS DMA 2 (8 ) (24 ) 256 open/close/read/write Ioctl 3 2 2 I/O I/O CPU 4 open/close/read/write open, read, write open/close read/write /dev

More information

Linux @ S9 @ CPU #0 CPU #1 FIB Table Neighbor Table 198.51.100.0/24 fe540072d56f 203.0.113.0/24 fe54003c1fb2 TX Ring TX Ring TX Buf. Dsc. RX Buf. Dsc. TX Buf. Dsc. RX Buf. Dsc. Packet NIC #0 NIC #1 CPU

More information

橡Ⅳインストールマニュアル.PDF

橡Ⅳインストールマニュアル.PDF 1. IDWS... 1... 1 1.2... 1 1.3... 1... 2 Configuration... 2 Manager Configuration... 3 Plugin... 4 ID MIB... 4 Snort Output Plugin... 5 SML-XML Plugin... 9 MIB Plugin... 11 XML-SMI Plugin... 13 IDWS...

More information

CMS入門

CMS入門 CMS(Contents Management System) 1 CMS CMS Unix Unix Unix Unix Unix (POP IMAP) OS CMS URL CMS URL CMS CMS Joomla 2006 CMS CMS TYPO3 Plone, TEXTPATTERN, MODx, Geeklog Joomla Mambo CMS 1.0 Mambo 1.5 1.5RC2

More information

kiso2-01.key

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

More information

UNIX

UNIX 2000 1 UNIX 2000 4 14 1 UNIX? 2 1.1 UNIX OS....................................... 2 1.2.................................................... 2 1.3 UNIX...................................... 2 1.4 Windows

More information

Sophos Anti-Virus UNIX or Linux startup guide

Sophos Anti-Virus UNIX or Linux startup guide UNIX Linux 1.0 1 UNIX Sophos Anti-Virus Sophos Anti-Virus Sophos Anti-Virus Sophos Anti-Virus UNIX UNIX Sophos Anti-Virus UNIX EM Library Sophos Anti-Virus / Sophos Anti-Virus Network Install CD CD Sophos

More information

2 2012/11/2 (c) Hiroki Sato / 71

2 2012/11/2 (c) Hiroki Sato / 71 FreeBSD PC FreeBSD / FreeBSD Project 2012/11/2 2012/11/2 (c) Hiroki Sato 1 / 71 2 2012/11/2 (c) Hiroki Sato / 71 2012/11/2 (c) Hiroki Sato 3 / 71 PC 1969 1971 to 1973 1974 to 1975 1978

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

はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) に よるプロセス監視の基本的な動作について記載したものです (1) 商標および商標登録 Linux は Linus Torvalds 氏の米国およ

はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) に よるプロセス監視の基本的な動作について記載したものです (1) 商標および商標登録 Linux は Linus Torvalds 氏の米国およ CLUSTERPRO MC ProcessSaver 1.0 for Linux はじめての ProcessSaver 2013(Apr) NEC Corporation はじめに プロセス監視の流れ 監視の設定と実践 おわりに はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) に よるプロセス監視の基本的な動作について記載したものです

More information

15 FreeBSD / FreeBSD Project 2016/2/ /2/18 (c) Hiroki Sato 1 / /2/

15 FreeBSD / FreeBSD Project 2016/2/ /2/18 (c) Hiroki Sato 1 / /2/ 15 FreeBSD / FreeBSD Project 2016/2/18 2016/2/18 (c) Hiroki Sato 1 / 31 2016/2/18 (c) Hiroki Sato 2 / 31 2016/2/18 (c) Hiroki Sato 3 / 31 2016/2/18 (c) Hiroki Sato 4 / 31 1 2 4 18 FreeBSD?

More information

GNU Emacs GNU Emacs

GNU Emacs GNU Emacs GNU Emacs 2015 10 2 1 GNU Emacs 1 1.1....................................... 1 1.2....................................... 1 1.2.1..................................... 1 1.2.2.....................................

More information

Oracle HTML DB 導入ガイド

Oracle HTML DB 導入ガイド Oracle HTML DB Oracle Database 10g ... 4... 4 1... 4... 4 2... 5 2.1 Oracle HTTP Server... 6... 6... 7 2.2 root... 9 UNIX... 9 UNIX... 10 2.3 Oracle... 10... 11 (Bash )... 12 2.4 Oracle HTML DB... 13 2.5...

More information

Red Hat Enterprise Linux 2.1 ASからRed Hat Enterprise Linux 3へのアップグレード時のOracle Database 10g環境の保持

Red Hat Enterprise Linux 2.1 ASからRed Hat Enterprise Linux 3へのアップグレード時のOracle Database 10g環境の保持 Red Hat Enterprise Linux 2.1 AS Red Hat Enterprise Linux 3 Oracle Database 10g 2005 1 Red Hat Enterprise Linux 2.1 AS Red Hat Enterprise Linux 3 Oracle Database 10g... 3... 3... 4 1. Oracle... 4 2....

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

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

CLUSTERPRO ファイルサーバ監視オプション編

CLUSTERPRO ファイルサーバ監視オプション編 CLUSTERPRO SE for Linux Ver3.0 2004.03.31 1 1 2004/03/31 2 CLUSTERPRO for Linux R2.0 CLUSTERPRO Linux Linus Torvalds URL NEC http://soreike.wsd.mt.nec.co.jp/ [ ][ ][CLUSTERPRO ] NEC http://www.ace.comp.nec.co.jp/clusterpro/

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

install

install SCore SCore 5.0 2001.03.19 devel@pccluster.org SCore Backbone LAN Ethernet EEPRO100 Myrinet-2000 Fibre 02/03/20 2 1 NIC (Network Interface Card) NIC 100Mbps Ethernet EEPRO100 Tulip 3C905B Network Trunking

More information

tutorial_lc.dvi

tutorial_lc.dvi 00 Linux v.s. RT Linux v.s. ART-Linux Linux RT-Linux ART-Linux Linux kumagai@emura.mech.tohoku.ac.jp 1 1.1 Linux Yes, No.,. OS., Yes. Linux,.,, Linux., Linux.,, Linux. Linux.,,. Linux,.,, 0..,. RT-Linux

More information

Linux 版 PowerPath のマルチパス機能 の設定

Linux 版 PowerPath のマルチパス機能 の設定 CHAPTER 11 この章の内容は次のとおりです マルチパスを介した起動の設定 (p.11-1) システムの準備と PowerPath のインストレーション (p.11-2) ファイルとディレクトリの設定 (p.11-3) 必要なオブジェクトとコンフィギュレーションファイルのコピー (p.11-4) ファイルの修正 (p.11-6) bootdisk ディレクトリのアーカイブ (p.11-8) マルチパスを介した起動の設定

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

PowerGres on Linux HAマニュアル

PowerGres on Linux HAマニュアル PowerGres R on Linux HA 2006 11 SteelEye LifeKeeper SteelEye Technology, Inc. Linux Linus Torvalds TM R 1 2 2 PowerGres on Linux HA 2 2.1 PowerGres on Linux HA.................................. 2 2.2..............................................

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

東京エリア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

Sybase on CLUSTERPRO for Linux HowTo

Sybase on CLUSTERPRO for Linux HowTo Sybase on CLUSTERPRO for Linux HowTo 1 2006 2 6-1- ... 3... 4... 5... 7 DB... 8 DB... 9... 10 DB... 11 DB... 12 CLUSTERPRO... 13... 20-2- Sybase Adaptive Server Enterprise Red Hat Enterprise Linux AS3

More information

e164.arpa DNSSEC Version JPRS JPRS e164.arpa DNSSEC DNSSEC DNS DNSSEC (DNSSEC ) DNSSEC DNSSEC DNS ( ) % # (root)

e164.arpa DNSSEC Version JPRS JPRS e164.arpa DNSSEC DNSSEC DNS DNSSEC (DNSSEC ) DNSSEC DNSSEC DNS ( ) % # (root) 1.2.0.0.1.8.e164.arpa DNSSEC Version 1.0 2006 3 7 JPRS JPRS 1.2.0.0.1.8.e164.arpa DNSSEC DNSSEC DNS DNSSEC (DNSSEC ) DNSSEC DNSSEC DNS ( ) % # (root) BIND DNS 1. DNSSEC DNSSEC DNS DNS DNS - 1 - DNS DNS

More information

プレゼンテーション

プレゼンテーション Solaris Container Zone Japan OpenSolaris Users Group Leader Internet WEB System WEB Router w FW Stack Router w FW Switch Stack Switch L.A. L.A. L.A. Server Server Server L.A. L.A. L.A. Switch Stack Switch

More information

mvd_nas_2.0.5_release_notes_v1_ja.doc

mvd_nas_2.0.5_release_notes_v1_ja.doc MVD Powered NAS Version 2.0.5 1 MVD Powered NAS CD CD MVD Share Manager TM Internet Explorer 6.0 Netscape 6.2 Mozilla 1.0.0 Cascading Style Sheets (CSS) Java Script Netscape 4.61 MVD Share Manager OK 6.2

More information

ファイルシステム

ファイルシステム 1 ソフトウェアアークテクチャ 第 2 回ファイルシステム 環境情報学部 萩野達也 オペレーティングシステムの構成要素 2 アプリケーション オペレーティングシステム システムコール処理 ファイルシステム プロセス管理 ネットワーク管理 メモリ管理 ブートストラップ スケジューラー デバイス管理 ハードウェア 3 ファイルとは 情報を外部記憶媒体に記録する単位 データセットとも呼ばれたことがある ファイルの特徴

More information

-----------------------------------------------------------------------------------------1 --------------------------------------------------------------------------------------1 -------------------------------------------------------------------------------------1

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド NX7700x ExpressUpdate Agent 1 2 3 4 1 Rev.3.10N NEC Corporation 2014 ... 2... 3... 4... 5 1... 6 2... 7 3... 9 3.1 ExpressUpdate Agent (Windows)... 9 3.1.1... 9 3.1.2... 9 3.1.3 ExpressUpdate Agent...

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

UNIX とは? 1969 年 米国のベル研究所で開発されたオペレーティングシステム特徴 文字ベースの対話型 OS マルチユーザ 複数のユーザが同時に利用できる マルチタスク マルチプロセス 複数の処理を平行して行える タイムシェアリング 一定の時間に区切って処理を行う 複数の処理を平行しているよう

UNIX とは? 1969 年 米国のベル研究所で開発されたオペレーティングシステム特徴 文字ベースの対話型 OS マルチユーザ 複数のユーザが同時に利用できる マルチタスク マルチプロセス 複数の処理を平行して行える タイムシェアリング 一定の時間に区切って処理を行う 複数の処理を平行しているよう Linux の基礎とインストール 技術部第 2 技術グループ加藤慶尚 UNIX とは? 1969 年 米国のベル研究所で開発されたオペレーティングシステム特徴 文字ベースの対話型 OS マルチユーザ 複数のユーザが同時に利用できる マルチタスク マルチプロセス 複数の処理を平行して行える タイムシェアリング 一定の時間に区切って処理を行う 複数の処理を平行しているように見える UNIX のシステム

More information

橡C16.PDF

橡C16.PDF Linux (Linux Business Initiative ( ) ) 1998 12 17 InternetWeek 98 ( ) Internet Week98 1998 Motoharu Kubo, Japan Network Information Center Linux 1. 2. 3. 4. 5. 6. 7. 8. 9. Q&A Linux( ) BP Software Design

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

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

403-0702_‚Ofl¼

403-0702_‚Ofl¼ HP-UX HP System Insight Manager Whitepaper ..................................................................................2..............................................................2 SIM....................................................................................2.............................................................3................................................................................3

More information

UNIX version Copyright c Daikoku Manabu 1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UN

UNIX version Copyright c Daikoku Manabu   1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UN UNIX version 1.04 2002 7 25 Copyright c 2001 2002 Daikoku Manabu http://www.gin.or.jp/users/daikoku/ 1 UNIX 1.1 UNIX UNIX UNIX OS Windows UNIX UNIX UNIX AIX HP UX Solaris Linux FreeBSD MacOS X Linux UNIX

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

Informatics 2015

Informatics 2015 C 計算機の歴史 新旧のソロバン バベッジの階差機関 19C前半 手回し計算機 19C後半 20C後半 スパコン 1960年代 ENIAC (1946) 大型汎用計算機 1950年代 1980年代 電卓 1964 パソコン 1970年代 現在のコンピュータ Input Output Device Central Processing Unit I/O CPU Memory OS (Operating

More information

Install.PDF

Install.PDF Oracle OLAP Server R6.3 for Windows NT Oracle OLAP Server R6.3 for Sun SPARC Solaris 1 1. 4 1.1....4 1.2....4 2. Windows NT 5 2.1....5 2.1.1. ID... 5 2.1.2. (Windows NT )... 9 2.2....10 2.2.1. Oracle OLAP

More information

にダウンロードするがあります このドキュメントがされたときの URL がのとおりです : 5. Windows 200

にダウンロードするがあります このドキュメントがされたときの URL がのとおりです :   5. Windows 200 Microsoft Hyper-V でのベアメタルリストア このでは CDP でベアメタルリストアをするにして Microsoft Hyper-V マシンをサポートしている カスタマイズされた CentOS LiveCD をするについてします のは こののは になものです このメソッドをすれば Linux のほかのディストリビューションで LiveCD をすることができます LiveCD をすることはにしいになっているとくのがえられるでしょう

More information

RedhatからSUSEへの移行

RedhatからSUSEへの移行 ISV Redhat SUSE LINUX 2005/2/8 Redhat SUSE LINUX Redhat SUSE LINUX init Redhat SUSE LINUX LSB FHS SUSE init RPM RPM SUSE build SUSE 2 Redhat SUSE LINUX 3 SUSE LINUX Enterprise Server 9 SLES8 kernel 2.4

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó 11 2013 6 19 11 (6/19) 6 (18:10-19:40) λ13 UNIX : 2 / 26 UNIX UNIX sort, head, tail, cat, cut diff, tee, grep, uniq, wc join, find, sed, awk, screen 3 / 26 sort sort : $ sort [options] [FILE...] options

More information

Informatics 2014

Informatics 2014 C 計算機の歴史 手回し計算機 新旧のソロバン バベッジの階差機関 スパコン ENIAC (1946) パソコン 大型汎用計算機 電卓 現在のコンピュータ Input Output Device Central Processing Unit I/O CPU Memory OS (Operating System) OS Windows 78, Vista, XP Windows Mac OS X

More information

スライド 1

スライド 1 はじめに Tilegx ってなんだ Tilera 社が開発したネットワーク用途に設計されたマルチコア CPU のこと 多くはホストサーバに PCI-E ボードを装着してアクセラレータのように使う グレードは 9,16,36,72 コアがありそれぞれ 24,28,40,80Gbps の転送速度を持つ PCI-E のインターフェイスは電源供給がメインで制御はホスト OS から行う CPU-ASIC の関係に近い

More information

CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Apr) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (H

CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Apr) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (H CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Apr) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (HP-UX 版 ) istorage M シリーズを使用する場合の StorageSaver 設定手順

More information

A

A A 3 2017 4 24 1 1 1.1.......................................... 1 1.2................................ 1 1.2.1................................ 1 1.2.2............................. 1 1.2.3................................

More information

I #2 : ( 8-13), () URL : j inoue/prog2007/prog2007.html

I #2 : ( 8-13), () URL :  j inoue/prog2007/prog2007.html Title 計算機プログラミング I 同演習講義ノート 2007 Author(s) 井上, 純一 Citation Issue Date 2007-08-22T04:23:05Z DOI Doc URLhttp://hdl.handle.net/2115/28047 Right Type learningobject Additional There are other files related

More information

Evalution of Linux Container(LXC) on Embedded Linux 株式会社富士通コンピュータテクノロジーズ町田裕樹 1201ka01 Copyright 2013 FUJITSU COMPUTER TECHLONOGIES LIMITED

Evalution of Linux Container(LXC) on Embedded Linux 株式会社富士通コンピュータテクノロジーズ町田裕樹 1201ka01 Copyright 2013 FUJITSU COMPUTER TECHLONOGIES LIMITED Evalution of Linux Container(LXC) on Embedded Linux 2013.3.8 株式会社富士通コンピュータテクノロジーズ町田裕樹 1201ka01 目次 Linux Container(LXC) の概要 Linux Container(LXC) コンテナ型仮想化 ユーザランド LXC を評価 評価環境 準備 アプリケーションコンテナ システムコンテナ 1 Linux

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

CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Sep) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (H

CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Sep) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (H CLUSTERPRO MC StorageSaver istorage M シリーズ使用時の設定手順 (HP-UX 版 Linux 版 Windows 版 ) 2013(Sep) NEC Corporation istorage M シリーズを使用する場合の StorageSaver 設定手順 (HP-UX 版 ) istorage M シリーズを使用する場合の StorageSaver 設定手順

More information

A B A E

A B A E 10533-68-3955 10533-68-3955 10533-68-3804 RP A-6 10533-68-3804 10533-69-9615 10533-57-2161 B-2 10533-68-2274 10533-68-2221 10533-67-6282 A-6 10533-57-2161 E-3 10533-68-5161 10533-68-3553 D-2 D-2 10533-69-5258

More information

ProScan for Mailserverバージョン6

ProScan for Mailserverバージョン6 平成 22 年 9 月 30 日 ProScan 利用者の皆様へ プロマーク技術部 ProScan for Mailserver バージョン確認について 1. はじめに平素は ProScan シリーズをご利用頂き 誠にありがとうございます 既にお知らせしておりますように 旧エンジンで利用可能な VDF の提供期限となりました ご利用中の皆様におかれましては 今一度 お使いの ProScan のバージョンをご確認いただきたくお願い申し上げます

More information

XEN 仮想マシンの移植 Islandcenter.jp 2009/04/14 既に作成済みの XEN 仮想マシンを移植する方法を説明します 仮想マシンイメージは 通常 /var/lib/xen/image/myvmachine に作成されていますが このファイルを tar 圧縮してリムーバブルメデ

XEN 仮想マシンの移植 Islandcenter.jp 2009/04/14 既に作成済みの XEN 仮想マシンを移植する方法を説明します 仮想マシンイメージは 通常 /var/lib/xen/image/myvmachine に作成されていますが このファイルを tar 圧縮してリムーバブルメデ XEN 仮想マシンの移植 2009/04/14 既に作成済みの XEN 仮想マシンを移植する方法を説明します 仮想マシンイメージは 通常 /var/lib/xen/image/myvmachine に作成されていますが このファイルを tar 圧縮してリムーバブルメディアにコピーするなり rsync で他のコンピュータにコピーしたり あるいはバックアップされて今は使われていないイメージを戻して再利用することができます

More information

Microsoft Word - .....J.^...O.|Word.i10...j.doc

Microsoft Word - .....J.^...O.|Word.i10...j.doc P 1. 2. R H C H, etc. R' n R' R C R'' R R H R R' R C C R R C R' R C R' R C C R 1-1 1-2 3. 1-3 1-4 4. 5. 1-5 5. 1-6 6. 10 1-7 7. 1-8 8. 2-1 2-2 2-3 9. 2-4 2-5 2-6 2-7 10. 2-8 10. 2-9 10. 2-10 10. 11. C

More information

(Microsoft PowerPoint - \213{\214\264\216\201\202\314\216\221\227\277.ppt)

(Microsoft PowerPoint - \213{\214\264\216\201\202\314\216\221\227\277.ppt) ゼロからのLinux 基 礎 技 術 を 学 ぶ 株 式 会 社 びぎねっと 代 表 取 締 役 社 長 兼 CEO 宮 原 徹 tmiyahar@begi.net 講 師 プロフィール 株 式 会 社 びぎねっと 代 表 取 締 役 社 長 兼 CEO 日 本 仮 想 化 技 術 株 式 会 社 代 表 取 締 役 社 長 兼 CEOでもある Linux オープンソースに 関 するIT 技 術 者

More information

< 移行前の環境 > 下記が本手順での動作環境です 動作確認のために Apache をインストールし 追加ディスクに dummy.iso というファイルを配置しています <ECS> リージョン : アジア東北 1 ( 東京 ) インスタンスタイプの選択 : 1-core, 2GB ネットワークタイプ

< 移行前の環境 > 下記が本手順での動作環境です 動作確認のために Apache をインストールし 追加ディスクに dummy.iso というファイルを配置しています <ECS> リージョン : アジア東北 1 ( 東京 ) インスタンスタイプの選択 : 1-core, 2GB ネットワークタイプ 目次 はじめにシナリオ1. 料金モデルを変更する場合シナリオ2. インスタンスのスペック変更する場合シナリオ3. 旧パッケージプランから新パッケージプランへ移行する場合ご利用上の注意事項改版履歴 はじめに Alibaba Cloud ECS では システムディスクや追加ディスクのイメージを取得し 購入時に適用することができます 例えば料金プランを変更したい時や インスタンスのスペック変更時などに実施することで

More information

J.JSSAC Vol. 7, No. 2, Mathematica Maple,., Open asir Open xxx asir. Open xxx Open asir, asir., Open xxx, Linux Open asir Open sm1 (kan/sm1). C

J.JSSAC Vol. 7, No. 2, Mathematica Maple,., Open asir Open xxx asir. Open xxx Open asir, asir., Open xxx, Linux Open asir Open sm1 (kan/sm1). C J.JSSAC (1999) Vol. 7, No. 2, pp. 2-17 Open asir HPC (Received 1997/12/1) 1 Open asir Open xxx,., ( ),,,,,.,., (1) (2) (3) (4),. Open xxx,.,., 1.,.,., 0 10, dx,.,., ohara@math.kobe-u.ac.jp taka@math.kobe-u.ac.jp

More information