Archivo del Autor: carlosap
Don Sadoway and the Future of the Liquid Metal Battery
ZFS Compression – A Win-Win
Guest Author This may sound counterintuitive, but turning on ZFS compression not only saves space, but also improves performance. This is because the time it takes to compress and decompress the data is quicker than then time it takes to read and write the uncompressed data to disk (at least on newer laptops with multi-core chips). To… Leer más »
How to enable SSH Root Login In Solaris 11
Permit SSH Login for Root in Oracle Solaris 11 Open Terminal window and switch to root user. 1. Change the file /etc/ssh/sshd_config PermitRootLogin yes with PermitRootLogin no and save file. vi /etc/ssh/sshd_config PermitRootLogin yes 2. Comment out the “CONSOLE=/dev/console” line in /etc/default/login. vi /etc/default/login #CONSOLE=/dev/console 3.Remove “;type=role” from the root entry in /etc/user_attr or use the below command. rolemod -K type=normal root 4. Restart the Services. #svcadm restart svc:/network/ssh:default… Leer más »
Remove all ZFS snapshots
#!/bin/bashfor snapshot in `zfs list -H -t snapshot | cut -f 1`dozfs destroy $snapshotdone
Examples where seek is the size of the file you want in bytes
Install ZFS on CentOS7
Mbuffer
https://everycity.co.uk/alasdair/2010/07/using-mbuffer-to-speed-up-slow-zfs-send-zfs-receive/ http://www.polyomica.com/improving-transfer-speeds-for-zfs-sendreceive-in-a-local-network/ https://www.commandlinefu.com/commands/view/13582/backup-to-lto-tape-with-progress-checksums-and-buffering
Pyznap
https://github.com/yboetz/pyznap
FreeBSD: List disk drives and re-scan after adding hot-add disk (in virtual environments)
$ sudo camcontrol devlist<NECVMWar VMware IDE CDR10 1.00> at scbus1 target 0 lun 0 (cd0,pass0)<VMware Virtual disk 1.0> at scbus2 target 0 lun 0 (da0,pass1)<VMware Virtual disk 1.0> at scbus2 target 1 lun 0 (da1,pass2) $ sudo camcontrol rescan allRe-scan of bus 0 was successfulRe-scan of bus… Leer más »