-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian Ramirez
committed
Jan 9, 2025
1 parent
a558f74
commit d4ad4c5
Showing
1 changed file
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,31 +123,27 @@ ssh [email protected] | |
``` | ||
````{dropdown} Diectory Structure | ||
```mermaid | ||
%%{init: {'theme': 'dark', 'themeVariables': { 'fontFamily': 'arial', 'textColor': '#e0e0e0', 'lineColor': '#e0e0e0' }}}%% | ||
graph TD | ||
root["/"] --> boot["/boot"] | ||
root --> efi["/boot/efi"] | ||
root --> home["/home"] | ||
root --> tank["/tank"] | ||
root["/"] --> tank["/tank"] | ||
root --> zata["/zata"] | ||
root --> data["/data"] | ||
tank --> tank_home["/tank/home"] | ||
tank_home --> dedicated["Dedicated User Mounts"] | ||
tank_home --> regular["Regular Users<br/>(directories in tank/home)"] | ||
tank_home --> datasets["ZFS Datasets<br/>(mounted to /home/username)"] | ||
home --> shared_users["Regular Directory Users"] | ||
home --> mounted_users["ZFS Dataset Users"] | ||
zata --> zata_data["data (4.1P Ceph)"] | ||
zata_data --> zlab["zlab/"] | ||
data -.->|bind mount| zlab | ||
zata --> data["Ceph: data (4.1P)"] | ||
zata --> zippy["Ceph: zippy (259T)"] | ||
zata --> public["Ceph: public_html (450T)"] | ||
zata --> zippy["zippy (259T Ceph)"] | ||
zata --> public["public_html (450T Ceph)"] | ||
classDef default stroke:#e0e0e0 | ||
classDef ceph stroke:#ff88ff,color:#ff88ff | ||
root --> tmp["/tmp"] | ||
root --> run["/run tmpfs"] | ||
root --> dev_shm["/dev/shm tmpfs"] | ||
classDef network fill:#f9f,stroke:#333,stroke-width:2px | ||
classDef local fill:#bbf,stroke:#333,stroke-width:2px | ||
class data,zippy,public network | ||
class tmp,run,dev_shm,boot,efi local | ||
class zata,zata_data,zlab,zippy,public ceph | ||
``` | ||
```` | ||
|