---
Método 1:uso del comando "fallocate"
```
fallocate -l 1G archivo_grande.txt
```
Método 2:usar el comando "truncar"
```
truncar -s 1G archivo_grande.txt
```
Método 3:uso del comando "dd"
```
dd if=/dev/zero of=large_file.txt bs=1G recuento=1
```
Método 4:Usar script Python (archivo Python llamado create_large_file.py):
```pitón
importar sistema operativo
tamaño_archivo =1 * 1024 * 1024 * 1024 # 1 GB
con open("large_file.txt", "wb") como f:
f.write(b"\0" * file_size) # Escribe bytes nulos para crear el archivo
```
> Para crear el archivo grande, ejecute Python
```golpecito
python3 crear_archivo_grande.py
```
---