Shammer's Philosophy

My private adversaria

2014-11-01から1ヶ月間の記事一覧

Linux iptables samples - 20141129

iptablesはこれまでも使用していたが、情報としてまとめていなかったのでまとめることにしました。 tcp-flagsについて tcp-flags は2つの引数を取る。最初はチェック対象のTCPフラグ、2つ目はどのフラグがONのパケットを対象にするか。指定可能なフラグは以…

Linux tc command samples - 20141125

What is tc? Linuxにはtcコマンドというものがある。https://linuxjf.osdn.jp/JFdocs/Adv-Routing-HOWTO/lartc.qdisc.htmlから辿ることのできる内容が一次情報に近そうだ。結構古そうだが。このコマンドを使用することで、パケットの遅延やdropを発生させる…

Emacs Server configuration

Emacs can be configured as server mode. Server mode helps to collect all process to view or edit text files by emacsclient. Add following configuration to init.el (require 'server) (unless (server-running-p) (server-start)) Add emacsclient…

skkdic-expr2 install failed?

Mac

After replaced my Mac, there is no skkdic-expr2, but skkdic-expr is exists. I installed skktools by the way as same as Install skk-tools into Mavericks - Shammerism. According to クリスマスの日。 - 日々、とんは語る。, glib2 is required to …

Emacs 24.4 Install on Debian, only terminal version.

This is a split article of Install Emacs 24.3 on Debian 7.4 - Shammerism. apt-get install build-essential apt-get install libncurses-dev apt-get install autoconf wget http://ftp.gnu.org/pub/gnu/emacs/emacs-24.4.tar.gz cd emacs-24.4 ./confi…

Disable IPv6 access when executing apt-get

Here is a reference. http://unix.stackexchange.com/questions/9940/convince-apt-get-not-to-use-ipv6-method I think these 2 methods are reasonable. Using -o Acquire::ForceIPv4=true like apt-get -o Acquire::ForceIPv4=true update Generate /etc…

接続先サーバで使用可能なcipherを知りたい--curl_20141108

SSL

curlの最新版、7.39.0が先日出たようだ。これで接続先サーバで使用可能なcipherを知りたい--curl_20141029 - Shammerismのスクリプトを試してみたが、問題なさそうだ。でも、、、なんか不安だ。本当に漏れはないだろうか。とりあえず、実行結果の例。 ~:# ./…

Emacs 24.4

I have been looking forward Emacs 24.4, and it was released at 2014/10/20, according to GNU Emacs For Mac OS X. Then, I install this and use. I was surprised that Ctrl-J key action has been changed. Until 24.3, this key is new-line + auto-…