Category : 글 꾸러미/연구하기, S2 / Posted at : 2010/03/25 20:15
여러모로 맥에서 ftp 프로그램 사용하기가 좋지 않았다. 맥에선 유용한 공개 소프트웨어들도 적어서 말이다. 개발자에겐 좋은 제도 일지도.. 어쨋든 잘 쓰고 있었는데 sftp가 필요한데 이건 무료이거나 학교 라이센스가 있거나 한 것이 없었다. 찾아보니 xterm에서 scp를 이용하면 파일을 전송이 가능하다. scp filename id@server.co.kr:path
나같은 경우 bash쉘에서 bash> scp yang.txt yang@astro10.snu.ac.kr:~/magellan
또한 sftp도 사용가능한데 마찬가지로 쉘에서
bash>sftp yang@astro10.snu.ac.kr 을 하면 접속되고 sftp>와 같이 표시되게 된다. 여기서 get 다운로드 put 업로드 ls 서버 쪽 목록 출력 lls 클라이언트쪽 목록 출력
을 사용할 수 있다.
상당히 유용하다. 그럼이제 onebutton(OSX용 무료 ftp프로그램)은 지울까?
Posted By Yang
트랙백 주소 :: http://m57.info/trackback/1112
별아저씨2010/04/08 01:28
-r 옵션을 사용하면 디렉토리 전체도 scp 할수 있습니다. scp는 ftp 보다 보완이 낫다고 알려져 있죠.
Yang2010/04/10 00:12
아, 그런 옵션이 있었군요! 저 옵션 몰라서 다 수작업 한 일이 많아요 ㅡㅡ;; 선생님 감사!ㅋ
Category : 글 꾸러미/일기쓰기, S2 / Posted at : 2009/12/08 16:01
IDL, Interactive Data Language is the extremely useful computer language in graphic data processing. But license is much expensive and the floating license was a troublesome work. For example, whenever I use IDL, I should connect on the network, and delayed a few second.
So, I want to use 6.4 version in my macbook, snowleopard 10.6 because my office have a license of this version. but IDL must be updated as 6.4.1 for using in OSX and license could not be effected.
Today, I installed GDL, GNU Data Language. This is a opensource version of IDL, so comportable, the same with IDL. Install is easy.
For more information, visit " http://gnudatalanguage.sourceforge.net/ "
After installed, occured a error when you call 'plot' processer
GDL> plot, [1,2]
_X11TransSocketINETConnect() can't get address for /tmp/launch-l74O3E/:6000: nodename nor servname provided, or not known
then, you should set DISPLAY variable as ":0".
at X11, you can write
DISPLAY=":0"
This idea is from "http://www.dfanning.com/tips/maccrash.html". ("setenv" is no more use in bash shell.)