1
0

Update FreeBSD.md

This commit is contained in:
2023-11-26 17:49:39 +01:00
parent 64819f017b
commit f2c8a47d8f

View File

@ -26,3 +26,12 @@ iocage create -n <jailname> ip4_addr="10.192.0.28/24" defaultrouter="10.192.0.1"
zfs snapshot -r old_pool/dataset_name@relocate
zfs send -Rv old_pool/dataset_name@relocate | zfs receive -d new_pool/new_dataset_name
```
## tcsh
### Execute command from history
```sh
history | grep <command>
!<id command>
```