dd if=/dev/random of=~/student/john.bin bs=1024 count=12000
ou dd if=/dev/urandom of~/student/john.bin bs=1024 count=12000
Em que bs
é o tamanho de cada entrada aleatória que você deseja (1024 = 1 KB) e count
é quantos desses blocos você deseja.
ie.
bs = 1024, contagem = 12000: 12MB
bs = 512, contagem = 24000: 12MB
bs = 256, contagem = 48000: 12MB
etc