Mount: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == mount command 내용 정리 == Basic == <source lang=bash> mount [-lhV] mount -a [-fFnrsvw] [-t vfstype] [-O optlist] mount [-fnrsvw] [-o option[,option]...]...")
 
No edit summary
Line 13: Line 13:
=== -a, --all ===
=== -a, --all ===
/etc/fstab 에 나와있는 모든 파일시스템을 마운트 한다.
/etc/fstab 에 나와있는 모든 파일시스템을 마운트 한다.
== Example ==
=== Directory mount ===
대부분 심볼릭 링크로 해결되는 문제지만, 만약, 심볼릭 링크로 해결되지 않는 디렉토리 참조 문제라면 mount 를 사용할 수 있다.
Python library path 참조가 문제된 상황이 있었는데, mount 명령으로 문제를 해결할 수 있었다.
<pre>
$ mount -o bind /home/pchero/git/python_test/src/test_module /usr/lib64/python2.6/site-packages/test_module
</pre>


[[category:command/utility]]
[[category:command/utility]]

Revision as of 10:19, 29 May 2017

Overview

mount command 내용 정리

Basic

<source lang=bash> mount [-lhV] mount -a [-fFnrsvw] [-t vfstype] [-O optlist] mount [-fnrsvw] [-o option[,option]...] device|dir mount [-fnrsvw] [-t vfstype] [-o options] device dir </source>

Options

-a, --all

/etc/fstab 에 나와있는 모든 파일시스템을 마운트 한다.

Example

Directory mount

대부분 심볼릭 링크로 해결되는 문제지만, 만약, 심볼릭 링크로 해결되지 않는 디렉토리 참조 문제라면 mount 를 사용할 수 있다.

Python library path 참조가 문제된 상황이 있었는데, mount 명령으로 문제를 해결할 수 있었다.

$ mount -o bind /home/pchero/git/python_test/src/test_module /usr/lib64/python2.6/site-packages/test_module