Ubuntu Pastebin

Paste from Massrawy at Tue, 17 Nov 2015 19:11:30 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
ls -la /root/apt.sh 
-rwxr-xr-x 1 root root 269 Nov 17 13:28 apt.sh
-------------------------------------------------------------
cat /root/apt.sh 
#!/bin/bash
#Daily Repo Update and OS Upgrade and Clean of Unused Packages
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
/usr/bin/apt-get -y update
/usr/bin/apt-get -y upgrade
/usr/bin/apt-get -y autoremove
----------------------------------------------------------------------
crontab -e
0 6 * * * /root/apt.sh #Daily Repo Update and OS Upgrade and Clean of Unused Packages
Download as text