Skip to content

Commit

Permalink
improve layout
Browse files Browse the repository at this point in the history
  • Loading branch information
gdha committed Oct 22, 2024
1 parent f1fe082 commit 69c9a47
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/basics/backup_netfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ BACKUP=NETFS
BACKUP_OPTIONS="nfsvers=3,nolock"
BACKUP_URL=nfs://<NFS_SERVER_IP>/path/to/backup
```

2. Explanation:

* `OUTPUT=ISO`: Specifies that the output should be a bootable ISO image.
- `OUTPUT=ISO`: Specifies that the output should be a bootable ISO image.

* `BACKUP=NETFS`: Uses the NETFS method for backup, which supports network file systems like NFS.
- `BACKUP=NETFS`: Uses the NETFS method for backup, which supports network file systems like NFS.

* `BACKUP_OPTIONS="nfsvers=3,nolock"`: Sets the NFS mount options. Here, it specifies NFS version 3 and disables file locking.
- `BACKUP_OPTIONS="nfsvers=3,nolock"`: Sets the NFS mount options. Here, it specifies NFS version 3 and disables file locking.

* `BACKUP_URL=nfs://<NFS_SERVER_IP>/path/to/backup`: The URL of the NFS server where the backup will be stored. Replace <NFS_SERVER_IP> with the actual IP address of your NFS server and /path/to/backup with the actual path on the NFS server.
- `BACKUP_URL=nfs://<NFS_SERVER_IP>/path/to/backup`: The URL of the NFS server where the backup will be stored. Replace <NFS_SERVER_IP> with the actual IP address of your NFS server and /path/to/backup with the actual path on the NFS server.

## Running the Backup

Expand Down

0 comments on commit 69c9a47

Please sign in to comment.