Please enable JavaScript.
Coggle requires JavaScript to display documents.
LINUX (Scripting ("script" / log (log and replay (script…
LINUX
Scripting
-
Log / logging
logging with script
using script from a bash have to be done by script -c 'netstat -tulpn' netstatlog otherwise it will hang and endless record things
-
-
-
-
BASICS
-
Commands
-
-
-
-
-
-
-
-
-
-
-
Oldes File in the System
The following command give the date of the oldest system file, what should be equal to the date of installation.
ls -lct /etc | tail -1 | awk '{print $7, $6, $8}'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Tools
rsync
is a utility for efficiently transferring and synchronizing files between a computer and an external hard drive and across network computers by comparing the modification times and sizes of files.
-
-