[기초-shell] 프로그래밍. 권한 문제로 보이는데요.

shean0의 이미지

쩝..죄송합니다.
찿아보는데.. 제 경우처럼 무식한 것은 없어서...

http://wiki.kldp.org/HOWTO//html/Bash-Prog-Intro-HOWTO/x37.html
이제 이것을 보려구
hellow world 쉘을 짰습니다.
그런데.. permission denyed가 나올때는 뭐가 오류인것인지 조언 부탁드립니다.

[sean]$cat test.sh
#!/bin/bash
echo AA
[sean]$echo AA
AA
[sean]$echo $SHELL
/bin/bash
[sean]$./test.sh
bash: ./test.sh: Permission denied
[sean]$/bin/sh ./test.sh
AA

[sean]$./test.sh
bash: ./test.sh: Permission denied <== 왜 이럴까요?

# ls -al /bin/bash
-rwxr-xr-x   1 root     sys      1044584 2000년  5월 20일 /bin/bash

흠..찿아보니 소유와 권한에 역시 문제..
그래서..
[sean]: id       
uid=0(root) gid=1(other)
[sean]: cat test.sh
#!/bin/sh
echo AA
[sean]: ./test.sh
./test.sh: 사용 권한이 거부됨
[sean]: ls -al /bin/sh
-r-xr-xr-x   3 bin      root       91604 1999년  8월 12일 /bin/sh

앗!! root인데 안된다.. 음.. 막막해지네요...

분명이 기초적인 것일태지만.. 부탁드립니다.
. ./test.sh <== 현재 쉘로 실행 :: !로 지정된것을 무시 한다는것인가요?
./test.sh <== !~ 지정된 쉘로 실행

에구.. 쉘 한번 해보려구 했더니.. 첨부터 막히네요...

Prentice의 이미지

ls -al ./test.sh는 해보셨어요..? test.sh의 퍼미션은 어떻게 되어 있나요..?

futurizer의 이미지


[sean]: id        
uid=0(root) gid=1(other) 
[sean]: cat test.sh 
#!/bin/sh 
echo AA 
[sean]: ./test.sh 
./test.sh: 사용 권한이 거부됨 
[sean]: ls -al /bin/sh 
-r-xr-xr-x   3 bin      root       91604 1999년  8월 12일 /bin/sh

여기서 실행을 할때 실행 파일 자체의 "실행권한"을 주어야 합니다.

chmod u+x ./test.sh 라고 하시면 ./test.sh 를 실행하실수 있습니다.
sh ./test.sh 라고 하면 실행권한을 주지 않고도 실행 하실수 있습니다.

파일 자체의 퍼미션은 User Group Other 로 이루어져 있는데
각 항목당 Read Write eXec 가 있습니다.

정리하자면 그룹에 읽고쓰는 권한을 주고 기타 다른 그룹에 모든권한을
주지 않는 것으로 할때

chmod g+rw,o-rwx 란 형식으로 가능하고요.

(+ 는 가능하도록 , - 는 불가능하도록 ) 하게 하는 방법입니다.

권한을 설정하는 표기법은 상당히 다양해서
+,- 를 이용할수도 있고요 777 숫자표기법처럼 자릿수를 가지고
계산할수도 있습니다.

유저 , 그룹 , 기타 의 권한을 일괄적용할때 chmod +x 파일이름으로
하시면 동작합니다.

#!/bin/bash
echo "Okay"

Quote:

18:16:25 금 3월 05 [root@ns /tmp]
# chmod 000 ./test.sh

18:16:29 금 3월 05 [root@ns /tmp]
# ./test.sh
-bash: ./test.sh: 허가 거부됨

18:16:31 금 3월 05 [root@ns /tmp]
# chmod 100 ./test.sh

18:16:36 금 3월 05 [root@ns /tmp]
# ./test.sh
Okay

18:16:39 금 3월 05 [root@ns /tmp]
# chmod u-rwx ./test.sh

18:16:56 금 3월 05 [root@ns /tmp]
# ./test.sh
-bash: ./test.sh: 허가 거부됨

18:17:02 금 3월 05 [root@ns /tmp]
# chmod u+x ./test.sh

18:17:10 금 3월 05 [root@ns /tmp]
# ./test.sh
Okay

18:17:25 금 3월 05 [root@ns /tmp]
# chmod 000 ./tesh.sh

18:17:38 금 3월 05 [root@ns /tmp]
# sh ./test.sh
Okay

음 그리고 마지막에 있는 내용.

Quote:

분명이 기초적인 것일태지만.. 부탁드립니다.
. ./test.sh <== 현재 쉘로 실행 :: !로 지정된것을 무시 한다는것인가요?
./test.sh <== !~ 지정된 쉘로 실행

../test.sh는 상위디렉토리에 test.sh 를 실행한다는 이야기고
./test.sh는 현재 디렉토리에 test.sh 를 실행한다는 이야기가 되고요
. ./test.sh는 source ./test.sh 가 되겠네요.
source 명령은 man . 해보시면 참고하실수 있습니다.

항상 지금처럼, 내 색을 전하는, 내 따뜻함이길..
지란지교를 꿈꾸고... 전하고... 행하길..

Pure-Eternity's GuardianDevil-Kind
Paradox seeker who try to redeem myself.

The Futurizer.

댓글 달기

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