Kuma with Mattermost

This commit is contained in:
2024-11-11 18:09:15 -07:00
parent 686fa1df1a
commit c62ad0c1ad
16 changed files with 120 additions and 257 deletions

View File

@ -1,7 +1,7 @@
---
created: 2024-01-29T05:19:01.392Z
type: topic
updated: 2024-07-31T20:35:06.956Z
updated: 2024-11-11T00:55:45.000Z
---
# Ubuntu
@ -191,3 +191,14 @@ getfacl -R yourDirectory > permissions.acl
setfacl --restore=permissions.acl
tree -ap>tree.txt
```
## NVMe Slot Gen
- [how-to-determine-from-command-line-if-nvme-slot-is-gen-3-or-gen-](https://askubuntu.com/questions/1428578/how-to-determine-from-command-line-if-nvme-slot-is-gen-3-or-gen-4#:~:text=Here%20we%20can%20see%20the,generation%20of%20the%20PCIe%20itself.&text=Here%20we%20can%20see%20the%20slot%20supports%20up%20to%2016,s%20thence%20it%20is%20Gen4)
```bash 1731286496058 = 638668832960580000 = Sun Nov 10 2024 17:54:55 GMT-0700 (Mountain Standard Time)
lspci | grep -i nvme
# 02:00.0 Non-Volatile memory controller: Sandisk Corp WD Black SN770 / PC SN740 256GB / PC SN560 (DRAM-less) NVMe SSD (rev 01)
lspci -vv -s 02:00.0 | grep -w LnkCap
# LnkCap: Port #0, Speed 16GT/s, Width x4, ASPM L1, Exit Latency L1 <8us
```