Exercise for undergraduate students

Size: px
Start display at page:

Download "Exercise for undergraduate students"

Transcription

1 UNIX 1.5 W /04/14 Unix OS CUI Unix 2008.

2 /etc/profile /.bash_profile /.bashrc bashrc aliases xsession emacs bashrc aliases xsession emacs

3 1, 1.1 Table 1 cd change directory pwd print working directory ls list cp copy mkdir make directory mv move / rm remove rmdir remove directory ls -R man ls ls -la man < > firefox & Google TA TA 89 drwxr-xr-x 12 wakabayashi student :44./ drwxr-xr-x 172 root root :44../ -rw-r--r-- 1 wakabayashi ta :53.Xresources -rw-r--r-- 1 wakabayashi ta :53.aliases -rw wakabayashi ta :48.bash_history -rw-r--r-- 1 wakabayashi ta :53.bash_profile -rw-r--r-- 1 wakabayashi ta :53.bashrc -rw-r--r-- 1 wakabayashi ta :53.emacs drwxr-xr-x 2 wakabayashi ta :07.fontconfig/ drwx wakabayashi ta :11.gconfd/ drwx wakabayashi ta :39.ssh/ -rw-r--r-- 1 wakabayashi ta :53.wl 1

4 -rwxr-xr-x 1 wakabayashi ta :53.xsession drwxrwxrwx 3 wakabayashi ta :41 TA2007/ drwxrwxrwx 3 wakabayashi ta :45 TA2008/ ( ) ls -l sl man sl cal -jy du du -sh man du du -sh * /home2/wakabayashi/ta2010/ exercise TA 1.3 UNIX head tail students.txt cd exercise cat -n students.txt 1 s Aoki Hiroka.. less cat -n students.txt less 2

5 head tail cat head tail Table 2 man Table 2 cat cat <file> head head -n lines <file> tail tail -n lines <file> 10 head -n 10 students.txt 10 tail -n 20 students.txt 20 head -n 10 students.txt 1 s Aoki Hiroka.. 10 s Kaneko Takahumi students.txt 10 tail -n 1 head -n 10 students.txt /exercise$ head -n 10 students.txt tail -n 1 s Kaneko Takahumi /exercise$ cat students.txt head -n 10 tail -n 1 KISS (Keep It Simple and Smart) UNIX cat students.txt cut -f 1,3 -d " " " " cut d f cut 3

6 students.txt exercise.txt exercise2.txt > >> Emacs Bash ls head tail UNIX Windows Mac OS X ls UNIX UNIX Fig 1 /bin find /bin -name ls $ find /bin -name ls /bin/ls /bin ls head /bin find /bin -name head whereis head 4

7 Fig 1 UNIX $ whereis head head: /usr/bin/head head /usr/bin Fig 1 /usr man whereis whereis man 2.2 ls /bin head /usr/bin /bin/ls -l $ /bin/ls -l drwxrwxrwx 3 wakabayashi ta :41 TA2010 5

8 ls Windows Mac OS X /etc/profile lv /etc/profile TA bin lv less / <search term> / bin PATH =... if [ " id -u " -eq 0 ]; then PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" else PATH="/usr/local/bin:/usr/bin:/bin:/usr/games" fi export PATH export bash PATH : /usr/local/bin/ls /bin/ls ls /usr/local/bin/ls PATH CUI ls head PATH PATH /bin /usr/bin ls head ~/exercise line.sh.sh cat < > < > $./exercise/line.sh 10 ~/exercise/students.txt 6

9 $ line.sh 10 ~/exercise/students.txt $ PATH=$PATH:~/exercise $ line.sh 10 ~/exercise/students.txt ~/exercise ~/exercise line.sh 2.3 env (environment ) MANPATH=/usr/local/intel/idb/man:/usr/local/intel/ifc/man: /usr/local/intel/icc/man:/usr/local/intel/icc/man:/usr/local/man: /usr/local/share/man:/usr/share/man INTEL_LICENSE_FILE=/usr/local/intel/icc/licenses:/opt/intel/licenses: /home1/s102600/intel/licenses:/users/shared/library/application Support/Intel/Licenses: /usr/local/intel/ifc/licenses:/opt/intel/licenses:/home1/s102600/intel/licenses: /Users/Shared/Library/Application Support/Intel/Licenses TERM=xterm-color SHELL=/bin/bash SSH_CLIENT= SSH_TTY=/dev/pts/0 USER=s LD_LIBRARY_PATH=/usr/local/intel/ifc/lib:/usr/local/intel/icc/lib MAIL=/var/mail/s PATH=/usr/local/intel/idb/bin:/usr/local/intel/ifc/bin:/usr/local/intel/icc/bin: /usr/local/bin:/usr/bin:/bin:/usr/games PWD=/home1/s LANG=ja_JP.EUC-JP SHLVL=1 HOME=/home1/s DYLD_LIBRARY_PATH=/usr/local/intel/ifc/lib:/usr/local/intel/icc/lib LOGNAME=s SSH_CONNECTION= DISPLAY=localhost:10.0 _=/usr/bin/env 7

10 3 /bin /usr/bin PATH /etc/profile /etc/profile emacs /etc/profile & * * UNIX *2 3.2 /etc/profile bash /etc/profile 3.3 /.bash_profile /etc/profile.bash_profile.bash_profile /etc/profile /etc/profile *1 210 *2 ( ) 210 8

11 3.4 /.bashrc.bashrc.bashrc ( ).bash_profile.bash_profile.bashrc.bash_profile.bashrc PATH.bashrc # PATH etc export PATH=/usr/local/intel/idb/bin:/usr/local/intel/ifc/bin: /usr/local/intel/icc/bin:/usr/local/bin:/usr/bin:/bin:/usr/games /etc/.profile.d ~/.bash_login ~/.bash_logout Fig 2 For All Users, Login Shell /etc/profile For You, Login Shell /.bash profile For You, When Shell Starts /.bashrc Fig 2.bash_history lv.bash_history 3.5 /etc/profile lv /etc/profile 1 # /etc/profile: system-wide.profile file for the Bourne shell (sh(1)) 2 # and Bourne compatible shells (bash(1), ksh(1), ash(1),...). 3 4 if [ " id -u " -eq 0 ]; then 5 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" 6 else 9

12 7 PATH="/usr/local/bin:/usr/bin:/bin:/usr/games" 8 fi 9 10 if [ "$PS1" ]; then 11 if [ "$BASH" ]; then 12 PS1= \u@\h:\w\$ 13 else 14 if [ " id -u " -eq 0 ]; then 15 PS1= # 16 else 17 PS1= $ 18 fi 19 fi 20 fi export PATH umask if id man id PATH 24 umask PS1 22 export export export ( /etc/profile ) ( ) ~/.bash_profile 1 # ---- language-env DON T MODIFY THIS LINE! 2 #.bash_profile 3 if [ -f ~/.bashrc ] 4 then 5 #.bash_profile.bashrc 6 # 7 if [ -z "$BASHRC_DONE" ] 8 then 9. ~/.bashrc 10 fi 11 fi 12 # ---- language-env end DON T MODIFY THIS LINE! 10

13 .bash_profile 3.bashrc (# ) bashrc.bash_profile (.bashrc ).bash_profile source ~/.bashrc.bashrc /etc/profile PATH umask.bash_profile.bashrc Mac.bashrc.bashrc.bashrc cat -n.bashrc lv *3 3 TA BASHRC_DONE.bashrc.bashrc.bash_profile #.bash_profile BASHRC_DONE= PS1 27 aliases 28 if [ -f ~/.aliases ]; then 29. ~/.aliases 30 fi.aliases.aliases *3 11

14 22 /etc/bash_completion *4 3.6.bashrc 11 PS1 11 # man bash 12 if [ "$TERM" = "dumb" -o "$TERM" = "emacs" ]; then 13 PS1= \w\$ 14 else 15 if [ "$UID" = "0" ]; then 16 PS1= \[\e[41m\]\w\$\[\e[m\] 17 else 18 PS1= \[\e[7m\]\w\$\[\e[m\] 19 fi 20 fi PS1 ( ) = > $ PS1= > PS1.bashrc PS1 TERM env UID id 12 -o or PS1 export env source.bashrc set *4 Tab TA 12

15 Table 3 $ PS1= \h $ PS1= \h \u \n \d \t $ PS1= :-) $ PS1= ^^; Table 3 PS1 \h \u \d \t (24 ) \T (12 ) \w ( ) \W \n bashrc 13

16 4.2.aliases.allias.bashrc lv.aliases alias md= mkdir alias rd= rmdir if [ "$TERM" = "dumb" -o "$TERM" = "emacs" ]; then alias ls= ls -F else alias ls= ls -F --color=auto fi alias lf= ls -F alias la= ls -a alias ll= ls -l alias l.= ls -ld.* alias rm= rm -i alias..= cd.. alias ggre= firefox alias grep= grep --color alias a2ps= a2psj alias wl= emacs -nw -f wl alias kterm= kterm -bg gray30 -fg white -cr yellow if [ -x /usr/bin/xdvi-ja ]; then alias xdvi= xdvi-ja fi function xtitle() { /bin/echo -e "\033]0;$*\007\c" } la ll mkdir md.. line 14

17 4.3.xsession Linux CUI Windows Mac OS X UNIX Windows X Window System X ( ) Alt + Control + Fn + 3 X Alt + Control + Fn + 7 startx X X.xsession X Window System X.xsession x X Window System.xsession cat -n.xsession lv 17 application X # Console window Terms and Editors 42 wallpaper 68 Screensaver 79 Window manager X fluxbox Windows Macintosh UI ( ) *5 GUI 210 admin 4.4.emacs Emacs.bashrc.emacs Emacs *5 fluxbox 15

18 X * TEX Fortran.emacs ;.emacs Emacs Lisp Emacs Emacs Lisp Emacs Lisp 5 X Window System.emacs Emacs 5.1.bashrc.bashrc.bashrc source.bashrc 5.2.aliases alias ll= ls -l =.bashrc.allias $ alias ls= ls -R $ alias ls= sl *6 Emacs emacs -nw 16

19 ( ).bashrc alias.bashrc *7 5.3.xsession.xsession X vi X.xsession $ xv -root -quit ~/exercises/images/dance.gif $ xv -root -quit -geometry 1280x1024 ~/exercise/images/nyan_01.jpg.xsession xv UNIX xv & 5.4.emacs Emacs *8 Emacs.emacs ; Emacs (set-foreground-color "white") (set-background-color "dark green") (set-cursor-color "yellow") (set-mouse-color "white") *7 xlock *8 17

20 TEX ;; (for remark of the other paren) (show-paren-mode t) exercise emacsdownload.emacs ;; (setq load-path (cons "~/exercise/emacsdownload" load-path)) (setq wb-line-number-scroll-bar t) (set-scroll-bar-mode nil) (require wb-line-number) (wb-line-number-toggle) 6 UNIX UNIX UNIX Windows OS UNIX Windows UNIX OS (TA ) 18

21 ( ) miki ta ls -l *9 exercise catalogue.txt Mw (2 4 ) (9 ) kadai1.txt /home2/wakabayashi/ta2010/s1026??/ (s1026?? ) cut c awk PATH PATH $ whereis touch head: /bin/touch /usr/bin/touch /usr/share/man/man1/touch.1.gz $ which touch /usr/bin/touch which touch /bin /usr/bin ( man ) /usr/bin kadai2.txt /home2/wakabayashi/ta2010/s1026??/ lpr lpr lpr 210 lpr -Pionia ~/exercise/images/nyan_01.jpg admin210 lpr lpr 210 *

22 lpr lpr (PATH ) lpr kadai3.txt /home2/wakabayashi/ta2010/s1026??/ kadai4.txt /home2/wakabayashi/ta2010/s1026??/ 20

情報の分析 1. Linux ツールの活用

情報の分析 1. Linux ツールの活用 1. Linux Chris Plaintail June 16, 2016 1 / 39 1 Cygwin Cygwin 2 3 4 Cygwin 5 2 / 39 Uinux Unix OS Micorsoft Windows Cygwin Cygwin 3 / 39 Cygwin 4 / 39 Cygwin...is it? a large collection of GNU and Open

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

C1-202 / F-101 originally from 2014 4 15 3 1 3 C1 2 C1-202 F 1 F-101 PC imac MacPro OS Mac OS X C WWW L A TEX 2 3 4 e-mail kyama@tut.jp C-506 6767 5 2 2.1 ID ID 2.2 2.3 2.4 2.4.1 1. imac MacPro 2. 3.

More information

tebiki00.dvi

tebiki00.dvi (Linux) [ UNIX ] CMD Workshop ( ) 1 *********************************************************************** * Linux PC-UNIX UNIX * * 99% FreeBSD BSD PC-UNIX * * * ***********************************************************************

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

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

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

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2

Windows Cygwin Mac *1 Emacs Ruby ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 September 2016 1 Windows Cygwin Mac *1 Emacs Ruby 1 1.1 ( ) 1 Cygwin Bash Cygwin Windows Cygwin Cygwin Mac 1 Mac 1.2 *2 ls *3 *1 OS Linux *2 *3 Enter ( ) 2 ~/16:00:20> ls 2 2 ls ls -a ~/16:00:20> ls -a

More information

X Window System X X &

X Window System X X & 1 1 1.1 X Window System................................... 1 1.2 X......................................... 1 1.3 X &................................ 1 1.3.1 X.......................... 1 1.3.2 &....................................

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

ファイルシステム

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

More information

273? C

273? C TSG Theoretical Science Group 273? C 2-1.................................. 2 -1. Windows Mac Mac UNIX CUI bash >_ Finder TSG No.273? 2 3 pwd ls cd ( ) change directory 3 TSG No.273? cd hoge cd hoge cd....../

More information

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI

2 Windows 10 *1 3 Linux 3.1 Windows Bash on Ubuntu on Windows cygwin MacOS Linux OS Ubuntu OS Linux OS 1 GUI Windows Explorer Mac Finder 1 GUI 2017 1 2017 -September I ll remember- 1,2 Linux 6 Linux Linux 2 3 Linux 2 (OS) Windows MacOS OS MacOS Linux 3 Windows Windows ( ) 1. Bash on Ubuntu on Windows ( Windows 10 ) 2. cygwin ( ) 3. VM Ware Linux

More information

Unix * 3 PC 2 Linux, Mac *4 Windows Cygwin Cygwin gnuplot Cygwin unix emulator online gnuplot *5 matplotlib *6 SuperMongo *7 gnuplot gnuplot OS *8 Uni

Unix * 3 PC 2 Linux, Mac *4 Windows Cygwin Cygwin gnuplot Cygwin unix emulator online gnuplot *5 matplotlib *6 SuperMongo *7 gnuplot gnuplot OS *8 Uni 2015 8 1 ( ) Unix 1 *1 Unix Unix Unix Perl, Python *2 Unix 2 PC gnuplot *1 100 10 10 6 10 = 10 7 1 1/3 3 10 7 10 7.5 1 24 3600 = (30 6)(30 + 6) 100 = 86400 1 10 7.5 *2 Perl, Python Python 1 Unix * 3 PC

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

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

UNIX

UNIX 2000 2 UNIX 2000 4 24 1 3 1.1 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 3 1.2 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

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

1) : man [ ] 1: $ man ls ls ( jman) 2: $ man 3 printf C printf 3 man 1: 2: UNIX 3: 4: 5: 6: 7: 8: man man man -k 2) : ls [options] 1: $ ls /etc [ or ]

1) : man [ ] 1: $ man ls ls ( jman) 2: $ man 3 printf C printf 3 man 1: 2: UNIX 3: 4: 5: 6: 7: 8: man man man -k 2) : ls [options] 1: $ ls /etc [ or ] Linux HOWTO F. Miyahara 2006 4/10 Linux UNIX Linux $ $ kterm xterm gnome-terminal PC 1. (ls ) & 1: kterm ps 1 1) : man [ ] 1: $ man ls ls ( jman) 2: $ man 3 printf C printf 3 man 1: 2: UNIX 3: 4: 5: 6:

More information

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X a0postercls, http://wwwmathkobe-uacjp/a0poster ( ) ( ): orange (Debian/GNU Linux, Etch) ssh -X orange pdf :, - pdf ( ) orange / tex a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster

More information

PowerPoint Presentation

PowerPoint Presentation 平成 24 年度 情報リテラシー 担当 : 一色正晴 (4 号館 405) isshiki@cs.ehime-u.ac.jp http://ipr20.cs.ehime-u.ac.jp/~isshiki/literacy/ シェルの確認と準備 使用しているシェルの確認 % echo $SHELL /bin/bash 準備 % cd ~/literacy % mkdir shell % cd shell

More information

kiso2-01.key

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

More information

Microsoft Word - Cygwin・ns2インストール.doc

Microsoft Word - Cygwin・ns2インストール.doc cygwin と ns2 のインストール #2 2008.10 水野 1. 本資料の要点本資料では ns2 のインストールと確認方法について述べる かなり細かく書いているので 途中どこをやっているのか分からなくならないよう 最初に本資料の要点をまとめる ns2 のインストールは UNIX/LINUX 上にインストールするため 初めにそれを解決品ければならない 今回は cygwin を使ったが これのインストール方法については別資料を参照して欲しい

More information

本 日 の 授 業 内 容 最 低 限 覚 えるべきUNIXコマンド pwd, ls, mkdir, cd, cp, rm, mv テキストエディタの 簡 単 な 使 い 方 テキストエディット, Jedit X,Emacs C 言 語 プログラミングの 初 歩 hello, world を 画 面

本 日 の 授 業 内 容 最 低 限 覚 えるべきUNIXコマンド pwd, ls, mkdir, cd, cp, rm, mv テキストエディタの 簡 単 な 使 い 方 テキストエディット, Jedit X,Emacs C 言 語 プログラミングの 初 歩 hello, world を 画 面 情 報 処 理 技 法 (Cプログラミング)I 第 2 回 ー UNIXの 基 本 (2) C 言 語 の 初 歩 ー 担 当 : 荻 田 武 史 本 日 の 授 業 内 容 最 低 限 覚 えるべきUNIXコマンド pwd, ls, mkdir, cd, cp, rm, mv テキストエディタの 簡 単 な 使 い 方 テキストエディット, Jedit X,Emacs C 言 語 プログラミングの

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

160420c_unix.pptx

160420c_unix.pptx 出席の確認のため pi にログインして待つこと ちなみに演習室外からリモートログインしてもダメ ターミナルは 2 つ開いておくと便利 UNIX の復習 陰山聡計算科学演習 A1 第 2 回講義資料 本資料のオリジナルは関和弘先生 中村匡秀先生 臼井英之先生によって作成されました. 今日やること UNIX の基礎 ディレクトリ コマンド 環境変数 シェルスクリプト 今さら UNIX? という人は まずは今日の課題

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2016.06.06 2016.06.06 1 / 60 2016.06.06 2 / 60 Windows, Mac Unix 0444-J 2016.06.06 3 / 60 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 0444-J 2016.06.06 4 / 60 ( : ) 6 6 ( ) 6 10 6 16 SX-ACE 6 17

More information

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.09.10 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 1 / 59 furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 2 / 59 Windows, Mac Unix 0444-J furihata@cmc.osaka-u.ac.jp ( ) 2018.09.10 3 / 59 Part I Unix GUI CUI:

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

スパコンに通じる並列プログラミングの基礎

スパコンに通じる並列プログラミングの基礎 2018.06.04 2018.06.04 1 / 62 2018.06.04 2 / 62 Windows, Mac Unix 0444-J 2018.06.04 3 / 62 Part I Unix GUI CUI: Unix, Windows, Mac OS Part II 2018.06.04 4 / 62 0444-J ( : ) 6 4 ( ) 6 5 * 6 19 SX-ACE * 6

More information

2 1. Ubuntu 1.1 OS OS OS ( OS ) OS ( OS ) VMware Player VMware Player jp/download/player/ URL VMware Plaeyr VMware

2 1. Ubuntu 1.1 OS OS OS ( OS ) OS ( OS ) VMware Player VMware Player   jp/download/player/ URL VMware Plaeyr VMware 1 2010 k-okada@jsk.t.u-tokyo.ac.jp http://www.jsk.t.u-tokyo.ac.jp/~k-okada/lecture/ 2010 4 5 Linux 1 Ubuntu Ubuntu Linux 1 Ubuntu Ubuntu 3 1. 1 Ubuntu 2. OS Ubuntu OS 3. OS Ubuntu https://wiki.ubuntulinux.jp/ubuntutips/install/installdualboot

More information

170420_unix.pptx

170420_unix.pptx 出席の確認のため演習時間中はずっと pi-computer にログインしておくこと pi-computer への ssh ターミナルは同時に複数開いておくと便利です UNIX の復習 陰山聡計算科学演習 A1 第 2 回講義資料 本資料のオリジナルは関和弘先生 中村匡秀先生 臼井英之先生によって作成されました. 今日やること UNIX の基礎 ディレクトリ コマンド 環境変数 シェルスクリプト 今さら

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

Microsoft PowerPoint - スハ?コン利用入門_ _UNIX利用の基礎知識.pptx

Microsoft PowerPoint - スハ?コン利用入門_ _UNIX利用の基礎知識.pptx 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 目 次 UNIX 環境を利用するための基礎知識 エディタ Emacs の基本的な使い方 2014 年 6 月 9 日大規模計算機システム利用講習会 2 UNIX 環境を利用するための基礎知識 2014 年 6 月 9 日大規模計算機システム利用講習会 3 UNIX

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

syspro-0405.ppt

syspro-0405.ppt 3 4, 5 1 UNIX csh 2.1 bash X Window 2 grep l POSIX * more POSIX 3 UNIX. 4 first.sh #!bin/sh #first.sh #This file looks through all the files in the current #directory for the string yamada, and then prints

More information

kiso2-01.key

kiso2-01.key 第1回 計算機基礎実習II 前期の計算機基礎実習Iと同じ りなっくす というOS Linuxの使い方に慣れ C言語による簡単なプロ グラミングができるようになる 計算機基礎実習II 2018 シラバス 到達目標 OSとは ユーザー アプリケーション プログラム OperatingSystem オペレーティング システム CPU メモリ ディスク ネット Linux へのログイン Ubuntu Linux

More information

Asterisk PBX 不正利用防止

Asterisk PBX 不正利用防止 Asterisk PBX ICTR120716-OR01A Info Circus,Inc. 1 2 2 IP-PBX 3 2.1........................... 3 3 IP-PBX 4 3.1........................................... 4 3.2..................................... 4 3.3..............................

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

TC5.ids

TC5.ids % cp ~train00/.cshrc.iris ~ % cp ~train00/.alias.all ~ % exit UNIX の基本 シェルシステムとユーザの仲立ちをするプログラムであって ユーザが入力したコマンドを解釈して実行する Unix では文法によって sh 系と csh 系がある sh 系には sh, ash, zsh, bash などがある csh 系には csh, tcsh などがある

More information

PowerPoint Presentation

PowerPoint Presentation 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大規模計算研究部門吉野元 yoshino@cmc.osaka-u.ac.jp 参考資料 大規模計算機システム利用講習会スーパーコンピュータ利用入門 (2013 年 9 月 10 日 ) 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 2 目 次 UNIX 環境を利用するための基礎知識

More information

情報活用資料-01-20150507

情報活用資料-01-20150507 スタートメニューコンピュータ スタートメニュー すべてのプログラム Cygwin Cygwin bash shell command filename cd /cygdrive/c/ firefox ls 1 cd Program files ls cd Mozilla Firefox ls cd cd /cygdrive/c/program file/mozilla firefox 2 . /firefox.exe.

More information

05 I I / 56

05 I I / 56 05 I 2015 2015.05.14 I 05 2015.05.14 1 / 56 I 05 2015.05.14 2 / 56 cd mkdir vis01 OK cd vis01 cp /tmp/150514/leibniz.*. I 05 2015.05.14 3 / 56 I 05 2015.05.14 4 / 56 Information visualization Data visualization,

More information

図 1: 場所をクリックし ホームフォルダーをクリックすると (上図) ホーム フォルダー下にあるファイルやディレクトリの一覧を見ることができる 下図 2

図 1: 場所をクリックし ホームフォルダーをクリックすると (上図) ホーム フォルダー下にあるファイルやディレクトリの一覧を見ることができる 下図 2 1 Linux Oracle VirtualBox Windows OS (Operating System) Mac OS X OS Linux OS Ubuntu Ubuntu Linux OS Linux OS Linux OS 1.1 Ubuntu GUI Linux OS Mac OS X Unix OS Linux GUI (Graphical User Interface: ) Ubuntu

More information

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~ alse

¥×¥í¥°¥é¥ß¥ó¥°±é½¬I  Exercise on Programming I [1zh] ` `%%%`#`&12_`__~~~alse I Exercise on Programming I http://bit.ly/oitprog1 1, 2 of 14 ( RD S ) I 1, 2 of 14 1 / 44 Ruby Ruby ( RD S ) I 1, 2 of 14 2 / 44 7 5 9 2 9 3 3 2 6 5 1 3 2 5 6 4 7 8 4 5 2 7 9 6 4 7 1 3 ( RD S ) I 1, 2

More information

-2 gnuplot( ) j ( ) gnuplot /shell/myscript 1

-2 gnuplot( ) j ( ) gnuplot /shell/myscript 1 -2 gnuplot( ) j 2006 05 03 2006 05 12 2006 05 09 2 ( ) gnuplot /shell/myscript 1 1 shell script Level 1 myls #!/bin/sh # nowdir= pwd # if [ -f $1 -o -z $1 ] ; then echo "Enter pass" echo "ex) myls.sh./"

More information

スライド 1

スライド 1 ver. 2018/4/13 プログラミング 計算機利用上の Tips 補足資料 分類 項目 ページ 計算機利用 ホスト計算機への接続方法 Unix (Linux) の基本的なコマンド容量制限についてターミナルで文字を大きくする方法 xtermで文字を大きくする方法 Fortran プログラミングについて最近あった事例 : コンパイル 実行時のエラーコンパイルオプションプログラムは正しそうなのに エラーが出る場合データファイルは正しそうなのに

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

2008 Linux May 12, 2008

2008 Linux  May 12, 2008 2008 Linux (rsf@subaru.naoj.org) (YAGI.Masafumi@nao.ac.jp) May 12, 2008 Contents 1 3 1.1................................................. 3 1.2......................................... 4 1.3...............................................

More information

OS fvwm fluxbox

OS fvwm fluxbox 15 03 13 1 1 2 1 2.1.......................... 1 2.2 OS.................... 4 2.2.1 fvwm95.................................. 4 2.3............. 7 2.3.1 fluxbox.................................. 7 2.3.2

More information

<4D F736F F F696E74202D E3F FC96E55F F554E CC8AEE D8EAF2E B8CDD8AB B83685D>

<4D F736F F F696E74202D E3F FC96E55F F554E CC8AEE D8EAF2E B8CDD8AB B83685D> 大規模計算機システム利用講習会スーパーコンピュータ利用入門 大阪大学サイバーメディアセンター大規模計算研究部門吉野元 yoshino@cmc.osaka-u.ac.jp 参考資料 大規模計算機システム利用講習会スーパーコンピュータ利用入門 (2013 年 9 月 10 日 ) 大阪大学サイバーメディアセンター大阪大学情報推進部情報基盤課研究系システム班 パソコン& スーパーコンピュータで計算するための基礎知識

More information

スライド 1

スライド 1 今日は Unix! Ubuntu を起動しよう Panda の VDI から接続! 出席を取るので配布した紙に 紙を 横が広い方向にこのようにおいて この方向で大きくかいてください 0.3 or 4 限目 (4/24) 1. 学生番号 2. 名前 を書いて 退出するときに 入口の近くにおいて台の上 に提出 ( 学生番号ははっきりと ) 第 3 回情報基礎演習 本日の演習内容 1. テキスト3 章および4

More information

unix15-script2_09.key

unix15-script2_09.key UNIX講習会 シェルスクリプト2 31/July/2015 情報管理解析室 西出 浩世 SGE ~/unix15/sge $ cd ~/unix15/sge $ ls script* script2.sh script3.sh script4.sh ~/unix15/sge/results sam 12 $ ls results/*.sam $ rm -r results $ cp -r /usr/local/data/unix15/sge/results.

More information

2

2 1 2 10 14 945 3000 2012 3 10 4 5 6 7 8 9 10 11 12 2011 11 21 12301430 (1215 ) 13 6 27 17 () ( ) ( ) (112360) 2 (1157) (119099) ((11861231) )( ) (11641205) 3 (1277) 3 4 (1558) (1639)() 12 (1699)( ) 7 (1722)

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

PowerPoint プレゼンテーション - 物理学情報処理演習

PowerPoint プレゼンテーション  -  物理学情報処理演習 物理学情報処理演習 13. LATEX 2015 年 7 月 24 日 本日の推奨作業 directory lesson13 13.1 LATEX 参考文献 身内賢太朗レポート提出 :fsci-phys-jouhou@edu.kobe-u.ac.jp 13.1 LATEX これまで 物理データを処理するための方法を学んできた (C++) 計算機の使用は C++ にとどまらない 一例として 文書作成のための

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

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

(2 Linux Mozilla [ ] [ ] [ ] [ ] URL 2 qkc, nkc ~/.cshrc (emacs 2 set path=($path /usr/meiji/pub/linux/bin tcsh b

(2 Linux Mozilla [ ] [ ] [ ] [ ] URL   2 qkc, nkc ~/.cshrc (emacs 2 set path=($path /usr/meiji/pub/linux/bin tcsh b II 5 (1 2005 5 26 http://www.math.meiji.ac.jp/~mk/syori2-2005/ UNIX (Linux Linux 1 : 2005 http://www.math.meiji.ac.jp/~mk/syori2-2005/jouhousyori2-2005-00/node2. html ( (Linux 1 2 ( ( http://www.meiji.ac.jp/mind/tool/internet-license/

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

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( )

( ) 1 Windows HTML ( ) ( ) ( ) WWW 10 ( ) ( ) 1 Windows HTML ( ) ( ) ( ) 1. 2. 3. 4. WWW 10 ( ) 2 1. 2. 1 3. ( ) 4. 5. 3 Windows 2 7 8 MS Word MS Excel 1. MS Word 600 2. MS Excel 1 34 2 83 3 23 4 70 5 100 6 45 7 58 8 29 9 68 10 72 11 37 12 12

More information

I I / 68

I I / 68 2013.07.04 I 2013 3 I 2013.07.04 1 / 68 I 2013.07.04 2 / 68 I 2013.07.04 3 / 68 heat1.f90 heat2.f90 /tmp/130704/heat2.f90 I 2013.07.04 4 / 68 diff heat1.f90 heat2.f90!! heat2. f 9 0! c m > NGRID! c nmax

More information

VNX for Fileでの監査ツールの構成および使用

VNX for Fileでの監査ツールの構成および使用 EMC VNX 8.1 VNX for File P/N 300-015-126 A01 2013 8... 2... 2... 2... 4 SYSlog... 6 SYSlog... 6 A Audit_messages... 7 B... 10 1 VNX for File Control Station SYSlog SYSlog Control Station Linux SYSlog ID

More information

第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち

第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち 第 3 回情報基礎演習 UNIX / Linux: ファイルシステム シェルを理解しよう! 谷口貴志 Panda に login し 情報基礎演習クラスの VDI から Ubuntu に接続し Linux に login した後, 左 上の Activity 端末のアイオン をクリック 端末 を立ち上げます 3 章 3.3.1-3.3.3 節,4 章 4.3.1-4.3.3 節の内容を各自で実習して下さい

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

Emacs Hacking CVS Emacs GDB + Elscreen ( ) makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23

Emacs Hacking CVS Emacs GDB + Elscreen ( )   makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23 Emacs Hacking CVS Emacs GDB + Elscreen ( ) http://www.ki.nu/ makoto/e/emacs-gdb.pdf Emacs Hacking p.1/23 Introduction Emacs Hacking c-mode Emacs Hacking p.2/23 Introduction Emacs Hacking c-mode M-x gdb

More information

403-0702_‚Ofl¼

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

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

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

25 2 15 4 1 1 2 1 2.1............................. 1 2.2............................... 2 2.3.................... 5 2.4..................... 6 3 6 3.1.................................... 6 3.2..........................

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

More information

linux_apli02.dvi

linux_apli02.dvi 2002 2 Linux 2002 5 16 : UNIX GUI X Window System KDE GNOME. Linux Tex 1 X Window System 1.1 X Window System X Window System Unix GUI Linux X Window System X X Project Athena MIT X X X Microsoft Windows

More information

1 1 CentOS Java JDK(JavaSE Development Kit)......

1 1 CentOS Java JDK(JavaSE Development Kit)...... 1 1 CentOS 3 1.1.................................... 3 1.2......................................... 12 2 Java 15 2.1 JDK(JavaSE Development Kit)................. 15 3 Apache Tomcat 17 3.1....................................

More information

r3.dvi

r3.dvi 2012 3 / Lisp(2) 2012.4.19 1 Lisp 1.1 Lisp Lisp (1) (setq) (2) (3) setq defun (defun (... &aux...)...) ( ) ( nil ) [1]> (defun sisoku (x y &aux wa sa sho seki) (setq wa (+ x y)) (setq sa (- x y)) (setq

More information

4 2018 5 1 1 1 1.1.............................. 1 1.1.1....................... 1 1.1.2.................... 1 1.2...................... 1 1.2.1........................... 1 1.2.2............................

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

これを調べるには pwd というコマンドを使います pwd とは print working directory の頭文 字をとったもので これから意味は明らかですよね 演習 1 (a) pwd を実行した結果を書け なお 立ち上げた直後の作業用ディレクトリのことをホー ムディレクトリ もしくは単に

これを調べるには pwd というコマンドを使います pwd とは print working directory の頭文 字をとったもので これから意味は明らかですよね 演習 1 (a) pwd を実行した結果を書け なお 立ち上げた直後の作業用ディレクトリのことをホー ムディレクトリ もしくは単に Linux (Ubuntu) 基礎 Linux ではアプリのアイコンをクリックして起動する以外に ターミナル (Terminal, 端末 ) を起動し 起動し それそれに対してコマンドを打ち込むことで起動する ( このターミナルソフトは Windows の コマンドプロンプト に相当するが もっと拡張されている ) ここでコマンドの名前と意味 それに作業用ディレクトリなど Linux のファイルシステムについて学ぶ

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

平成12年度 計算機数学 火・1

平成12年度 計算機数学 火・1 1/8 平成 18 年度計算機数学火 1 サテライト演習室 PC 上での Linux への login PC 本体前面, ディスプレイの電源ボタンを入れる 数分間多数のメッセージが表示されるが その間はキーボードの操作を行わないこと Press Ctrl-Alt-Del の画面 が出たら指示にしたがってキーを押す 認証をおこないます画面 で アカウント名, パスワードを入力し,Vine Linux

More information

untitled

untitled osamu@sfc.keio.ac.jp CNS 18 Web http://www.sfc.wide.ad.jp/~three/itbasic05/ 6/6 7/11 1 ls -la t04xxx student -rwxr-xrx three student - rwx r-x r-x Windows GUI UNIX Windows chmod CNS (755) (ug+x) % chmod

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage

More information

スライド 1

スライド 1 スキルブレイン株式会社 ~ クラウドサービス時代における IT 人材育成 Ⅰ~ LPIC レベル 1 技術解説無料セミナー LPI-Japan アカデミック認定校スキルブレイン株式会社インストラクター河原木忠司 LPI-Japan 2013. All rights reserved. セミナー開催スケジュール LPIC レベル 1 技術解説セミナー にご参加頂きましてありがとうございます 今回の EXPO

More information

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は wisdom.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

More information

Emacs Ruby..

Emacs Ruby.. command line editor 27014533 2018 3 1 5 1.1................................... 5 1.2................................... 5 2 6 2.1 Emacs...................................... 6 2.2 Ruby.......................................

More information

2 TEX, TEX Donald Knuth 2 3 ( ) TEX ( ) , WWW 4 TEX (.tex,.dvi,.ps,.pdf ) 3 TEX ( ) ( ) 5 (.tex Windows, Mac, Unix, MS-DOS TEX TEX ( ) & METAFON

2 TEX, TEX Donald Knuth 2 3 ( ) TEX ( )  , WWW 4 TEX (.tex,.dvi,.ps,.pdf ) 3 TEX ( ) ( ) 5 (.tex Windows, Mac, Unix, MS-DOS TEX TEX ( ) & METAFON II 8 (1) TEX 2002 6 13 DTP TEX PDF 1 UNIX TEX TEX.cshrc 1.cshrc set path=(/usr/meiji/pub/lib/tetex/bin $path) TEX http://www.isc.meiji.ac.jp/~ae00050/ ( WWW myreport.tex (dvi ) isc-xas06% platex myreport.tex

More information

r3.dvi

r3.dvi / 94 2 (Lisp ) 3 ( ) 1994.5.16,1994.6.15 1 cons cons 2 >(cons a b) (A. B).? Lisp (S ) cons 2 car cdr n A B C D nil = (A B C D) nil nil A D E = (A (B C) D E) B C E = (A B C D. E) A B C D B = (A. B) A nil.

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

(CC Attribution) Lisp 2.1 (Gauche )

(CC Attribution) Lisp 2.1 (Gauche ) http://www.flickr.com/photos/dust/3603580129/ (CC Attribution) Lisp 2.1 (Gauche ) 2 2000EY-Office 3 4 Lisp 5 New York The lisps Sammy Tunis flickr lisp http://www.flickr.com/photos/dust/3603580129/ (CC

More information

02 01 02

02 01 02 02 01 02 Introduction 03 04 03 Usability 04 Usability & Technology Usability & Technology Technology 05 Color Scan 06 Paperless Paperless Fax Paperless 07 bizhub Document Output Copy & Print 08 Document

More information

シェルプログラミング コマンドをパイプでつなげるだけでは済まないような ある程度まとまった処理を複数のコマンドを制御構文を用いたりしてファイルとしたものを ( シェル ) スクリプトと呼ぶ シェルプログラム バッチなどともいう.bash_profile もシェルスクリプトなので このファイルを解読し

シェルプログラミング コマンドをパイプでつなげるだけでは済まないような ある程度まとまった処理を複数のコマンドを制御構文を用いたりしてファイルとしたものを ( シェル ) スクリプトと呼ぶ シェルプログラム バッチなどともいう.bash_profile もシェルスクリプトなので このファイルを解読し シェルプログラミング コマンドをパイプでつなげるだけでは済まないような ある程度まとまった処理を複数のコマンドを制御構文を用いたりしてファイルとしたものを ( シェル ) スクリプトと呼ぶ シェルプログラム バッチなどともいう.bash_profile もシェルスクリプトなので このファイルを解読したい 163 どのシェルを使うか? シェルスクリプトは どのシェル用のものかということで書き方 ( 文法

More information

B 20 Web

B 20 Web B 20 Web 0753018 21 1 29 1 1 6 2 8 3 UI 10 3.1........................ 10 3.2 Web............ 11 3.3......... 12 4 UI 14 4.1 Web....................... 15 4.2 Web........... 16 4.3 Web....................

More information

GNUPLOT 28 3 15 UNIX Microsoft-Windows GNUPLOT 4 GNUPLOT 1 GNUPLOT 2 2 3 2.1 UNIX.......................................... 3 2.2 Windows........................................ 4 2.3..................................

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

情報処理概論(第二日目)

情報処理概論(第二日目) 実習資料 Linux 入門講習会 九州大学情報基盤研究開発センター 注意 : この内容は najima.cc.kyushu-u.ac.jp の任意の ID で利用できますが, ファイルの削除等を含んでいるので各コマンドの意味を理解するまでは講習会用 ID で利用することをお勧めします. 1 実習 1 ログイン ファイル操作 ディレクトリの作成 ファイルの移動, コピー, 削除 ログアウト 2 ログイン

More information

2.4.7 \ AWK AWK......

2.4.7 \ AWK AWK...... AWK ogurisu@lagendra.s.kanazawa-u.ac.jp 2001 1 8 ( ): 1 2002 10 10 ( ): 1.1 AWK C Java AWK perl, ruby web AWK A4 A4 1 ( :p) 2 1 AWK 2 2 AWK 4 2.1 AWK............................... 5 2.2 AWK NR NF.....................................

More information