howto/その他tips †
一行メモ †
dateコマンドの出力を使った引き算をしたい。 †
Youtubeプレーヤーのショートカット †
- 再生/停止 K or Enter
- 10秒早送り/10秒巻戻し L / J
- 5秒早送り/5秒巻戻し →/←
- 再生時間の10%〜90%の位置にジャンプ 1〜9
- 先頭の位置にジャンプ 0
- フルスクリーン/その解除 F
- ミュート/その解除 M
- 再生速度の変更 > と <
ASPIRE5750に関すること †
windowsのzipをlinuxで解凍するとエラーになる場合に、修復して解凍できる †
windowsで作られたzip(おそらく)が、次のエラーでlinuxで解凍できないとき。
$ unzip hoge.zip
Archive: hoge.zip
warning [hoge.zip]: zipfile claims to be last disk of a multi-part archive;
attempting to process anyway, assuming all parts have been concatenated
together in order. Expect "errors" and warnings...true multi-part support
doesn't exist yet (coming soon).
error [hoge.zip]: missing xxxxx bytes in zipfile
(attempting to process anyway)
error [hoge.zip]: attempt to seek before beginning of zipfile
(please check that you have transferred or created the zipfile in the
appropriate BINARY mode and that you have compiled UnZip properly)
以下の修復を試すと解凍できるようだ。zipのバージョンはなるべく新しいものを使う。
$ zip -F hoge.zip --out hoge_mod.zip
$ unzip hoge_mod.zip