man command
BASH_BUILTINS(1)                                              BASH_BUILTINS(1)

NAME
       bash,  :,  .,  [, alias, bg, bind, break, builtin, caller, cd, command,
       compgen, complete, compopt,  continue,  declare,  dirs,  disown,  echo,
       enable,  eval,  exec, exit, export, false, fc, fg, getopts, hash, help,
       history, jobs, kill, let, local, logout, mapfile, popd, printf,  pushd,
       pwd,  read, readonly, return, set, shift, shopt, source, suspend, test,
       times, trap, true, type, typeset, ulimit, umask, unalias, unset, wait -
       bash built-in commands, see bash(1)

BASH BUILTIN COMMANDS
       Unless otherwise noted, each builtin command documented in this section
       as accepting options preceded by - accepts -- to signify the end of the
       options.   The  :, true, false, and test builtins do not accept options
       and do not treat -- specially.  The exit, logout, break, continue, let,
       and  shift builtins accept and process arguments beginning with - with‐
       out requiring --.  Other builtins that accept  arguments  but  are  not
       specified  as accepting options interpret arguments beginning with - as
       invalid options and require -- to prevent this interpretation.
       : [arguments]
              No effect; the command does nothing beyond  expanding  arguments
              and  performing any specified redirections.  A zero exit code is





pwd
/home/oinnoco



[oinnoco@oinnoco ~]$ mkdir embedded
[oinnoco@oinnoco ~]$ ls
Desktop    Downloads  Pictures  Templates  embedded
Documents  Music      Public    Videos     workspace
[oinnoco@oinnoco ~]$ cd embedded
[oinnoco@oinnoco embedded]$ ls >> ls_result.txt
[oinnoco@oinnoco embedded]$ dir
ls_result.txt
[oinnoco@oinnoco embedded]$ cat ls_result.txt
ls_result.txt
[oinnoco@oinnoco embedded]$ mv ls_result.txt renamed_result.txt
[oinnoco@oinnoco embedded]$ ls
renamed_result.txt
[oinnoco@oinnoco embedded]$ more
usage: more [-dflpcsu] [+linenum | +/pattern] name1 name2 ...
[oinnoco@oinnoco embedded]$ more renamed_result.txt
ls_result.txt
[oinnoco@oinnoco embedded]$ page renamed_result.txt
bash: page: command not found...
Install package 'tcllib' to provide command 'page'? [N/y]
 * Running...
 * Resolving dependencies...
 * Waiting for authentication...
 * Resolving dependencies...
 * Downloading packages...
 * Testing changes...
 * Installing packages...
 * Scanning applications...
/usr/bin/page: Bad argument "peg".
    Unable to locate configuration plugin "peg"

[oinnoco@oinnoco embedded]$ head
renamed_result.txt
renamed_result.txt
what is it?
what is it?
^Z
[4]+  Stopped                 head
[oinnoco@oinnoco embedded]$ head renamed_result.txt
ls_result.txt
[oinnoco@oinnoco embedded]$ tail renamed_result.txt
ls_result.txt
[oinnoco@oinnoco embedded]$ cp renamed_result.txt copied_file.txt
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  renamed_result.txt
[oinnoco@oinnoco embedded]$ vi copied_file.txt

[5]+  Stopped                 vi copied_file.txt
[oinnoco@oinnoco embedded]$ cat copied_file.txt
ls_result.txt
[oinnoco@oinnoco embedded]$ vi copied_file.txt
[oinnoco@oinnoco embedded]$ cat copied_file.txt
ls_result.txt
이 파일은 renamed_result.txt 파일을 복사한 파일입니다.
이렇게 vi 에디터를 이용해서 파일 내용을 수정할 수 있습니다.
vi 에디터는 콘솔에서 사용할 수 있는 에디터입니다.



[oinnoco@oinnoco embedded]$ mkdir target_dir
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  renamed_result.txt  target_dir
[oinnoco@oinnoco embedded]$ rmdir target_dir
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  renamed_result.txt
[oinnoco@oinnoco embedded]$ rm renamed_result.txt
[oinnoco@oinnoco embedded]$ ls
copied_file.txt




[oinnoco@oinnoco embedded]$ ls -l copied_file.txt
-rw-rw-r--. 1 oinnoco oinnoco 239  9월 15 02:28 copied_file.txt
[oinnoco@oinnoco embedded]$ chmod 777 copied_file.txt
[oinnoco@oinnoco embedded]$ ls -l copied_file.txt
-rwxrwxrwx. 1 oinnoco oinnoco 239  9월 15 02:28 copied_file.txt



[oinnoco@oinnoco embedded]$ cat copied_file.txt
ls_result.txt
이 파일은 renamed_result.txt 파일을 복사한 파일입니다.
이렇게 vi 에디터를 이용해서 파일 내용을 수정할 수 있습니다.
vi 에디터는 콘솔에서 사용할 수 있는 에디터입니다.
diff 명령어 확인을 위해서 내용을 수정합니다.
[oinnoco@oinnoco embedded]$ cat copied_file2.txt
ls_result.txt
이 파일은 renamed_result.txt 파일을 복사한 파일입니다.
이렇게 vi 에디터를 이용해서 파일 내용을 수정할 수 있습니다.
vi 에디터는 콘솔에서 사용할 수 있는 에디터입니다.

[oinnoco@oinnoco embedded]$ diff -i copied_file.txt copied_file2.txt
5c5
< diff 명령어 확인을 위해서 내용을 수정합니다.
---
>



[oinnoco@oinnoco embedded]$ find *.txt
copied_file.txt
copied_file2.txt
[oinnoco@oinnoco embedded]$ grep "에디터" copied_file.txt
이렇게 vi 에디터를 이용해서 파일 내용을 수정할 수 있습니다.
vi 에디터는 콘솔에서 사용할 수 있는 에디터입니다.




[oinnoco@oinnoco embedded]$ gzip -v *.*
copied_file.txt:     36.3% -- replaced with copied_file.txt.gz
copied_file2.txt:     32.6% -- replaced with copied_file2.txt.gz
[oinnoco@oinnoco embedded]$ ls
copied_file.txt.gz  copied_file2.txt.gz
[oinnoco@oinnoco embedded]$ gzip -d *.*
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  copied_file2.txt
[oinnoco@oinnoco embedded]$ gzip -v -9 *.*
copied_file.txt:     36.3% -- replaced with copied_file.txt.gz
copied_file2.txt:     32.6% -- replaced with copied_file2.txt.gz
[oinnoco@oinnoco embedded]$ gunzip *.*
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  copied_file2.txt
[oinnoco@oinnoco embedded]$ compress *.*
bash: compress: command not found...
Install package 'ncompress' to provide command 'compress'? [N/y]
 * Running...
 * Resolving dependencies...
 * Waiting for authentication...
 * Resolving dependencies...
 * Downloading packages...
 * Testing changes...
 * Installing packages...
 * Scanning applications...

[oinnoco@oinnoco embedded]$ compress *.*
copied_file.txt.Z: already has .Z suffix -- no change
copied_file2.txt.Z: already has .Z suffix -- no change
[oinnoco@oinnoco embedded]$ ls
copied_file.txt.Z  copied_file2.txt.Z
[oinnoco@oinnoco embedded]$ uncompress *.*
[oinnoco@oinnoco embedded]$ ls
copied_file.txt  copied_file2.txt



[oinnoco@oinnoco embedded]$ tar -cvf tarfile.tar *.*
copied_file.txt.gz
copied_file2.txt
[oinnoco@oinnoco embedded]$ ls
copied_file.txt.gz  copied_file2.txt  tarfile.tar
[oinnoco@oinnoco embedded]$ tar -tvf tarfile.tar
-rwxrwxrwx oinnoco/oinnoco 10240 2011-09-15 02:50 copied_file.txt.gz
-rwxrwxr-x oinnoco/oinnoco   239 2011-09-15 02:34 copied_file2.txt




[oinnoco@oinnoco Downloads]$ yum install amarok
Loaded plugins: langpacks, presto, refresh-packagekit
You need to be root to perform this command.
[oinnoco@oinnoco Downloads]$ su
암호:
[root@oinnoco Downloads]# yum install amarok
Loaded plugins: langpacks, presto, refresh-packagekit
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package amarok.i686 0:2.4.3-1.fc15 will be installed
--> Processing Dependency: amarok-libs(x86-32) = 2.4.3-1.fc15 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: amarok-utils = 2.4.3-1.fc15 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: kdebase-runtime >= 4.6.5 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libamarokpud.so.1 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkio.so.5 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libamarokcore.so.1 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkdnssd.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libmysqlclient.so.18(libmysqlclient_16) for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libplasma.so.3 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtCore.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtWebKit.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libmygpo-qt.so.1 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: qtscriptbindings(x86-32) for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: liblastfm.so.0 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkdecore.so.5 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libphonon.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtXml.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libampache_account_login.so for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libmysqld.so.0 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtGui.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtScript.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libthreadweaver.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkdeui.so.5 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkcmutils.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libamaroklib.so.1 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtSvg.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libsolid.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libkdewebkit.so.5 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtNetwork.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libloudmouth-1.so.0 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libamarok-sqlcollection.so.1 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libqjson.so.0 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libQtDBus.so.4 for package: amarok-2.4.3-1.fc15.i686
--> Processing Dependency: libmysqlclient.so.18 for package: amarok-2.4.3-1.fc15.i686
--> Running transaction check
---> Package amarok-libs.i686 0:2.4.3-1.fc15 will be installed
--> Processing Dependency: libtag-extras.so.1 for package: amarok-libs-2.4.3-1.fc15.i686
---> Package amarok-utils.i686 0:2.4.3-1.fc15 will be installed
---> Package kdebase-runtime.i686 0:4.6.5-1.fc15 will be installed
--> Processing Dependency: kde4-macros(api) = 2 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: kdebase-runtime-libs(x86-32) = 4.6.5-1.fc15 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: kdebase-runtime-flags = 4.6.5-1.fc15 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libmolletnetwork.so.4 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libnepomukcommon.so for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libattica.so.0 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libxine.so.1 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libknotifyplugin.so for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libkwalletbackend.so.4 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libsopranoclient.so.1 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: htdig for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libsoprano.so.4 for package: kdebase-runtime-4.6.5-1.fc15.i686
--> Processing Dependency: libsopranoserver.so.1 for package: kdebase-runtime-4.6.5-1.fc15.i686
---> Package kdelibs.i686 6:4.6.5-2.fc15 will be installed
--> Processing Dependency: shared-desktop-ontologies >= 0.4 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: strigi-libs(x86-32) >= 0.7.2 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: docbook-style-xsl >= 1.76 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: oxygen-icon-theme >= 4.6.2 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: dbusmenu-qt(x86-32) >= 0.6.3 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libqca.so.2 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libImath.so.6 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: kde-settings for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libXss.so.1 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libdbusmenu-qt.so.2 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libpolkit-qt-core-1.so.1 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libIlmImf.so.6 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libIex.so.6 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: docbook-dtds for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libHalf.so.6 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libstreams.so.0 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libIlmThread.so.6 for package: 6:kdelibs-4.6.5-2.fc15.i686
--> Processing Dependency: libstreamanalyzer.so.0 for package: 6:kdelibs-4.6.5-2.fc15.i686
---> Package liblastfm.i686 0:0.3.3-3.fc15 will be installed
---> Package libmygpo-qt.i686 0:1.0.3-1.fc15 will be installed
---> Package loudmouth.i686 0:1.4.3-8.fc15 will be installed
---> Package mysql-embedded.i686 0:5.5.14-2.fc15 will be installed
---> Package mysql-libs.i686 0:5.5.14-2.fc15 will be installed
---> Package phonon.i686 0:4.5.0-2.fc15 will be installed
--> Processing Dependency: phonon-backend(x86-32) >= 4.4 for package: phonon-4.5.0-2.fc15.i686
---> Package qjson.i686 0:0.7.1-4.fc15 will be installed
---> Package qt.i686 1:4.7.3-8.fc15 will be installed
---> Package qt-webkit.i686 1:4.7.3-8.fc15 will be installed
---> Package qt-x11.i686 1:4.7.3-8.fc15 will be installed
--> Processing Dependency: libmng.so.1 for package: 1:qt-x11-4.7.3-8.fc15.i686
---> Package qtscriptbindings.i686 0:0.1.0-14.fc15 will be installed
--> Running transaction check
---> Package OpenEXR-libs.i686 0:1.7.0-2.fc15 will be installed
---> Package attica.i686 0:0.2.0-1.fc15 will be installed
---> Package dbusmenu-qt.i686 0:0.6.3-3.fc15 will be installed
---> Package docbook-dtds.noarch 0:1.0-54.fc15 will be installed
--> Processing Dependency: sgml-common for package: docbook-dtds-1.0-54.fc15.noarch
---> Package docbook-style-xsl.noarch 0:1.76.1-2.fc15 will be installed
---> Package htdig.i686 4:3.2.0-0.11.b6.fc15 will be installed
---> Package ilmbase.i686 0:1.0.2-3.fc15 will be installed
---> Package kde-filesystem.i686 0:4-38.fc15 will be installed
---> Package kde-settings.noarch 0:4.6-10.fc15 will be installed
---> Package kdebase-runtime-flags.noarch 0:4.6.5-1.fc15 will be installed
---> Package kdebase-runtime-libs.i686 0:4.6.5-1.fc15 will be installed
--> Processing Dependency: kdepimlibs(x86-32) >= 4.6.5 for package: kdebase-runtime-libs-4.6.5-1.fc15.i686
--> Processing Dependency: libssh.so.4 for package: kdebase-runtime-libs-4.6.5-1.fc15.i686
--> Processing Dependency: cagibi for package: kdebase-runtime-libs-4.6.5-1.fc15.i686
--> Processing Dependency: libslp.so.1 for package: kdebase-runtime-libs-4.6.5-1.fc15.i686
---> Package libXScrnSaver.i686 0:1.2.1-2.fc15 will be installed
---> Package libmng.i686 0:1.0.10-5.fc15 will be installed
---> Package oxygen-icon-theme.noarch 0:4.6.5-1.fc15 will be installed
---> Package phonon-backend-xine.i686 0:4.4.4-3.fc15 will be installed
---> Package polkit-qt.i686 0:0.99.0-2.fc15 will be installed
---> Package qca2.i686 0:2.0.3-2.fc15 will be installed
---> Package shared-desktop-ontologies.noarch 0:0.6.0-1.fc15 will be installed
---> Package soprano.i686 0:2.6.0-2.fc15 will be installed
--> Processing Dependency: libiodbc.so.2 for package: soprano-2.6.0-2.fc15.i686
--> Processing Dependency: libclucene.so.0 for package: soprano-2.6.0-2.fc15.i686
--> Processing Dependency: redland-virtuoso for package: soprano-2.6.0-2.fc15.i686
--> Processing Dependency: virtuoso-opensource for package: soprano-2.6.0-2.fc15.i686
---> Package strigi-libs.i686 0:0.7.2-8.fc15 will be installed
---> Package taglib-extras.i686 0:1.0.1-2.fc15 will be installed
---> Package xine-lib.i686 0:1.1.19-6.fc15 will be installed
--> Running transaction check
---> Package cagibi.i686 0:0.1.1-3.fc15 will be installed
---> Package clucene-core.i686 0:0.9.21b-3.fc15 will be installed
---> Package kdepimlibs.i686 0:4.6.5-1.fc15 will be installed
---> Package libiodbc.i686 0:3.52.7-2.fc15 will be installed
---> Package libssh.i686 0:0.4.8-2.fc15 will be installed
---> Package openslp.i686 0:1.2.1-15.fc15 will be installed
---> Package redland-virtuoso.i686 0:1.0.12-3.fc15 will be installed
---> Package sgml-common.noarch 0:0.6.3-34.fc15 will be installed
---> Package virtuoso-opensource.i686 1:6.1.2-3.fc15 will be installed
--> Finished Dependency Resolution
--> Running transaction check
---> Package kde-l10n-Korean.noarch 0:4.6.5-1.fc15 will be installed
--> Processing Dependency: kde-l10n = 4.6.5-1.fc15 for package: kde-l10n-Korean-4.6.5-1.fc15.noarch
--> Running transaction check
---> Package kde-l10n.noarch 0:4.6.5-1.fc15 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package                     Arch     Version                   Repository
                                                                           Size
================================================================================
Installing:
 amarok                      i686     2.4.3-1.fc15              updates    11 M
 kde-l10n-Korean             noarch   4.6.5-1.fc15              updates   1.3 M
Installing for dependencies:
 OpenEXR-libs                i686     1.7.0-2.fc15              fedora    217 k
 amarok-libs                 i686     2.4.3-1.fc15              updates   2.9 M
 amarok-utils                i686     2.4.3-1.fc15              updates   129 k
 attica                      i686     0.2.0-1.fc15              fedora    167 k
 cagibi                      i686     0.1.1-3.fc15              fedora     56 k
 clucene-core                i686     0.9.21b-3.fc15            fedora    294 k
 dbusmenu-qt                 i686     0.6.3-3.fc15              fedora     76 k
 docbook-dtds                noarch   1.0-54.fc15               fedora    217 k
 docbook-style-xsl           noarch   1.76.1-2.fc15             fedora    2.3 M
 htdig                       i686     4:3.2.0-0.11.b6.fc15      fedora    811 k
 ilmbase                     i686     1.0.2-3.fc15              fedora     75 k
 kde-filesystem              i686     4-38.fc15                 fedora     47 k
 kde-l10n                    noarch   4.6.5-1.fc15              updates    17 k
 kde-settings                noarch   4.6-10.fc15               fedora     43 k
 kdebase-runtime             i686     4.6.5-1.fc15              updates   5.7 M
 kdebase-runtime-flags       noarch   4.6.5-1.fc15              updates   133 k
 kdebase-runtime-libs        i686     4.6.5-1.fc15              updates   1.1 M
 kdelibs                     i686     6:4.6.5-2.fc15            updates    12 M
 kdepimlibs                  i686     4.6.5-1.fc15              updates   2.2 M
 libXScrnSaver               i686     1.2.1-2.fc15              fedora     21 k
 libiodbc                    i686     3.52.7-2.fc15             fedora    165 k
 liblastfm                   i686     0.3.3-3.fc15              fedora    151 k
 libmng                      i686     1.0.10-5.fc15             fedora    172 k
 libmygpo-qt                 i686     1.0.3-1.fc15              updates    68 k
 libssh                      i686     0.4.8-2.fc15              fedora    105 k
 loudmouth                   i686     1.4.3-8.fc15              fedora     73 k
 mysql-embedded              i686     5.5.14-2.fc15             updates   2.7 M
 mysql-libs                  i686     5.5.14-2.fc15             updates   686 k
 openslp                     i686     1.2.1-15.fc15             fedora     57 k
 oxygen-icon-theme           noarch   4.6.5-1.fc15              updates    28 M
 phonon                      i686     4.5.0-2.fc15              fedora    187 k
 phonon-backend-xine         i686     4.4.4-3.fc15              fedora    161 k
 polkit-qt                   i686     0.99.0-2.fc15             fedora     70 k
 qca2                        i686     2.0.3-2.fc15              fedora    428 k
 qjson                       i686     0.7.1-4.fc15              fedora     65 k
 qt                          i686     1:4.7.3-8.fc15            updates   4.2 M
 qt-webkit                   i686     1:4.7.3-8.fc15            updates   5.3 M
 qt-x11                      i686     1:4.7.3-8.fc15            updates    12 M
 qtscriptbindings            i686     0.1.0-14.fc15             fedora    3.8 M
 redland-virtuoso            i686     1.0.12-3.fc15             fedora     26 k
 sgml-common                 noarch   0.6.3-34.fc15             fedora     49 k
 shared-desktop-ontologies   noarch   0.6.0-1.fc15              fedora    105 k
 soprano                     i686     2.6.0-2.fc15              fedora    619 k
 strigi-libs                 i686     0.7.2-8.fc15              fedora    428 k
 taglib-extras               i686     1.0.1-2.fc15              fedora     31 k
 virtuoso-opensource         i686     1:6.1.2-3.fc15            fedora    3.1 M
 xine-lib                    i686     1.1.19-6.fc15             fedora    2.2 M

Transaction Summary
================================================================================
Install      49 Package(s)

Total download size: 106 M
Installed size: 288 M
Is this ok [y/N]: y
Downloading Packages:
Setting up and reading Presto delta metadata
Processing delta metadata
Package(s) data still to download: 106 M
http://ftp.linux.org.tr/fedora/releases/15/Everything/i386/os/Packages/OpenEXR-libs-1.7.0-2.fc15.i686.rpm: [Errno 14] HTTP Error 403 - Forbidden : http://ftp.linux.org.tr/fedora/releases/15/Everything/i386/os/Packages/OpenEXR-libs-1.7.0-2.fc15.i686.rpm
Trying other mirror.
(1/49): OpenEXR-libs-1.7.0-2.fc15.i686.rpm               | 217 kB     00:00    
(2/49): amarok-2.4.3-1.fc15.i686.rpm                     |  11 MB     00:02    
(3/49): amarok-libs-2.4.3-1.fc15.i686.rpm                | 2.9 MB     00:00    
(4/49): amarok-utils-2.4.3-1.fc15.i686.rpm               | 129 kB     00:00    
(5/49): attica-0.2.0-1.fc15.i686.rpm                     | 167 kB     00:00    
(6/49): cagibi-0.1.1-3.fc15.i686.rpm                     |  56 kB     00:00    
(7/49): clucene-core-0.9.21b-3.fc15.i686.rpm             | 294 kB     00:00    
(8/49): dbusmenu-qt-0.6.3-3.fc15.i686.rpm                |  76 kB     00:00    
(9/49): docbook-dtds-1.0-54.fc15.noarch.rpm              | 217 kB     00:00    
(10/49): docbook-style-xsl-1.76.1-2.fc15.noarch.rpm      | 2.3 MB     00:02    
(11/49): htdig-3.2.0-0.11.b6.fc15.i686.rpm               | 811 kB     00:00    
(12/49): ilmbase-1.0.2-3.fc15.i686.rpm                   |  75 kB     00:00    
(13/49): kde-filesystem-4-38.fc15.i686.rpm               |  47 kB     00:00    
(14/49): kde-l10n-4.6.5-1.fc15.noarch.rpm                |  17 kB     00:00    
(15/49): kde-l10n-Korean-4.6.5-1.fc15.noarch.rpm         | 1.3 MB     00:00    
(16/49): kde-settings-4.6-10.fc15.noarch.rpm             |  43 kB     00:00    
(17/49): kdebase-runtime-4.6.5-1.fc15.i686.rpm           | 5.7 MB     00:01    
(18/49): kdebase-runtime-flags-4.6.5-1.fc15.noarch.rpm   | 133 kB     00:00    
(19/49): kdebase-runtime-libs-4.6.5-1.fc15.i686.rpm      | 1.1 MB     00:00    
(20/49): kdelibs-4.6.5-2.fc15.i686.rpm                   |  12 MB     00:03    
(21/49): kdepimlibs-4.6.5-1.fc15.i686.rpm                | 2.2 MB     00:01    
(22/49): libXScrnSaver-1.2.1-2.fc15.i686.rpm             |  21 kB     00:00    
(23/49): libiodbc-3.52.7-2.fc15.i686.rpm                 | 165 kB     00:00    
(24/49): liblastfm-0.3.3-3.fc15.i686.rpm                 | 151 kB     00:00    
(25/49): libmng-1.0.10-5.fc15.i686.rpm                   | 172 kB     00:00    
(26/49): libmygpo-qt-1.0.3-1.fc15.i686.rpm               |  68 kB     00:00    
(27/49): libssh-0.4.8-2.fc15.i686.rpm                    | 105 kB     00:00    
(28/49): loudmouth-1.4.3-8.fc15.i686.rpm                 |  73 kB     00:00    
(29/49): mysql-embedded-5.5.14-2.fc15.i686.rpm           | 2.7 MB     00:01    
(30/49): mysql-libs-5.5.14-2.fc15.i686.rpm               | 686 kB     00:00    
(31/49): openslp-1.2.1-15.fc15.i686.rpm                  |  57 kB     00:00    
(32/49): oxygen-icon-theme-4.6.5-1.fc15.noarch.rpm       |  28 MB     00:14    
(33/49): phonon-4.5.0-2.fc15.i686.rpm                    | 187 kB     00:00    
(34/49): phonon-backend-xine-4.4.4-3.fc15.i686.rpm       | 161 kB     00:00    
(35/49): polkit-qt-0.99.0-2.fc15.i686.rpm                |  70 kB     00:00    
(36/49): qca2-2.0.3-2.fc15.i686.rpm                      | 428 kB     00:00    
(37/49): qjson-0.7.1-4.fc15.i686.rpm                     |  65 kB     00:00    
(38/49): qt-4.7.3-8.fc15.i686.rpm                        | 4.2 MB     00:01    
(39/49): qt-webkit-4.7.3-8.fc15.i686.rpm                 | 5.3 MB     00:02    
(40/49): qt-x11-4.7.3-8.fc15.i686.rpm                    |  12 MB     00:06    
(41/49): qtscriptbindings-0.1.0-14.fc15.i686.rpm         | 3.8 MB     00:03    
(42/49): redland-virtuoso-1.0.12-3.fc15.i686.rpm         |  26 kB     00:00    
(43/49): sgml-common-0.6.3-34.fc15.noarch.rpm            |  49 kB     00:00    
(44/49): shared-desktop-ontologies-0.6.0-1.fc15.noarch.r | 105 kB     00:00    
(45/49): soprano-2.6.0-2.fc15.i686.rpm                   | 619 kB     00:00    
(46/49): strigi-libs-0.7.2-8.fc15.i686.rpm               | 428 kB     00:00    
(47/49): taglib-extras-1.0.1-2.fc15.i686.rpm             |  31 kB     00:00    
(48/49): virtuoso-opensource-6.1.2-3.fc15.i686.rpm       | 3.1 MB     00:02    
(49/49): xine-lib-1.1.19-6.fc15.i686.rpm                 | 2.2 MB     00:01    
--------------------------------------------------------------------------------
Total                                           1.7 MB/s | 106 MB     01:01    
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : 1:qt-4.7.3-8.fc15.i686                                      1/49
  Installing : kde-filesystem-4-38.fc15.i686                               2/49
  Installing : ilmbase-1.0.2-3.fc15.i686                                   3/49
  Installing : libiodbc-3.52.7-2.fc15.i686                                 4/49
  Installing : OpenEXR-libs-1.7.0-2.fc15.i686                              5/49
  Installing : liblastfm-0.3.3-3.fc15.i686                                 6/49
  Installing : attica-0.2.0-1.fc15.i686                                    7/49
  Installing : qjson-0.7.1-4.fc15.i686                                     8/49
  Installing : taglib-extras-1.0.1-2.fc15.i686                             9/49
  Installing : libmng-1.0.10-5.fc15.i686                                  10/49
  Installing : 1:qt-x11-4.7.3-8.fc15.i686                                 11/49
  Installing : xine-lib-1.1.19-6.fc15.i686                                12/49
  Installing : clucene-core-0.9.21b-3.fc15.i686                           13/49
  Installing : kde-settings-4.6-10.fc15.noarch                            14/49
  Installing : kde-l10n-4.6.5-1.fc15.noarch                               15/49
  Installing : sgml-common-0.6.3-34.fc15.noarch                           16/49
  Installing : docbook-dtds-1.0-54.fc15.noarch                            17/49
  Installing : docbook-style-xsl-1.76.1-2.fc15.noarch                     18/49
  Installing : shared-desktop-ontologies-0.6.0-1.fc15.noarch              19/49
  Installing : oxygen-icon-theme-4.6.5-1.fc15.noarch                      20/49
  Installing : strigi-libs-0.7.2-8.fc15.i686                              21/49
  Installing : phonon-4.5.0-2.fc15.i686                                   22/49
  Installing : phonon-backend-xine-4.4.4-3.fc15.i686                      23/49
  Installing : 1:qt-webkit-4.7.3-8.fc15.i686                              24/49
  Installing : qtscriptbindings-0.1.0-14.fc15.i686                        25/49
  Installing : polkit-qt-0.99.0-2.fc15.i686                               26/49
  Installing : dbusmenu-qt-0.6.3-3.fc15.i686                              27/49
  Installing : libmygpo-qt-1.0.3-1.fc15.i686                              28/49
  Installing : redland-virtuoso-1.0.12-3.fc15.i686                        29/49
  Installing : 1:virtuoso-opensource-6.1.2-3.fc15.i686                    30/49
  Installing : soprano-2.6.0-2.fc15.i686                                  31/49
  Installing : cagibi-0.1.1-3.fc15.i686                                   32/49
  Installing : qca2-2.0.3-2.fc15.i686                                     33/49
  Installing : loudmouth-1.4.3-8.fc15.i686                                34/49
  Installing : libssh-0.4.8-2.fc15.i686                                   35/49
  Installing : libXScrnSaver-1.2.1-2.fc15.i686                            36/49
  Installing : 6:kdelibs-4.6.5-2.fc15.i686                                37/49
  Installing : kdepimlibs-4.6.5-1.fc15.i686                               38/49
  Installing : amarok-utils-2.4.3-1.fc15.i686                             39/49
  Installing : 4:htdig-3.2.0-0.11.b6.fc15.i686                            40/49
  Installing : mysql-embedded-5.5.14-2.fc15.i686                          41/49
  Installing : openslp-1.2.1-15.fc15.i686                                 42/49
  Installing : kdebase-runtime-libs-4.6.5-1.fc15.i686                     43/49
  Installing : kdebase-runtime-flags-4.6.5-1.fc15.noarch                  44/49
  Installing : kdebase-runtime-4.6.5-1.fc15.i686                          45/49
  Installing : mysql-libs-5.5.14-2.fc15.i686                              46/49
  Installing : kde-l10n-Korean-4.6.5-1.fc15.noarch                        47/49
  Installing : amarok-libs-2.4.3-1.fc15.i686                              48/49
  Installing : amarok-2.4.3-1.fc15.i686                                   49/49
 
Installed:
  amarok.i686 0:2.4.3-1.fc15        kde-l10n-Korean.noarch 0:4.6.5-1.fc15      

Dependency Installed:
  OpenEXR-libs.i686 0:1.7.0-2.fc15                                             
  amarok-libs.i686 0:2.4.3-1.fc15                                              
  amarok-utils.i686 0:2.4.3-1.fc15                                             
  attica.i686 0:0.2.0-1.fc15                                                   
  cagibi.i686 0:0.1.1-3.fc15                                                   
  clucene-core.i686 0:0.9.21b-3.fc15                                           
  dbusmenu-qt.i686 0:0.6.3-3.fc15                                              
  docbook-dtds.noarch 0:1.0-54.fc15                                            
  docbook-style-xsl.noarch 0:1.76.1-2.fc15                                     
  htdig.i686 4:3.2.0-0.11.b6.fc15                                              
  ilmbase.i686 0:1.0.2-3.fc15                                                  
  kde-filesystem.i686 0:4-38.fc15                                              
  kde-l10n.noarch 0:4.6.5-1.fc15                                               
  kde-settings.noarch 0:4.6-10.fc15                                            
  kdebase-runtime.i686 0:4.6.5-1.fc15                                          
  kdebase-runtime-flags.noarch 0:4.6.5-1.fc15                                  
  kdebase-runtime-libs.i686 0:4.6.5-1.fc15                                     
  kdelibs.i686 6:4.6.5-2.fc15                                                  
  kdepimlibs.i686 0:4.6.5-1.fc15                                               
  libXScrnSaver.i686 0:1.2.1-2.fc15                                            
  libiodbc.i686 0:3.52.7-2.fc15                                                
  liblastfm.i686 0:0.3.3-3.fc15                                                
  libmng.i686 0:1.0.10-5.fc15                                                  
  libmygpo-qt.i686 0:1.0.3-1.fc15                                              
  libssh.i686 0:0.4.8-2.fc15                                                   
  loudmouth.i686 0:1.4.3-8.fc15                                                
  mysql-embedded.i686 0:5.5.14-2.fc15                                          
  mysql-libs.i686 0:5.5.14-2.fc15                                              
  openslp.i686 0:1.2.1-15.fc15                                                 
  oxygen-icon-theme.noarch 0:4.6.5-1.fc15                                      
  phonon.i686 0:4.5.0-2.fc15                                                   
  phonon-backend-xine.i686 0:4.4.4-3.fc15                                      
  polkit-qt.i686 0:0.99.0-2.fc15                                               
  qca2.i686 0:2.0.3-2.fc15                                                     
  qjson.i686 0:0.7.1-4.fc15                                                    
  qt.i686 1:4.7.3-8.fc15                                                       
  qt-webkit.i686 1:4.7.3-8.fc15                                                
  qt-x11.i686 1:4.7.3-8.fc15                                                   
  qtscriptbindings.i686 0:0.1.0-14.fc15                                        
  redland-virtuoso.i686 0:1.0.12-3.fc15                                        
  sgml-common.noarch 0:0.6.3-34.fc15                                           
  shared-desktop-ontologies.noarch 0:0.6.0-1.fc15                              
  soprano.i686 0:2.6.0-2.fc15                                                  
  strigi-libs.i686 0:0.7.2-8.fc15                                              
  taglib-extras.i686 0:1.0.1-2.fc15                                            
  virtuoso-opensource.i686 1:6.1.2-3.fc15                                      
  xine-lib.i686 0:1.1.19-6.fc15                                                

Complete!



[root@oinnoco Downloads]# rpm -qa | grep jre
jre-1.7.0-fcs.i586
[root@oinnoco Downloads]# rpm -qi jre-1.7.0-fcs.i586
Name        : jre
Version     : 1.7.0
Release     : fcs
Architecture: i586
Install Date:
Group       : Development/Tools
Size        : 48565502
License     : http://java.com/license
Signature   : (none)
Source RPM  : jre-1.7.0-fcs.src.rpm
Build Date  :
Build Host  : jdk7-lin2-i586.us.oracle.com
Relocations : /usr/java
Packager    : Java Software <jre-comments@java.sun.com>
Vendor      : Sun Microsystems, Inc.
URL         : URL_REF
Summary     : Java(TM) Platform Standard Edition Runtime Environment
Description :
The Java Platform Standard Edition Runtime Environment (JRE) contains
everything necessary to run applets and applications designed for the
Java platform. This includes the Java virtual machine, plus the Java
platform classes and supporting files.

The JRE is freely redistributable, per the terms of the included license.


[root@oinnoco Downloads]# rpm -i flash-plugin-10.3.183.7-release.i386.rpm




[root@oinnoco /]# cd mnt
[root@oinnoco mnt]# ls
boot  home
[root@oinnoco mnt]# mkdir cdrom
[root@oinnoco mnt]# cd ..
[root@oinnoco /]# mount /dev/cdrom /mnt/cdrom
mount: block device /dev/sr0 is write-protected, mounting read-only
[root@oinnoco /]# cd mnt
[root@oinnoco mnt]# ls
boot  cdrom  home
[root@oinnoco mnt]# cd cdrom
[root@oinnoco cdrom]# ls
21세기세종계획_Disc1.exe  Data  autorun.inf  lingo.ini  link.exe  open.ini




[oinnoco@oinnoco embedded]$ ln -s /usr/include/stdio.h stdio.h
[oinnoco@oinnoco embedded]$ ls
copied_file.txt.gz  copied_file2.txt  df_included_dev.txt  stdio.h  tarfile.tar
[oinnoco@oinnoco embedded]$ ls -l stdio.h
lrwxrwxrwx. 1 oinnoco oinnoco 20  9월 15 03:34 stdio.h -> /usr/include/stdio.h


[root@oinnoco cdrom]# du
148    ./Data/01_사업개요
35570    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/원시_말뭉치/HWP
29582    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/원시_말뭉치/TXT
65154    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/원시_말뭉치
139600    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/형태분석_말뭉치/HWP
121800    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/형태분석_말뭉치/TXT
261402    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치/형태분석_말뭉치
326558    ./Data/02_말뭉치/병렬/한영병렬/한영병렬_말뭉치
327066    ./Data/02_말뭉치/병렬/한영병렬
8430    ./Data/02_말뭉치/병렬/한일병렬/한일병렬_말뭉치/원시_말뭉치
1660    ./Data/02_말뭉치/병렬/한일병렬/한일병렬_말뭉치/형태분석_말뭉치
10092    ./Data/02_말뭉치/병렬/한일병렬/한일병렬_말뭉치
414    ./Data/02_말뭉치/병렬/한일병렬/한일병렬_말뭉치_구축지침및주의사항
11076    ./Data/02_말뭉치/병렬/한일병렬
338144    ./Data/02_말뭉치/병렬
97210    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/미정제_원시_말뭉치/HWP
108434    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/미정제_원시_말뭉치/TXT
205646    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/미정제_원시_말뭉치
13484    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/정제_원시_말뭉치/HWP
7582    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/정제_원시_말뭉치/TXT
21068    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치/정제_원시_말뭉치
226716    ./Data/02_말뭉치/역사/역사자료_말뭉치/원시_말뭉치
30658    ./Data/02_말뭉치/역사/역사자료_말뭉치/형태분석_말뭉치/HWP
29972    ./Data/02_말뭉치/역사/역사자료_말뭉치/형태분석_말뭉치/TXT
60632    ./Data/02_말뭉치/역사/역사자료_말뭉치/형태분석_말뭉치
287350    ./Data/02_말뭉치/역사/역사자료_말뭉치
292092    ./Data/02_말뭉치/역사
22166    ./Data/02_말뭉치/현대/구어/현대구어_말뭉치/원시_말뭉치
97098    ./Data/02_말뭉치/현대/구어/현대구어_말뭉치/형태분석_말뭉치
119266    ./Data/02_말뭉치/현대/구어/현대구어_말뭉치
125108    ./Data/02_말뭉치/현대/구어
210    ./Data/02_말뭉치/현대/문어/말뭉치_구축지침
34966    ./Data/02_말뭉치/현대/문어/현대문어_말뭉치/구문분석_말뭉치
350908    ./Data/02_말뭉치/현대/문어/현대문어_말뭉치/원시_말뭉치
807690    ./Data/02_말뭉치/현대/문어/현대문어_말뭉치/형태분석_말뭉치
754964    ./Data/02_말뭉치/현대/문어/현대문어_말뭉치/형태의미분석_말뭉치
1948530    ./Data/02_말뭉치/현대/문어/현대문어_말뭉치
1958028    ./Data/02_말뭉치/현대/문어
2083138    ./Data/02_말뭉치/현대
2713376    ./Data/02_말뭉치
80    ./Data/03_말뭉치_활용프로그램/지능형_형태소분석기/지능형_형태소분석기/지능형 형태소 분석기/data
15628    ./Data/03_말뭉치_활용프로그램/지능형_형태소분석기/지능형_형태소분석기/지능형 형태소 분석기
15630    ./Data/03_말뭉치_활용프로그램/지능형_형태소분석기/지능형_형태소분석기
16010    ./Data/03_말뭉치_활용프로그램/지능형_형태소분석기
206248    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/검색용_한영병렬_말뭉치/원시_말뭉치/원시 말뭉치
206250    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/검색용_한영병렬_말뭉치/원시_말뭉치
11498    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/검색용_한영병렬_말뭉치/형태분석_말뭉치/형태 분석 말뭉치
11500    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/검색용_한영병렬_말뭉치/형태분석_말뭉치
217752    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/검색용_한영병렬_말뭉치
794    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/한영병렬_말뭉치용례검색기/한영 병렬 말뭉치 용례 검색기
796    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기/한영병렬_말뭉치용례검색기
224866    ./Data/03_말뭉치_활용프로그램/한영병렬_말뭉치용례검색기
80    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(색인)/글잡이II(색인)/data
9956    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(색인)/글잡이II(색인)
9958    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(색인)
456    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/manual/images
806    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/manual
490    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Spoken/Quasi
410    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Spoken/Trans
902    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Spoken
1048    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Art
952    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Docu
856    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Educate
1998    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/General
634    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Human
1246    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Imaginar
1676    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Life
744    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/News
612    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Science
886    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written/Society
10654    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus/Written
11558    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)/sample-corpus
14280    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)/글잡이II(직접)
14282    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II/글잡이II(직접)
24988    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/글잡이II
17620    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기/한마루
42610    ./Data/03_말뭉치_활용프로그램/현대문어_말뭉치용례검색기
298204    ./Data/03_말뭉치_활용프로그램
3011730    ./Data
3031040    .



[root@oinnoco cdrom]# df
Filesystem           1K-blocks      Used Available Use% Mounted on
rootfs                51606140   3988092  47093972   8% /
udev                   1023744         0   1023744   0% /dev
tmpfs                  1031152       448   1030704   1% /dev/shm
tmpfs                  1031152       704   1030448   1% /run
/dev/mapper/vg_oinnoco-lv_root
                      51606140   3988092  47093972   8% /
tmpfs                  1031152         0   1031152   0% /sys/fs/cgroup
tmpfs                  1031152         0   1031152   0% /media
/dev/sda1               495844     70576    399668  16% /boot
/dev/mapper/vg_oinnoco-lv_home
                     173814544   2188296 162796912   2% /home
/dev/mapper/vg_oinnoco-lv_root
                      51606140   3988092  47093972   8% /tmp
/dev/mapper/vg_oinnoco-lv_root
                      51606140   3988092  47093972   8% /var/tmp
/dev/mapper/vg_oinnoco-lv_home
                     173814544   2188296 162796912   2% /home
/dev/sr0               3045468   3045468         0 100% /media/21세기세종계획_Disc1
/dev/sr0               3045468   3045468         0 100% /mnt/cdrom



[oinnoco@oinnoco Downloads]$ chsh
Changing shell for oinnoco.
암호:
New shell [/bin/bash]: /bin/sh
Shell changed.


[oinnoco@oinnoco embedded]$ df | grep /dev/ > df_included_dev.txt
[oinnoco@oinnoco embedded]$ ls
copied_file.txt.gz  copied_file2.txt  df_included_dev.txt  tarfile.tar

'Courses' 카테고리의 다른 글

[소공] 실습 3주차  (0) 2011.09.14
[소공] 11.09.06  (0) 2011.09.10
[소공] 실습 1주차  (0) 2011.08.31
[소공] 수업 계획  (0) 2011.08.30

+ Recent posts