## Création d'un fichier volumineux sous Linux
---
Méthode 1 :Utilisation de la commande "fallocate"
```
fallocate -l 1G grand_fichier.txt
```
Méthode 2 :Utilisation de la commande "tronquer"
```
truncate -s 1G large_file.txt
```
Méthode 3 :Utilisation de la commande "dd"
```
dd if=/dev/zero of=large_file.txt bs=1G count=1
```
Méthode 4 :Utilisation du script Python (fichier python nommé create_large_file.py) :
```python
importer le système d'exploitation
taille_fichier =1 * 1024 * 1024 * 1024 # 1 Go
avec open("large_file.txt", "wb") comme f :
f.write(b"\0" * file_size) # Écrit des octets nuls pour créer le fichier
```
> Pour créer le gros fichier, exécutez le python
```bash
python3 create_large_file.py
```
---
|