OS X System Tools Settings

Settings

OS X System Tools Settings

Introduction

Here are some of my OS X system tools settings. See also: Operating Systems, Programs, Software.

Disk Utility: Burn Disc Image/ISO (OS X 10.7)

1) File: Open Disk Image, choose .ISO file

2) still in Disk Utility, select .ISO item from left and then the item below the .ISO item, example:

Fedora-16-i686-Live-Desktop.iso

Fedora-16-i686-L <-- this one

3) click Burn icon

4) insert burnable disc and start burning

5) after burning verifying will begin (you see "Verifying" window)

TCPDUMP: Capture Packet Trace (OS X 10.11)

Capture packet trace

sudo tcpdump -i en0 -s 0 -B 524288 -w ~/Desktop/DumpFile01.pcap

Ctrl + C, when ready

Print results

tcpdump -s 0 -n -e -x -vvv -r ~/Desktop/DumpFile01.pcap

Print results with more details

tcpdump -s 0 -n -e --number -XX -vvv -r ~/Desktop/DumpFile01.pcap

Info

TCPFLOW: Analyze Packet Trace (OS X 10.11)

Comments

See tcpdump above

Process Tcpdump Generated File

cd Desktop

tcpflow -a -o ~/Desktop/tcpflow_outdirectory -Fk -r ~/Desktop/DumpFile01.pcap -w ~/Desktop/tcpflow1.pcap

Show Live Results on Screen

cd Desktop

sudo tcpflow -a -c -i en0

Last modified: February 18th, 2017

Author: Tomi Häsä (tomi.hasa@gmail.com)

URL: http://sites.google.com/site/tomihasa/os-x-tools-settings