yjiang's cake

ZModem integration for iTerm 2

源地址: https://github.com/mmastrac/iterm2-zmodem

步骤

    Regular expression: rz waiting to receive.\*\*B0100
    Action: Run Silent Coprocess 
    Parameters: /usr/local/bin/iterm2-send-zmodem.sh 
    #勾选instant
    Regular expression: \*\*B00000000000000
    Action: Run Silent Coprocess 
    Parameters: /usr/local/bin/iterm2-recv-zmodem.sh 
    #勾选instant

mac启用无线网卡监听模式及扫描

使用自带的airport启用监听模式

默认airport无法在终端下使用,需要把airport软连接到/usr/bin/等环境

sudo ln -sf /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/bin/

airport 参数

airport <interface> <verb> <options>
-s #扫描当前可用网络
-z #断开无线,需要root权限

使用airport进入监听模式

  1. 使用命令 ifconfig 确定当前无线网卡名称
  2. airport -s 扫描当前周边无线,并选定一个,复制其mac地址,记住channel号
  3. sudo airport sniff 进入监听模式


使用wash扫描网络(需root权限)

sudo wash -i <interface>
#更多命令参照`wash --help`


使用reaver解PIN(需root权限)

sudo reaver -i <interface> -b <mac> -vv -c <channel>

osx下挂载NTFS为可读写

首先需要连接移动磁盘后全部推出

挂载

diskutil list #查看当前盘符
cd /Volumes/
mkdir disk1
sudo mount_ntfs -o rw,nobrowse /dev/disk2s1 /Volumes/disk1
#不加nobrowse无法进行可读写挂载
open /Volumes/ #使用finder打开进行操作

TimeMachine与稀疏磁盘映像

稀疏磁盘映像

普通的磁盘映像文件 (.dmg)的大小与其代表的实际磁盘是一样的(尽管其中尚有空间未使用),而稀疏磁盘映像文件 (.sparseimage) 的大小仅为实际使用数据的磁盘空间。

稀疏束

稀疏束是OSX10.5中,为了使TimeMachine更高效工作而引入的一个新概念。

创建一个用于TimeMachine的256G稀疏磁盘映像

hdiutil create -size 256g -type SPARSEBUNDLE -nospotlight -volname "Time Machine" -fs HFS+J -verbose ~/Desktop/{myMacName}_{myMacAddress}.sparsebundle
#创建的稀疏磁盘映像只需双击即可挂载,并且支持samba协议来远程挂载

强制加载映像为TimeMachine卷

sudo tmutil setdestination -p "/Volumes/Time Machine"

引用

osx使用terminal-notifier实现定时休息提醒

terminal-notifier 让终端弹出消息通知

brew install terminal-notifier
terminal-notifier -message "该休息一会儿了" -title"定时休息"
#更多参数自行 --help

能弹出消息通知了,剩下的就好办了,想多久提醒加到crontab里就可以了.

contab -e
##每小时执行一次
* */1 * * * terminal-notifier -message "该休息一会儿了" -title"定时休息"

terminal-notifier

crontab扩展阅读

Copyright © 2016 yjiang's cake

返回顶部