라벨이 ubuntu인 게시물 표시

ubunt convert utm to WGS84

<UTM to WGS84> NAME utm2ll - Convert UTM coordinates to latitude/longitude geographical coordinates SYNOPSIS utm2ll [-L] | [utm_x utm_y zone [nad27 | nad83 | wgs84]] ex)utm2ll 431400 3990390 52 wgs84 <WGS84 to UTM> NAME ll2utm - Convert latitude/longitude geographical coordinates to UTM coordinates SYNOPSIS ll2utm [-L] | [latitude longitude [nad27 | nad83 | wgs84]] ex)ll2utm 36.05565665 128.2383285  wgs84 *ubuntu 12.04에서는 utm2ll이 설치해도 되지 않는다.  아래와 같이 해결한다. Workaround, and single command fix (exclusive of bulding) patch for package maintainers: cd /usr/local/src sudo mkdir drawmap cd drawmap sudo apt-get source drawmap sudo apt-get build-dep drawmap cd drawmap-2.5/ sudo bash -c 'echo "utm2ll usr/bin/" >>debian/install' sudo DEBFULLNAME="Your name <your@email>" dch -i "Added utm2ll to the file install list" sudo dpkg-build...

ubuntu vsftpd 설정

vsfpd.conf의 다음 부분을 찾아서 주석을 제거 vsftpd.conf chroot_local_user=YES FTP 데몬 재시작(디렉토리 home에서 실행하면 안됨) cd ~ ~$ sudo service vsftpd restart 이후 접속이 안될때(홈디렉토리 권한문제_) sudo chmod a-w /home/foo_user

python-gdal 설치

----------우분투에서 gdal을 사용하기위한 두 가지 방법-------------- 1. 커멘드라인으로 실행하기 $sudo apt-get install gdal-bin 2. 우분투 python-gdal을 사용할 때 $sudo apt-get install python-gdal 우분투에서 python-gdal을설치할 때 의존성문제가 발생한다면 아래와같은 명령어로 실행 한다 . ->sudo apt-get -f install 그 다음 다시 설치한다. ----------python에서 gdal 사용하기----------------- Ctrl+Alt+T (Open terminal) cd ~/folder/for/builds/from/source sudo apt-get install build-essential python-all-dev wget http://download.osgeo.org/gdal/1.11.0/gdal-1.11.0.tar.gz tar xvfz gdal-1.11.0.tar.gz cd gdal-1.11.0 ./configure --with-python make sudo make install

ubuntu 14.04 desktop에 root 추가하기

우분투에서 root 계정 암호 설정하기 >sudo passwd root Step 1. Execute the following command in terminal. sudo gedit /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf Step 2: Add the following statement. greeter-show-manual-login=true Step 3: Save and close gedit.