Is it possible to add an install timer when you run the dd command [closed]

StackOverflow https://stackoverflow.com/questions/22106493

  •  18-10-2022
  •  | 
  •  

Pergunta

I am currently trying to make an install usb key but im not sure if the dd commmand is freezing or just taking forever and for future reference i wanted to know if it was possible to add a install timer somehow to the dd comand when copying my iso to my thumb drive

ps the iso is 4.9 gb

thank you in advanced

Foi útil?

Solução

pv is a nice utility that will show a pretty progress bar for pretty much anything. To e.g. write file.iso to /dev/sdd, use

$ pv file.iso > /dev/sdd
3.1GB 0:02:14 [14.27MB/s] [=====================>     ] 91%
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top