---
```
fallocate -l 1G file_grande.txt
```
```
troncare -s 1G file_grande.txt
```
```
dd if=/dev/zero of=large_file.txt bs=1G count=1
```
```pitone
importare il sistema operativo
dimensione_file =1 * 1024 * 1024 * 1024 # 1 GB
con open("large_file.txt", "wb") come f:
f.write(b"\0" * dimensione_file) # Scrive byte null per creare il file
```
> Per creare il file di grandi dimensioni, esegui python
"bash."
python3 create_large_file.py
```
---
sistemi © www.354353.com