First create a share
zfs create zones/camera
Share with access to all intranet pcs with write access as root
zfs set sharenfs='sec=none,rw=*,anon=0' zones/camera
Note: sec=none must PRECEED any following option see man share_nfs
| #!/bin/sh | |
| exec tail -n +3 $0 | |
| # This file provides an easy way to add custom menu entries. Simply type the | |
| # menu entries you want to add after this comment. Be careful not to change | |
| # the 'exec tail' line above. | |
| menuentry "SmartOS" { | |
| recordfail | |
| insmod ext2 | |
| insmod gzio |
| <div> | |
| When REMOVING an object tag safari does not like it hangs. | |
| <br><br> | |
| </div> | |
| <button id="inc">Increase Counter</button> <label id="counter">0</label><br> | |
| <button id="crash">Make Safari Hang</button> | |
| <div id="content"></div> |
| const fs = require('fs') | |
| const path = require('path') | |
| const child_process = require('child_process') | |
| const pnpmPath = path.resolve(__dirname, '../temp/pnpm-local/node_modules/pnpm/bin/pnpm.cjs') | |
| const tempPath = path.resolve(__dirname, '../temp') | |
| let argv = process.argv.slice(2) | |
| // Simple order fix to avoid building or required a full parser (only works with the two specific parameters basically) |
First create a share
zfs create zones/camera
Share with access to all intranet pcs with write access as root
zfs set sharenfs='sec=none,rw=*,anon=0' zones/camera
Note: sec=none must PRECEED any following option see man share_nfs
| .ProseMirror .MathBlock pre { | |
| background: var(--default-back); | |
| color: rgb(var(--default-font)); | |
| font-size: 0.8em; | |
| display: flex; | |
| padding: 1em; | |
| } | |
| .ProseMirror .MathBlock { | |
| display: flex; |
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |
| [req] | |
| default_bits = 2048 | |
| prompt = no | |
| default_md = sha256 | |
| req_extensions = v3_req | |
| distinguished_name = dn | |
| [ dn ] | |
| C= CountryCode | |
| ST= State |