Advertisement
sergio_educacionit

systemd mount

May 14th, 2024 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. [Unit]
  2. Description=Montar el sistema de archivos X
  3. Requires=local-fs.target
  4. After=local-fs.target
  5.  
  6. [Mount]
  7. What=/dev/sdX o UUID=e8a4f356-6513-4c58...
  8. Where=/ruta/de/montaje
  9. Type=tipo_de_sistema_de_archivos
  10. Options=opciones_de_montaje
  11. TimeoutSec=30
  12.  
  13. [Install]
  14. WantedBy=multi-user.target
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement