使用crontab執行apt-get出現錯誤 - Linux

Catherine avatar
By Catherine
at 2013-03-14T18:29

Table of Contents

[問題描述]無法使用crontab自動執行apt-get更新

sudo crontab -l
# m h dom mon dow command
0 3 * * * sh /home/username/crontab.sh

vim /home/username/crontab.sh
#!/bin/bash
PATH=/usr/bin:/bin:/usr/sbin:/sbin
apt-get -qq update 2>> /home/username/crontab_$(date '+%Y_%m_%d').log
apt-get -qq dist-upgrade 2>> /home/username/crontab_$(date '+%Y_%m_%d').log

Error Log
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
......

請問應如何修正??
謝謝

--
Tags: Linux

All Comments

Jacob avatar
By Jacob
at 2013-03-19T06:07
這ip是建中?為啥要打一長串 apt-get update && apt-ge
t dist-upgrade -y --force-yes 直接寫在crontab 後面
不就好?

openSUSE 12.3 Out Now!

Hamiltion avatar
By Hamiltion
at 2013-03-14T01:37
Hi,各位大大好。 小小的推廣一下,openSUSE 12.3釋出囉。 歡迎各位一起來加入openSUSE的行列。 有興趣的可以來這邊參考、下載: http://www.opensuse.org/zh-tw/ - ...

fstab設定user權限

Doris avatar
By Doris
at 2013-03-13T20:43
新增了一顆硬碟掛載在user的home目錄 但是權限為root 請問要怎樣把權限讓給user fstab: /dev/sdb1 /home/user ext3 defaults 0 0 感謝 - ...

DNS 只反查 hostname的部分,而不是FQDN

Irma avatar
By Irma
at 2013-03-13T17:33
我用nslookup, host, dig 都可以由ip反查dns的 hostname 但是回傳的是完整的FQDN 請問有沒有什麼指令是可以只回傳hostname的部分 或是可以安裝套件來達到這部分 謝謝 - ...

skype什麼時候才能更新到6.0?

Kama avatar
By Kama
at 2013-03-13T02:52
windows跟mac底下的skype都已經出到6.0了 唯獨linux版遲遲沒動作 依舊4.0 如果用skype帳號登入又看不到msn聯絡人 就算合併帳號也一樣 而msn於4月8日就不能用了 那到時候linux使用者該怎麼辦 難道用wine來跑windows版skype嗎0.0 -- ...

kernel module 如何使用 driver

Doris avatar
By Doris
at 2013-03-13T02:15
請問自己寫一個 kernel module 要如何使用其他 driver, kernel 裡也能夠 open, ioctl 嗎? - ...