if you want / need a nice list showing the size of every folder and file
1 |
du -sh * |
don’t forget the command line for disk usage as well 😉
1 |
df |
if you want / need a nice list showing the size of every folder and file
1 |
du -sh * |
don’t forget the command line for disk usage as well 😉
1 |
df |
did you receive a doc or docx file with an extra .p7s extension ? it’s a digitally signed document
in order to read it in ubuntu you’ll have to transform it back to the regular .doc or .docx file
here’s how to do this:
1 |
cd Downloads |
1 |
openssl smime -inform DER -verify -noverify -in file.docx.p7s -out file.docx |
now you have the file without the .p7s extension in the same folder you have the original file