Formatting fixes
This commit is contained in:
parent
0bd378c874
commit
987327e479
3 changed files with 17 additions and 6 deletions
|
@ -197,7 +197,7 @@ What each snapshot will capture are any changes that have been made to the data.
|
||||||
## Creating Backups from Snapshots
|
## Creating Backups from Snapshots
|
||||||
|
|
||||||
The final phase of my BTRFS journey is to establish backups. One thing that must
|
The final phase of my BTRFS journey is to establish backups. One thing that must
|
||||||
be emphasized: *SNAPSHOTS ARE NOT BACKUPS*. They can be used to make backups,
|
be emphasized: **SNAPSHOTS ARE NOT BACKUPS**. They can be used to make backups,
|
||||||
though. The way I'm doing that currently is with a program called snap-sync.
|
though. The way I'm doing that currently is with a program called snap-sync.
|
||||||
snap-sync will iterate through each Snapper config, and send a snapshot from
|
snap-sync will iterate through each Snapper config, and send a snapshot from
|
||||||
each to a remote BTRFS-formatted source. In my case, the remote source is an
|
each to a remote BTRFS-formatted source. In my case, the remote source is an
|
||||||
|
@ -224,7 +224,8 @@ Syncthing, which will be an upcoming topic of discussion. Some next steps:
|
||||||
|
|
||||||
### Sources
|
### Sources
|
||||||
|
|
||||||
- [btrfs on the Arch Wiki](https://wiki.archlinux.org/index.php/Btrfs)
|
|----|
|
||||||
- [Snapper on the Arch Wiki](https://wiki.archlinux.org/index.php/Snapper)
|
|[btrfs on the Arch Wiki](https://wiki.archlinux.org/index.php/Btrfs)|
|
||||||
- [snap-sync](https://github.com/wesbarnett/snap-sync)
|
|[Snapper on the Arch Wiki](https://wiki.archlinux.org/index.php/Snapper)|
|
||||||
- [The BTRFS Wiki](https://btrfs.wiki.kernel.org/index.php/Main_Page)
|
|[snap-sync](https://github.com/wesbarnett/snap-sync)|
|
||||||
|
|[The BTRFS Wiki](https://btrfs.wiki.kernel.org/index.php/Main_Page)|
|
||||||
|
|
|
@ -87,6 +87,12 @@ main ul {
|
||||||
padding: 0em 4em;
|
padding: 0em 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3 + table {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0em 1em;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
@supports (display: grid) {
|
@supports (display: grid) {
|
||||||
|
|
||||||
.cor_page {
|
.cor_page {
|
||||||
|
|
|
@ -98,6 +98,10 @@ article p {
|
||||||
padding: 0em 2em;
|
padding: 0em 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Inline code formatting */
|
||||||
article p code {
|
article p code {
|
||||||
font: 1.0em monospace;
|
font: 1.05em monospace;
|
||||||
|
color: #ededed;
|
||||||
|
background-color: #2B2B2B;
|
||||||
|
padding: 0em 0.25em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue