Archive:

Month: March 2019


Rename an ethernet port

By: | Post date: March 29, 2019 | Comments: No Comments

Posted in categories: Uncategorized

ip link set <name> down ip link set <name> name <newname> ip link set <newname > up

tar gzip a folder with progress bar

By: | Post date: March 11, 2019 | Comments: No Comments

Posted in categories: Computer Tips, Work related

tar cf – folder_name -P | pv -s $(du -sb folder_name | awk ‘{print $1}’) | gzip > folder_zip.tgz