Author: miyabayashi

【iOS】LocationManagerのevent handler

LocationManagerでGPSを使う。 plistに下記のkeyを追加する。 NSLocationWhenInUseUsageDescription – (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { ・・・ }

【Ubuntu】SSH パスワード認証禁止する

sshで鍵認証アクセス設定後、さらにセキュリティを高めるためにパスワード認証による アクセスを禁止しておく。   /etc/ssh/sshd_config #PasswordAuthentication yes を下記に変更 PasswordAuthentication no   また、下記の設定も確認する。 RSAAuthentication yes PubkeyAuthentication yes RhostsRSAAuthentication no   sshdを再起動して反映 sudo service

Continue reading【Ubuntu】SSH パスワード認証禁止する