안드로이드에서 EditText와 같은 뷰를 가진 액티비티가 시작되면 소프트 키보드가 항상 보이는 채로 시작된다.

키보드가 보이지 않는 채로 액티비티를 시작하고 싶다면

Activity를 상속받은 클래스에서 onResume 메서드를 아래와 같이 오버라이딩 한다.

@Override protected void onResume(){     super.onResume();     getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN); }


만약 특정 순간(이벤트 처럼) 후에 키보드를 감추거나 보이게 할 때는 아래와 같이 하면 된다.

// InputMethodManager를 가져옴 InputMethodManager imm =     (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); // 감출 때 imm.hideSoftInputFromWindow(ViewName.getWindowToken(), 0); // 보이게 할 때 imm.showSoftInput(ViewName, 0);



+ 2012.06.10 추가

애초에 포커스를 EditText로 주지 않는 방법도 있다.

해당 액티비티의 레이아웃 파일에서 레이아웃에 focusable, focusableInTouchMode 애트리뷰트를 추가하고

값을 true로 주고 requestFocus 태그를 추가한다.


<LinearLayout

        ... 다른 속성들

        android:focusable="true"

        android:focusableInTouchMode="true">

        <requestFocus/>


       ...

</LinearLayout>


이는 포커스를 가질 수 없는 레이아웃에 강제로 포커스를 가지게 하고 포커스를 줌으로써

EditText가 포커스를 가지지 않게하여 소프트 키보드를 보이지 않게 하는 방법이다.

구글링을 해서 소스코드를 검색하다 보면 StackOverflow 사이트에 괜찮은 내용이 꽤나 많다.

레퍼런스를 보는 것도 괜찮지만, 아무래도 사용자들의 의견이 오간 곳이기도 하니 질도 좋고 평가도 되어있다.


// 14dp를 픽셀 단위로 변환, 14에는 원하는 dp를 넣으면 됨.
Resources r = getResources();
float px = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 14, r.getDisplayMetrics());


다른 방법은

/**
 * This method convets dp unit to equivalent device specific value in pixels. 
 * 
 * @param dp A value in dp(Device independent pixels) unit. Which we need to convert into pixels
 * @param context Context to get resources and device specific display metrics
 * @return A float value to represent Pixels equivalent to dp according to device
 */
public static float convertDpToPixel(float dp,Context context){
    Resources resources = context.getResources();
    DisplayMetrics metrics = resources.getDisplayMetrics();
    float px = dp * (metrics.densityDpi/160f);
    return px;
}
/**
 * This method converts device specific pixels to device independent pixels.
 * 
 * @param px A value in px (pixels) unit. Which we need to convert into db
 * @param context Context to get resources and device specific display metrics
 * @return A float value to represent db equivalent to px value
 */
public static float convertPixelsToDp(float px,Context context){
    Resources resources = context.getResources();
    DisplayMetrics metrics = resources.getDisplayMetrics();
    float dp = px / (metrics.densityDpi / 160f);
    return dp;

}


어느 블로그에서 필터링 없이 사용했는데 동작하지 않던 소스..

private static final float DEFAULT_HDIP_DENSITY_SCALE = 1.5f;

	/**
	 * 픽셀단위를 현재 디스플레이 화면에 비례한 크기로 반환합니다.
	 * 
	 * @param pixel
	 *            픽셀
	 * @return 변환된 값 (DP)
	 */
	public int DPFromPixel(int pixel) {
		float scale = getResources().getDisplayMetrics().density;

		return (int) (pixel / DEFAULT_HDIP_DENSITY_SCALE * scale);
	}

	/**
	 * 현재 디스플레이 화면에 비례한 DP단위를 픽셀 크기로 반환합니다.
	 * 
	 * @param DP
	 *            픽셀
	 * @return 변환된 값 (pixel)
	 */
	public int pixelFromDP(int DP) {
		float scale = getResources().getDisplayMetrics().density;

		return (int) (DP / scale * DEFAULT_HDIP_DENSITY_SCALE);
	}


예전에 쓴 일기들을 읽다가,
"모난 돌이 정맞는다." 라는 옛말에 대한 반항으로 몇 마디 적어놓은 걸 봤다.

정을 내리쳐 모난 돌을 깎으려 말고
살을 덧붙여 보듬어 주어라.

나는 지금껏 내 소신대로, 신념대로 잘 살고 있는가 모르겠다.
너무 먼 이상을 신념이랍시고 가지고 있다.

좌우명이었던 바라기보다 노력하자. 이 말도 지금껏 지켜지지 않고 있다.
그렇다고 지금을 이상에 가까워지려 하고 있지도 않고,
여전히 게을러먹었다.

대체 남이 보는 나는 어떻기에 내가 생각하는 것과는 너무 다른 평가를 듣게 되지?
그만큼 '나'로서가 아닌 '타인의 시각으로써의 나'를 신경 쓰고 있어서라는 건 안다.
표면-현실-이상의 모순이 요즘 들어 더 두드러지는 것 같다.
뒤돌아서면 달라지는 감정때문에 우울해 지고 있으니, 나와 내가 같은 사람이 되어야 하겠다.
 

'마음이 뛰다' 카테고리의 다른 글

소음 소음 소음 소음  (0) 2012.08.25
  (0) 2012.08.04
못난 놈  (0) 2012.01.25
모르면 고생한다.  (0) 2011.12.28
김해 희망서포터즈 2기 모집~!  (0) 2011.11.25
한심하기 그지없다..

'마음이 뛰다' 카테고리의 다른 글

  (0) 2012.08.04
모난 돌  (0) 2012.01.26
모르면 고생한다.  (0) 2011.12.28
김해 희망서포터즈 2기 모집~!  (0) 2011.11.25
청춘콘서트 2.0 희망서포터즈 2기를 모집합니다!  (0) 2011.10.12
외주 때문에 Visual C#에서 DataGridView에 데이터 소스로 DB를 바로 연결했는데,

이상하게도 소스의 레코드 개수와 상관없이 1개만 나타나거나 제대로 보이질 않는다.

(에러가 있으면 차라리 바로 잡기야 하겠는데 그것도 아니니 당시엔 답이 안나온다)

처음엔 꼼수를 써서 다른 방법으로 뷰에 보이는 내용을 다시금 불러오게 했지만 몹시 비효율적이다.

다른 부분에서도 똑같은 현상이 발생하길래  코드를 부분부분 돌려보니,

CellEnter이벤트가 발생하면서 바로 그와 관련된 DB를 바로 읽어와서 다른 뷰에 뿌려주도록 했는데

동시에 뿌려주는 경우 DB는 제대로 읽어오지만,

CellEnter이벤트는 내용이 갱신된 직후 바로 발생하므로 데이터를 뿌리는 동시에 다른 DB도 읽어오게 되어

뷰에 뿌리는 과정 중간에 지나가버리게 된다.

그럼에도 불구하고 뷰의 Rows의 요소 수를 보면 정상적으로 되어있으니, 그냥 보기엔

대체 왜 그런지 알 수가 없다.


어쨌거나 DB를 사용하는 방법이 잘못되었는지, 그 부분을 바로잡진 못하고 돌아가는 방향을 택했다.

CellEnter 이벤트 대신에 CellClick이벤트를 통해 사용자가 직접 클릭한 경우에만

서브 뷰를 보여주도록 했다. 바꿔놓고 보니 너무 불편하다.. 대안책을 찾아야겠다. 

'마음이 뛰다' 카테고리의 다른 글

모난 돌  (0) 2012.01.26
못난 놈  (0) 2012.01.25
김해 희망서포터즈 2기 모집~!  (0) 2011.11.25
청춘콘서트 2.0 희망서포터즈 2기를 모집합니다!  (0) 2011.10.12
인생은 재밌다.  (0) 2011.09.10


올 여름을 뜨겁게 달궜던 청춘콘서트를 기억하시나요?

그 열기를 이어서 청춘 콘서트 2.0이 곧 시작됩니다.

함께 청춘콘서트를 만들어나갈 희망서포터즈를 모집하고 있습니다.

함께 하실 분은 아래의 링크를 클릭해 주세요~!

☞ 청춘콘서트 다음 카페 바로가기

'마음이 뛰다' 카테고리의 다른 글

못난 놈  (0) 2012.01.25
모르면 고생한다.  (0) 2011.12.28
청춘콘서트 2.0 희망서포터즈 2기를 모집합니다!  (0) 2011.10.12
인생은 재밌다.  (0) 2011.09.10
막막 룰루랄라.  (0) 2011.08.26

올 여름을 뜨겁게 달궜던 청춘콘서트를 기억하시나요?

그 열기를 이어서 청춘 콘서트 2.0이 곧 시작됩니다.

함께 청춘콘서트를 만들어나갈 희망서포터즈를 모집하고 있습니다.

함께 하실 분은 아래의 링크를 클릭해 주세요 :D

☞청춘 콘서트 2.0 입학 지원 안내보기

'마음이 뛰다' 카테고리의 다른 글

모르면 고생한다.  (0) 2011.12.28
김해 희망서포터즈 2기 모집~!  (0) 2011.11.25
인생은 재밌다.  (0) 2011.09.10
막막 룰루랄라.  (0) 2011.08.26
롬업 후 APN 설정  (0) 2011.08.23

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

They say :

assembly language is low-level java, C# are high-level.

But they do not talk about highest-level languages

The answer is yes.
What is the highest-level languages?

case1. view a computer as a 4-year old baby

case 2. view a computer as a 10-year old boy

case 2. view a computer as a college student


example of Prolog

obj : fact(0, 1)
 fact(x+1, xy + y) :- fact(x,y)
main:
fact (5,x)

So there is a final goal

난 소공을 배우고 싶다.

'Courses' 카테고리의 다른 글

[임베디드] 명령어 실습  (0) 2011.09.15
[소공] 11.09.06  (0) 2011.09.10
[소공] 실습 1주차  (0) 2011.08.31
[소공] 수업 계획  (0) 2011.08.30
친구에서 남보다도 못한사이로 인사한마디 못나눌 사이처럼 되서 평생 안보고 그리 지낼 줄 알았는데
마트에 충전기를 사러갔다가 참 신기하게도 마주쳤다.

그 때의 어색함이나, 감정적인건 배제된건지 시간에 묻혀진건지 알 순 없지만 자연스레 인사를 하고
자연스레 대화를 나눴다. 일년 반만에

서울에서 불꽃 축제를 하다가 만났을 때 얘기를 하니
"그 땐 화났었으니까. 시간이 다 해결해 주는거지 뭐" 란다.

나는 그런가보다 한다.

자연스러운건지 우스운 일인지 어쨌든 재밌는 일이다.

+ Recent posts