brew for Mac OS X

$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"     $ brew install ant   ====================================== ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"   brew install mc -------------------------- Error: The contents of the SDKs in your Command Line Tools (CLT) installation do not match the SDK folder names. A clean reinstall of Command Line Tools (CLT) should fix this. […]

Read More

apache : 시간당 평균히트수로 초당접속수 계산 이야기

아파치로그를 통해 초당 접속수 예측과 트래픽 정산에 대한 이야기를 한다. 본 내용은 깊이 있게 사유하지 않으면 자신의 욕심대로 해석할 우려가 있음을 전제한다. 또한, 수치상의 통계치와 실상에서 발생하는 것은 생각보다 매우 다르기 때문에 시기와 환경에 따라 실상에 대한 알파값을 반드시 포함해야 사실에 가까운 예측을 할 수 있다는 점도 덧붙인다. 이 알파값을 요즘, 화제의 언어로 표현하면, 천체물리학에서 […]

Read More

MS ACCESS : SaveAttachments file

3월 15, 2015 Datebase MS ACCESS : SaveAttachments file에 댓글 닫힘

Option Compare Database Private Sub Command65_Click() If MsgBox("Confirm?", vbYesNo, "Confirm") = vbYes Then SaveAttachments "C:\Users\owl\Documents\pic\foldname", "tablename", "fieldname", "key_fieldname" Else End If End Sub Public Function SaveAttachments(strPath As String, strTable As String, strField As String, strKeyField As String, Optional strPattern As String = "*.*") As Long Dim dbs As DAO.Database Dim rst As DAO.Recordset2 Dim rsA […]

Read More

공유기 안에 있는 서버 ssh 접속속도 지연 해소법

공유기 안에 리눅스 서버가 있을 때, ssh 접속속도가 느릴 경우가 있는데, 이는 접속자의 IP가 192.168.0.1 과 같은 공유기 IP로 인식되고, 이를 보안인증에서 네임을 해석하는 알고리즘에 지연현상이 발생하기 때문이다. 이 경우 다음과 같이 간단히 접속지연 문제를 해소할 수 있습니다. vi /etc/hosts 192.168.0.1 gateway

Read More

Samba 관련 유용한 명령어들

[root@owl45 samba]# smbpasswd -a owl New SMB password: Retype new SMB password: Added user owl. [root@owl45 samba]# smbclient -L owl45 -l 192.168.0.45 -U owl Enter owl's password: Sharename Type Comment --------- ---- ------- public Disk Public Stuff IPC$ IPC IPC Service (OWL45) owl Disk Home Directories Server Comment --------- ------- Workgroup Master --------- ------- [root@owl45 […]

Read More