Bash 쉘에 관한 질문입니다.

kakikaki의 이미지

커널 2.4 시절의 커널 컴파일 방식으로..

make bzImage && make modules && make modules_install

의 출력을 전부 /dev/vc/1 으로 보내고 백그라운드로 보내고 싶어서

# "make bzImage 2>/dev/vc/1 1>&1 &" && "make modules 2>/dev/vc/1 1>&2 &" && "make modules_install 2>/dev/vc/1 1>&2 &"
bash: make bzImage 2>/dev/vc/1 1>&1 &: No such file or directory
# make "bzImage 2>/dev/vc/1 1>&1 &" && make "modules 2>/dev/vc/1 1>&2 &" && make "modules_install 2>/dev/vc/1 1>&2 &"
make: *** No rule to make target `bzImage 2>/dev/vc/1 1>&1 &'. Stop.

# make "bzImage" 2>/dev/vc/1 1>&1 & && make "modules" 2>/dev/vc/1 1>&2 & && make "modules_install" 2>/dev/vc/1 1>&2 &
bash: syntax error near unexpected token `&&'

# make "bzImage" 2>/dev/vc/1 1>&1 & && make "modules" 2>/dev/vc/1 1>&2 & && make "modules_install" 2>/dev/vc/1 1>&2 &

이렇게 세가지를 시도해 봤습니다만..

제 방법에 무엇이 문제가 있는지.. 기초부터 하려면 어떤것 부터 봐야 하는지 고수님들의 조언을 부탁드립니다. ( _ _) :)

potatoid의 이미지

글쎄요.. 제가 뭘 답할 입장이 될련지 모르겠지만,
잘기억이 안 나곤 할땐 그냥 저는 "man bash"를 해봅니다.
그래서, 님이 약간 혼란스럽게 생각한 REDIRECTION part를 보고 확인 해보았어요.

아마도 님께서는 Error 와 Standard output을 한곳에 모아서 저장할려고 하는 것 같은데요.. 그럴 경우는.

make bzImage 2>&1 > /dev/vc/1 이렇게 하면.. 하나의 명령에 대한
Redirect와 백그라운드로 돌리는 것과 같은 효과를 볼 수 있습니다.
왜냐하면 error 와 standard output 모두 /dec/vc/1에 저장되는 동안에
님은 프롬프트에서 다른일을 할수 있기때문이죠.

이와 마찬가지로 다른 명령문들도 이렇게 처리하면..
make bzImage 2>&1 > /dev/vc/1 &&
make modules 2>&1 > /dev/vc/1 &&
make modules_install 2>&1 > /dev/vc/1

님이 원하시는 결과가 나오지 않을까 싶습니다. 아직 실제로 테스트를
해보지 않았기때문에 혹 오탈자나 잘못된 부분이 있으면 꼭 수정 부탁드립니다.

--------------------------------------------------------------------------
Sorrow is better than laughter, because a sad face is good for the heart.

cinsk의 이미지

첫째,

Quote:
make bzImage 2>&1 > /dev/vc/1 이렇게 하면.. 하나의 명령에 대한
Redirect와 백그라운드로 돌리는 것과 같은 효과를 볼 수 있습니다.

이 것은 redirection만을 위한 문법이므로, 현재 명령을 background job으로 만들지 않습니다. 따라서 마지막에 '&'를 붙여 주셔야 합니다. :)

Quote:
# make bzImage 2>&1 > /dev/vc/1 &&
make modules 2>&1 > /dev/vc/1 &&
make modules_install 2>&1 > /dev/vc/1 &

둘째, 이도 저도 귀찮다면, nohup을 쓰는 것도 좋습니다.

Quote:
# nohup make bzImage && make modules && make modules_install

작업이 끝난 다음, 모든 출력은 현재 디렉토리의 nohup.out이나 $HOME/nohup.out에서 확인할 수 있습니다.

세째, scroll buffer를 충분히 키운 다음, screen(1)을 쓰는 것도 좋습니다.

네째, mkfifo(1)를 써서 fifo (named pipe)를 만들고 출력을 모두 fifo로 보낸 다음, 다른 쪽에서 기록하게 합니다. 예를 들어

터미널 1:

# mkfifo /tmp/logger
# cat < /tmp/logger  # 여기서 block 됨.

터미널 2:

# make bzImage 2>&1 >/tmp/logger && make modules 2>&1 >/tmp/logger && make modules_install 2>&1 >/tmp/logger

이 때 결과를 log로 남기고 싶다면 '터미널 1'에서 두 번째 줄을 다음으로 바꿔 주면 됩니다:

# tee log.txt < tmp/logger
kakikaki의 이미지

답변 주셔서 정말 감사합니다. 과연 kldp 군요..!! :lol:

춤추라! 사랑하라! 노래하라! 살라!

- 아무도 바라보고 있지 않은 것처럼
- 한 번도 상처받지 않은 것처럼
- 아무도 듣고 있지 않은 것처럼
- 오늘이 마지막 날인 것처럼

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.