2011年11月12日
ntpd[3022]: sendto(xxx.xxx.xxx.xxx) (fd=21): Invalid argument
こんなエラーが多発していた。
どうやら、networkのインターフェースが見つけられないっぽい?
そういえば、ネットワーク周りいじったな。。。。
/etc/init.d/ntp restart
で解決したっぽい。
どうやら、networkのインターフェースが見つけられないっぽい?
そういえば、ネットワーク周りいじったな。。。。
/etc/init.d/ntp restart
で解決したっぽい。
2011年10月25日
Couldn't load private key (ciphers other than DES-EDE3-CBC not supported)
2011年08月26日
viでバイナリエディタ
2011年08月05日
sudoの反応が帰ってこない
# sudo su -
とかやると、数分帰ってこない
しばらく経つと、帰ってきてrootになってる
でも、色々イライラする
で、逆引きが設定されてなかったが為に。。。。。
/etc/hosts
127.0.0.1 localhost.localdomain localhost ホスト名
で、解決
とかやると、数分帰ってこない
しばらく経つと、帰ってきてrootになってる
でも、色々イライラする
で、逆引きが設定されてなかったが為に。。。。。
/etc/hosts
127.0.0.1 localhost.localdomain localhost ホスト名
で、解決
2011年07月10日
2011年06月22日
Adobe Security Updates
Spam?ウイルス?
全然Adobeと関係無いみたい
ついクリックしそうになる感じだね。。。。。
とりあえず、お気をつけあれー
=================ヘッダー=========================
Return-Path:
X-Original-To: xxxxx@xxxxxxxxxxxxx
Delivered-To: xxxxx@xxxxxxxxxxxxx
Received: from n6.sivit.org (n6.sivit.org [194.146.224.109])
by mail.directorz.jp (Postfix)
with ESMTP id 29DC8B70265 for;
Wed, 22 Jun 2011 01:04:41 +0900 (JST)
Received: from n6.sivit.org (webusers@localhost [127.0.0.1])
by n6.sivit.org (8.13.4/8.13.4/Debian-3sarge3)
with ESMTP id p5LG4cb2027844 for;
Tue, 21 Jun 2011 18:04:39 +0200
Received: (from webusers@localhost)
by n6.sivit.org (8.13.4/8.13.4/Submit) id p5LG4bvV027842;
Tue, 21 Jun 2011 18:04:37 +0200
Date: Tue, 21 Jun 2011 18:04:37 +0200
Message-Id: <201106211604.p5LG4bvV027842@n6.sivit.org>
To: xxxxx@xxxxxxxxxxxxx
ScriptPath: riadzinoun.com/.sendme.php
Subject: Adobe Security Updates
From: Adobe
Reply-To:
MIME-Version: 1.0
Content-Type: text/html
Content-Transfer-Encoding: 8bit
=================ヘッダーここまで===================
A critical vulnerability has been identified in Adobe Flash Player and Adobe Reader.
Adobe recommends users of Adobe Flash Player, Adobe Reader update to last versions.
Download Updates
You may use the Adobe Download Manager to seamlessly install your software.
Copyright ゥ 2010 Adobe Systems Incorporated. All rights reserved.
全然Adobeと関係無いみたい
ついクリックしそうになる感じだね。。。。。
とりあえず、お気をつけあれー
=================ヘッダー=========================
Return-Path:
X-Original-To: xxxxx@xxxxxxxxxxxxx
Delivered-To: xxxxx@xxxxxxxxxxxxx
Received: from n6.sivit.org (n6.sivit.org [194.146.224.109])
by mail.directorz.jp (Postfix)
with ESMTP id 29DC8B70265 for
Wed, 22 Jun 2011 01:04:41 +0900 (JST)
Received: from n6.sivit.org (webusers@localhost [127.0.0.1])
by n6.sivit.org (8.13.4/8.13.4/Debian-3sarge3)
with ESMTP id p5LG4cb2027844 for
Tue, 21 Jun 2011 18:04:39 +0200
Received: (from webusers@localhost)
by n6.sivit.org (8.13.4/8.13.4/Submit) id p5LG4bvV027842;
Tue, 21 Jun 2011 18:04:37 +0200
Date: Tue, 21 Jun 2011 18:04:37 +0200
Message-Id: <201106211604.p5LG4bvV027842@n6.sivit.org>
To: xxxxx@xxxxxxxxxxxxx
ScriptPath: riadzinoun.com/.sendme.php
Subject: Adobe Security Updates
From: Adobe
Reply-To:
MIME-Version: 1.0
Content-Type: text/html
Content-Transfer-Encoding: 8bit
=================ヘッダーここまで===================
A critical vulnerability has been identified in Adobe Flash Player and Adobe Reader.
Adobe recommends users of Adobe Flash Player, Adobe Reader update to last versions.
Download Updates
You may use the Adobe Download Manager to seamlessly install your software.
Copyright ゥ 2010 Adobe Systems Incorporated. All rights reserved.
2011年05月09日
configure: error: you must configure in a separate build directory
glibcのバージョンアップをしようと思ったら怒られた
INSTALLファイルを見てみると
「if you have unpacked the
glibc sources in `/src/gnu/glibc-2.4', create a directory
`/src/gnu/glibc-build' to put the object files in.」
と書いてあった。
要は
glibc-buildっていうディレクトリをどっかに作って、そこからconfigureを叩けと
# cd /usr/local/src
# wget http://ftp.gnu.org/gnu/glibc/glibc-2.13.tar.gz
# tar zxvf glibc-2.13.tar.gz
# mkdir glibc-build
# cd glibc-build
# ../glibc-2.13/configure
で、解決
だけど
checking for .cfi_personality and .cfi_lsda pseudo-ops... no
configure: error: assembler too old, .cfi_personality support missing
で、また怒られたので
glibc-2.10.1
で行くことにしよう
INSTALLファイルを見てみると
「if you have unpacked the
glibc sources in `/src/gnu/glibc-2.4', create a directory
`/src/gnu/glibc-build' to put the object files in.」
と書いてあった。
要は
glibc-buildっていうディレクトリをどっかに作って、そこからconfigureを叩けと
# cd /usr/local/src
# wget http://ftp.gnu.org/gnu/glibc/glibc-2.13.tar.gz
# tar zxvf glibc-2.13.tar.gz
# mkdir glibc-build
# cd glibc-build
# ../glibc-2.13/configure
で、解決
だけど
checking for .cfi_personality and .cfi_lsda pseudo-ops... no
configure: error: assembler too old, .cfi_personality support missing
で、また怒られたので
glibc-2.10.1
で行くことにしよう




