Slashdot Mirror


User: WongsHongKongTailor

WongsHongKongTailor's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:Bad GUI and no CLI: way too common on Take This GUI and Shove It · · Score: 1

    % df -h
    Filesystem Size Used Avail Capacity Mounted on /usr/share/warez 104G 91G 4.1G 96% /warez

    shows me how much free space on disks

    then just mv the files there

  2. Re:Bad GUI and no CLI: way too common on Take This GUI and Shove It · · Score: 1

    mv Some*2E04* "E:\Tv Shows\Some TV Show\Season 2\"

    First argument wildcards, second argument tab completion.

  3. Re:Bad GUI and no CLI: way too common on Take This GUI and Shove It · · Score: 2, Informative

    pf example: pass in on $ext_if inet proto tcp from any to ($ext_if) \ port $tcp_services flags S/SA keep state pass in on $ext_if inet proto tcp from any to $comp3 port 80 \ flags S/SA synproxy state iptables example: iptables -A INPUT -i $ext_if -p tcp --dport $tcp_services --syn -j ACCEPT iptables -A FORWARD -i $ext_if -p tcp -d $comp3 --dport 80 --syn -j ACCEPT Personally I find the pf format much easier to read/remember/use/debug. Read into it you will find out it is pretty neat.

  4. Re:not very complicated ... and that's the good pa on TwIP - An IP Stack In a Tweet · · Score: 1

    "Unix is simple. It just takes a genius to understand its simplicity." â" Dennis Ritchie