Usefull tips
Yuhu Uhu Breaking On, is a web site dedicated to share experiences in the Area of Technology of Computer Science and Computation Xtreme. And show an operating system that suits my needs also spreading knowledge, because "Sharing is not a crime".
Here is a dirty recopilation of my experiences in my free software activism time.
Downloads Tips
How to do - Donwloads with a only command?
Use the tool in this example; wget, with the expression -c, that is for continue with or begin a new download.
wget -c http://wiki.rosalab.ru/ru/images/2/24/RosaImageWriter-2.6.1-lin-x86_64.txz
You can download individual files or complete web pages. See the man pages of the tool.
How to do - Copy ISO to pendrive?
To do this is necessary open a terminal and have admin powers: (superuser).
First you need apply a basic format to the pendrive:
mkfs.vfat -n 'Etiqueta' /dev/sdb
(Use the expression-Ifor overwrite if needed)
mkfs.vfat -In 'Label' /dev/sdb
Copy the ISO:
dd if=ISO_Filename.iso of=/…
Here is a dirty recopilation of my experiences in my free software activism time.
Downloads Tips
How to do - Donwloads with a only command?
Use the tool in this example; wget, with the expression -c, that is for continue with or begin a new download.
wget -c http://wiki.rosalab.ru/ru/images/2/24/RosaImageWriter-2.6.1-lin-x86_64.txz
You can download individual files or complete web pages. See the man pages of the tool.
How to do - Copy ISO to pendrive?
To do this is necessary open a terminal and have admin powers: (superuser).
First you need apply a basic format to the pendrive:
mkfs.vfat -n 'Etiqueta' /dev/sdb
(Use the expression-Ifor overwrite if needed)
mkfs.vfat -In 'Label' /dev/sdb
Copy the ISO:
dd if=ISO_Filename.iso of=/…