keep fedora up to date using apt - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Distro Noob (https://www.linux-noob.com/forums/forum-10.html) +--- Forum: Fedora (https://www.linux-noob.com/forums/forum-94.html) +--- Thread: keep fedora up to date using apt (/thread-2774.html) |
keep fedora up to date using apt - anyweb - 2005-03-27 if you want to automate fedora keeping up to date, and you use apt (as in apt-get) then try this (as root) Code: vi /etc/cron.daily/apt.sh then paste the following into the blank file Code: #!/bin/sh now save the file and make it executable Code: chmod +x apt.sh to test it try doing this Code: sh /etc/cron.daily/apt.sh and you'll see something like the following: Quote:[root@localhost cron.daily]# sh /etc/cron.daily/apt.shGet:1 [/url]http://ayo.freshrpms.net fedora/linux/3/i386 release [2139B] cheers anyweb |