리눅스를 사용하면서 시간이 지날수록 확실해 지는 것은 왠만한 해답은 man page에 있다. 문제는 그 것을 찾을 수 있는 인내가 필요한것.
삶을 살아가면서 앞에 살았던 사람들의 지혜를 알아서 이 삶을 좀더 윤택 하게 살아 가기위해선 인내가 역시 필요 하다. 그래서 리눅스를 사용하는 것이 윈도우에 비해 더 매력적인가? 삶과 너무 똑같기 때문에...
진짜 쉬운 삶이 있을까. 아무 생각없이 클릭만으로 살아 갈 수 있는... 그런 운영체제가 있을까? 아무 생각없이 클릭만으로 문제 없고, 내가 원하는 것을 해낼 수 있는 것이..
없겠지..
그럼 더욱 현실에 가까운 것을 선택하는 것이 나을 듯 하다. 물론 쉬운 것을 버리는 것은 아니고..
새로운 시스템을 깔고 나서, (base) 이미 백업해둔 것을 가져오면 될 것 같다. 찾던 해답 dpkg man page 마지막 에 있었다. (알려준 이름모를 한국데비안 유저에게 감사를)
To list packages related to the editor vi: dpkg -l '*vi*'
To see the entries in /var/lib/dpkg/available on two packages: dpkg --print-avail elvis vim | less
To search the listing of packages yourself: less /var/lib/dpkg/available
To remove an installed elvis package: dpkg -r elvis To install a package, you first need to find it in an archive or CDROM. The "available" file shows that the vim package is in section "editors": cd /cdrom/hamm/hamm/binary/editors dpkg -i vim_4.5-3.deb
To make a local copy of the package selection states: dpkg --get-selections >myselections You might transfer this file to another computer, and install it there with: dpkg --set-selections <myselections Note that this will not actually install or remove anything, but just set the selection state on the requested packages. You will need some other application to actually download and install the requested packages. For example, run dselect and choose "Install".
Ordinarily, you will find that dselect(1) provides a more convenient way to modify the package selection states.