분류 전체보기
-
use UUID to fix a device nameComputer/linux 2013. 12. 18. 13:59
One target of the automatic backup script is the external usb disk named as /dev/sdl1. After rearrange the usb cables over all usb device, it was recognized as /dev/sdk1 as follows:Dec 18 13:21:46 kaffee kernel: [588414.483990] sd 13:0:0:0: [sdk] 976773168 512-byte logical blocks: (500 GB/465 GiB) Dec 18 13:21:46 kaffee kernel: [588414.484521] sd 13:0:0:0: [sdk] Write Protect is off Dec 18 13:21..
-
식품 첨가물 - 스테비텐 후레쉬Coffee 2013. 11. 8. 02:26
박상, 뻥튀기, 막내가 좋아해서 홈플러스에서 샀다. 근데 먹으면 입안이 이상해서 성분을 보다. 두가지에 놀란다. 밀가루로 만든것. 그리고 첨가료인. 스테비텐후레쉬. 들어가지 말아야 할것들을 넣는 사람들. 모르고 사먹는 사람들. 피곤한 하루다. 참고로 스테비텐-후레쉬는 효소처리 스테비아라고 불리며 설탕 100배인 감미료입니다. 아래 참조 http://djenzyme.com/page/page.php?pid=42339 다른 국내 홈페이지에서는 이 첨가료는 과자에 사용할 수 없다고 나옵니다만, 뻥튀기에 사용되었구요. 영문 이름은 Enzymatically Modified Stevia 이며 아래 위키에 자세한 설명이 나와 있습니다. http://en.wikipedia.org/wiki/Stevia 특히 제가 주목하는..
-
remove a user from a specific groupComputer/linux 2013. 10. 28. 14:20
The old post shows how to add a user to a specific group. From time to time, I need to remove a user from a specific group. So here what I summarize how to do this.2009/06/29 - [computer/linux] - add a user to a specific group remove a user from a specific groupHere auser is the fake account to be removed from www-data groupStep 1# vigrchange from auser:x:1001:www-data to auser:x:1001:Then they ..
-
convert ogg to mp3 by avconv on Debian LinuxComputer/linux 2013. 8. 20. 12:41
The simple and naive command, which I think, be fitted to almost all situation, is avconv -i input.ogg output.mp3, because of its man page as follows: By default avconv tries to pick the "best" stream of each type present in input files and add them to each output file. For video, this means the highest resolution, for audio the highest channel count. For subtitle it's simply the first subtitle ..