리눅스 명령어가 갑자기 잘못되었어요 ㅡㅡ;;;

승우의 이미지

httpd.conf 파일을 수정하다 윈도우쓰던버릇땜시..
컨트롤z를 눌렀는데요.. 어찌된것인지..
ls 명령어가 안먹혀요 ㅠㅠ
지난번엔 컨트롤z키를 눌러도 괘안았었는데..
이번엔 어찌된영문인지.. 어제는 접속을 안해봐서..
먼일이 생겼던건지 모르겠어요 ㅡㅡ;;
ls라고 치면
ls unrecognized option `--show-control-chars'
Try `ls --help' for more information.
이런 메시지만 뜨네요..
어떻게 고쳐야 될지 가르쳐주세요 ㅠㅠ

codebank의 이미지

[Ctrl]+[z]은 프로그램을 백그라운드로 돌리는 역할을 합니다.
백그라운드로 돌리면서 일단은 'Stop'되도록 되어있죠.
백그라운드로 두면서 계속 진행하게 하려면
# bg
를 내려주는게 보통입니다.
하지만 현재 vi나 nano같은 에디터작업을 하고 있었다면 bg로하면 작업을 진행할 수가
없지요.
이럴때는
# fg
로 다시 전면에 프로그램을 올리는 명령을 써야합니다.

Console상태에서 에디팅환경을 벗어나지 않고 다른 작업을 할때(컴파일등...) 유용한
명령입니다.

------------------------------
좋은 하루 되세요.

승우의 이미지

ls 명령어가 복구가 안되네요 ㅡㅡ;;
제가 세팅한것이 아니고..
인수인계도 넘 간단하게 받아서..
아직 제가 리눅스는 초보라 잘 몰라서요 ㅠㅠ
ls 명령어를 고치려면 어케해야될까요?
혹시 몰라서 dir 쳤더니 ls명령어 식으로 되긴하는데..
예전분이 만들어놓으신거 같더라구요..
암튼 ls 명령어 복구방법좀 갈켜주세요..
초보라 자세한 설명해주시면 더욱 좋구요..
오류 메시지는 위에 글쓴거로..2줄.. 나와요 ㅡㅡ;;그럼..

codebank의 이미지

ls의 경우 잘못된 인수가 들어갔을때 해당 메시지가 발생합니다.
일단 자신의 홈 디렉토리로 이동한 다음 .bashrc나 .bash_profile의 파일등에
ls에 대한 설정이 잘 되어있는지 확인해 보는게 좋습니다.
참고로 제 .bashrc의 경우에는

Quote:
# /etc/skel/.bashrc:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bashrc,v 1.8 2003/02/28 15:45:35 azarah Exp $

# This file is sourced by all *interactive* bash shells on startup. This
# file *should generate no output* or it will break the scp and rcp commands.

# colors for ls, etc.
eval `dircolors -b /etc/DIR_COLORS`
alias d="ls --color"
alias ls="ls --color=auto -F"
alias ll="ls --color -l"
export LANG=ko_KR.eucKR
export GTK_IM_MODULE=hangul3f

export PS1='\[\033[01;32m\]\u@\h \[\033[01;34m\]\W \$ \[\033[00m\]'
# Change the window title of X terminals
case $TERM in
xterm*|rxvt|Eterm|eterm)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
;;
screen)
PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
;;
esac

##uncomment the following to activate bash-completion:
#[ -f /etc/profile.d/bash-completion ] && source /etc/profile.d/bash-completion


alias ls... 부분에 ls에 합당하지 않은 옵션이 있는지 확인하시고 해당되는 옵션을
삭제하면 됩니다.
자세한건 ls --help나 man ls를 참조하세요.

------------------------------
좋은 하루 되세요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.