'프로그램 사용 > vi' 카테고리의 다른 글
vi를 source insight 처럼 설정하기 (0) | 2014.09.04 |
---|---|
vi에서 마우스 사용하도록 설정하기 (0) | 2014.09.04 |
vi 에서 탐색기(?) (0) | 2014.08.26 |
vi 기능 - 자동완성 / SH html export (0) | 2014.08.25 |
vi 수평창을 수직창으로 바꾸기/변환하기 (0) | 2011.11.20 |
vi를 source insight 처럼 설정하기 (0) | 2014.09.04 |
---|---|
vi에서 마우스 사용하도록 설정하기 (0) | 2014.09.04 |
vi 에서 탐색기(?) (0) | 2014.08.26 |
vi 기능 - 자동완성 / SH html export (0) | 2014.08.25 |
vi 수평창을 수직창으로 바꾸기/변환하기 (0) | 2011.11.20 |
ssh 로그인시 apt-check 프로세스 cpu 점유 (0) | 2014.12.24 |
---|---|
manpath (0) | 2014.12.07 |
우분투에서 특정 패키지의 업데이트 금지하기 (0) | 2014.09.03 |
Ubuntu 14.04 LTS desktop 64bit edition (0) | 2014.06.14 |
우분트 포트란 패키지 (4) | 2014.06.13 |
$ set -o
allexport off
braceexpand on
emacs on
errexit off
errtrace off
functrace off
hashall on
histexpand on
history on
ignoreeof off
interactive-comments on
keyword off
monitor on
noclobber off
noexec off
noglob off
nolog off
notify off
nounset off
onecmd off
physical off
pipefail off
posix off
privileged off
verbose off
vi off
xtrace off
|
$ set -o
allexport off
braceexpand on
emacs off
errexit off
errtrace off
functrace off
hashall on
histexpand on
history on
ignoreeof off
interactive-comments on
keyword off
monitor on
noclobber off
noexec off
noglob off
nolog off
notify off
nounset off
onecmd off
physical off
pipefail off
posix off
privileged off
verbose off
vi on
xtrace off
|
rdate / ntp (0) | 2014.09.17 |
---|---|
nice (0) | 2014.09.16 |
bash 파일 상태 관련 if (0) | 2014.09.01 |
audit (0) | 2014.08.30 |
history - bash (0) | 2014.08.30 |
UseDNS no |
ssh X11 forwarding 속도 향상 (0) | 2015.09.24 |
---|---|
sshd server key 경로 (0) | 2015.01.06 |
ssh X11 forwarding 옵션 (0) | 2012.01.25 |
ssh X11 터널링 (0) | 2012.01.24 |
scp 사용하기 (0) | 2011.04.18 |
NAME
apt-mark - mark/unmark a package as being automatically-installed
SYNOPSIS
apt-mark [-hv] [-f=FILENAME] {markauto | unmarkauto} package... | showauto
DESCRIPTION
apt-mark will change whether a package has been marked as being automatically installed.
When you request that a package is installed, and as a result other packages are installed
to satisfy its dependencies, the dependencies are marked as being automatically installed.
Once these automatically installed packages are no longer depended on by any manually
installed packages, they will be removed by e.g. apt-get or aptitude.
markauto
markauto is used to mark a package as being automatically installed, which will cause
the package to be removed when no more manually installed packages depend on this
package.
unmarkauto
unmarkauto is used to mark a package as being manually installed, which will prevent
the package from being automatically removed if no other packages depend on it.
showauto
showauto is used to print a list of automatically installed packages with each package
on a new line.
|
--ignore-hold
Ignore package Holds; This causes apt-get to ignore a hold placed on a package. This
may be useful in conjunction with dist-upgrade to override a large number of undesired
holds. Configuration Item: APT::Ignore-Hold.
|
manpath (0) | 2014.12.07 |
---|---|
ctrl - alt - t 로 터미널 실행 (0) | 2014.09.04 |
Ubuntu 14.04 LTS desktop 64bit edition (0) | 2014.06.14 |
우분트 포트란 패키지 (4) | 2014.06.13 |
우분투 설치된 패키지 목록 얻기 (0) | 2014.05.24 |
pulseaudio / jack / sound server (0) | 2014.11.16 |
---|---|
ADAT - Alesis Digital Audio Tape (0) | 2014.11.03 |
CD 굽는 컴퓨터 (4) | 2012.11.20 |
SUS(Steel Use Stainless) / STS (0) | 2012.03.11 |
SEMS screw (0) | 2012.01.04 |
lirc - linux IR Remote control (0) | 2015.03.31 |
---|---|
vaapi vdpau uvd (6) | 2015.03.26 |
linux 최대 thread 갯수 (0) | 2015.01.22 |
getopt() / getopt_long() (0) | 2014.11.19 |
timeval, gettimeofday() (0) | 2013.08.20 |
Primary | Meaning |
---|---|
[ -a FILE ] | True if FILE exists. |
[ -b FILE ] | True if FILE exists and is a block-special file. |
[ -c FILE ] | True if FILE exists and is a character-special file. |
[ -d FILE ] | True if FILE exists and is a directory. |
[ -e FILE ] | True if FILE exists. |
[ -f FILE ] | True if FILE exists and is a regular file. |
[ -g FILE ] | True if FILE exists and its SGID bit is set. |
[ -h FILE ] | True if FILE exists and is a symbolic link. |
[ -k FILE ] | True if FILE exists and its sticky bit is set. |
[ -p FILE ] | True if FILE exists and is a named pipe (FIFO). |
[ -r FILE ] | True if FILE exists and is readable. |
[ -s FILE ] | True if FILE exists and has a size greater than zero. |
[ -t FD ] | True if file descriptor FD is open and refers to a terminal. |
[ -u FILE ] | True if FILE exists and its SUID (set user ID) bit is set. |
[ -w FILE ] | True if FILE exists and is writable. |
[ -x FILE ] | True if FILE exists and is executable. |
[ -O FILE ] | True if FILE exists and is owned by the effective user ID. |
[ -G FILE ] | True if FILE exists and is owned by the effective group ID. |
[ -L FILE ] | True if FILE exists and is a symbolic link. |
[ -N FILE ] | True if FILE exists and has been modified since it was last read. |
[ -S FILE ] | True if FILE exists and is a socket. |
[ FILE1 -nt FILE2 ] | True if FILE1 has been changed more recently than FILE2, or if FILE1 exists and FILE2 does not. |
[ FILE1 -ot FILE2 ] | True if FILE1 is older than FILE2, or is FILE2 exists and FILE1 does not. |
[ FILE1 -ef FILE2 ] | True if FILE1 and FILE2 refer to the same device and inode numbers. |
[ -o OPTIONNAME ] | True if shell option "OPTIONNAME" is enabled. |
[ -z STRING ] | True of the length if "STRING" is zero. |
[ -n STRING ] or [ STRING ] | True if the length of "STRING" is non-zero. |
[ STRING1 == STRING2 ] | True if the strings are equal. "=" may be used instead of "==" for strict POSIX compliance. |
[ STRING1 != STRING2 ] | True if the strings are not equal. |
[ STRING1 < STRING2 ] | True if "STRING1" sorts before "STRING2" lexicographically in the current locale. |
[ STRING1 > STRING2 ] | True if "STRING1" sorts after "STRING2" lexicographically in the current locale. |
[ ARG1 OP ARG2 ] | "OP" is one of -eq, -ne, -lt, -le, -gt or -ge. These arithmetic binary operators return true if "ARG1" is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal to "ARG2", respectively. "ARG1" and "ARG2" are integers. |
nice (0) | 2014.09.16 |
---|---|
bash VI 모드 / Emacs 모드 (0) | 2014.09.03 |
audit (0) | 2014.08.30 |
history - bash (0) | 2014.08.30 |
dd - disk duplicate (0) | 2014.08.29 |
virtualbox의 네트워크모드는.. 이상해? (0) | 2014.09.30 |
---|---|
vmware player 64bit guest 설치하기 (0) | 2014.09.23 |
virtualbox / vmware 물리하드 연결하기 (1) | 2014.09.22 |
virtualbox 포트포워딩 설정하기 (0) | 2014.08.29 |
virtual box 에서 삭제는 정상적으로 하도록! (0) | 2011.11.15 |
bash VI 모드 / Emacs 모드 (0) | 2014.09.03 |
---|---|
bash 파일 상태 관련 if (0) | 2014.09.01 |
history - bash (0) | 2014.08.30 |
dd - disk duplicate (0) | 2014.08.29 |
/etc/login.defs 로 암호 최소 길이 수정하기 (0) | 2014.08.29 |