후회...
이동거리: 12.6KMs
총 시간: 44분 00초
이동시간: 39분20초
최고속도: 33KMs/h
평균속도: 19KMs/h
29일 등교:
이동거리: 13.95KMs
총 시간: 42분 22초 (안경점 들른시간 약 2분?포함)
이동시간: 35분 05초
최고속도: 59KMs/h (튄거다)
평균속도: 23KMs/h (길 좋은곳으로 돌아와서 증가)
정확하진 않치만 약 1.4KM 정도 돌아오는것 같다. 하지만 시간은 비슷한듯....
길도 좋고 경치도 좋고.. 유등천보다는 갑천이 훨씬 정비가 잘 되어 있다는 느낌이 든다.
이동거리: 12.21KMs
총 시간: 42분 34초
이동시간: 37분52초
최고속도: 28KMs/h
평균속도: 19KMs/h
27일 등교:
이동거리: 11.85KMs
총 시간: 42분 15초
이동시간: 37분05초
최고속도: 27KMs/h
평균속도: 19KMs/h
그냥 천천히 달려봤다.
총 시간은 약 2분 정도차이. 이동시간은 약 5분정도 차이...
천천히 달렸지만 쉬는시간은 더 적었다는 건가?? 운좋게 신호등이 덜걸렸나? ^^
빨리달리나 천천히 달리나 약 5분 차이라는거!!
총 거리: 9.13KM
총 시간: 25분
총 이동시간: 14분 44초
최고속도: 72KMs/h
평균속도: 37KMs/h
갑자기 비가 많이 와서 빨리 갈 수가 없었다.
자전거와 비교해서 약 3KM정도 돌아가는 것이다. 그냥 봤을땐 많이 돌아가는건데....
3KM정도면.....뭐.... 괜찮다..^^;;
너무 더운 하루였다.
오늘 집에서 학교까지 로그이다.
총 거리: 12.01KM
총 시간: 39분 40초
이동 시간: 32분14초
최고속도: 42KM/h(구라다.튀는 구간이 있나보다)
평균속도: 22KM/h
어제 집에 갈때보다 평균속도가 약간 늘었다. 바람이 좀 덜불어서 그런것 같다.
이동 시간도 32분으로 30분 이내로 끊을 수 있을 것 같다.
여행 갈때도.. 아무 말썽없이 잘 되서 하루 하루 로그를 남겼으면 좋겠다. ^^;;
어제 학교에서 집까지 자전거로 간 패스이다.
총 거리는 12.15KM
총 시간: 38분 52초
이동 시간: 36분 11초
최고속도: 30KM/h
평균속도: 20KM/h
끼야...GPS로거 좋다~~~~ 미국에서 공수해온 MG-950d.. 자전거 거치대가 포함되어서 무선 속도계 역할도 하고 GPS로거와 블루투스도 된다. 정말 만능이다. 자체 LCD도 있어서 속도, 이동거리, 시간 등등 이 다 표시된다. 물건이다. ^^;; 단점은...비싸다...
평균속도를 앞당기는데 주력해야지~!!!!
나오는 창의 filter값에 encode를 입력하고 엔터...
network.standard-url.encode-query-utf8는 ;true
network.standard-url.encode-utf8는 ;false
이렇게 하면 잘 나온다. ㅋㅋㅋ 쉽네..
heartbeat 를 다운받고
send_arp 사용하여 update
예)
$./send_arp eth0 192.168.10.1 mac broadcast netmask
rsync
Rsync updates the copies the files that have changed and even then only transfers the parts of those files that have changed. That is useful for saving bandwidth when backing up over the network. For safety, transfer between two machines is done via SSH. Rsync is especially good for backing up home directories.
The command for transfering to a remote machine is:
sudo rsync --delete -azvv -e ssh /home remoteuser@remotehost.remotedomain:./backupdirectory
-z compresses the data --delete deletes files that don't exist on the system being backed up. Maybe you want this, maybe not. -a preserves the date and times of the files (same as -t), descends recursively into all directories (same as -r), copies symlinks as symlinks (same as -l), preserves file permissions (same as -p), preserves groups (same as -g), preserves file ownership (same as -o), and preserves devices as devices (same as -D). -vv increases the verbosity of the reporting process
Allowing other users to run sudo
To add a new user to sudo, open the Users and Groups tool from System --> Administration menu. Then click on the user and then on properties. Choose the User Privileges tab. In the tab, find Executing system administration tasks and check that.
In the terminal this would be: sudo adduser $user admin, where you replace $user with the name of the user.
