tetuo41の日記

日々の生活で起こる心の揺れを書きます!!

2013-07-03から1日間の記事一覧

tmail

[ruby] def mail_data(mFile) file = File.open(mFile).read mail = TMail::Mail.parse(file) #p mail.to # 送信先 #p mail.from # 送信元 idx = 1 # ファイル名 mail.parts.each do |m| if nil != m['content-disposition'] m.base64_decode attach_fileNm …

Linuxパーミッション 備忘

3桁の8進数Ver. 0 --- 1 --x 2 -w- 3 -wx 4 r-- 5 r-x 6 rw- 7 rwx http://itpro.nikkeibp.co.jp/article/COLUMN/20060227/230728/ setgid(sgid)という属性 2775 http://blog.onk164.net/archives/272.html

Linuxでログイン出来ないユーザをログイン出来るように変更する

[bash] $ su testuser This account is currently not available. [/bash] ↑こんなヤツが出る場合 testuserには「/sbin/nologin」が設定されている なので「/bin/bash」に変更して上げる [bash] $ usermod -s /bin/bash testuser [/bash] 参考URL: http://s…