사이드바 영역으로 건너뛰기

게시물에서 찾기2009/01

5개의 게시물을 찾았습니다.

  1. 2009/01/22
    GDB
    우분투
  2. 2009/01/20
    mesa, openGL
    우분투
  3. 2009/01/20
    cups-pdf
    우분투
  4. 2009/01/19
    auto-apt
    우분투
  5. 2009/01/19
    우분투의 X윈도우를 터미널창에서 끄고 시작하는 명령어
    우분투

GDB

GNU debugger
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

mesa, openGL

리눅스에서 3D로 무언가를 보고 싶을 때있어야 하는
library 같은데,,

잘 설치가 안되는구먼;;

에효..
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

cups-pdf

If you are using OpenOffice it is very easy to create documents there is an option in the File menu ‘Export as PDF’.For other applications, you will need to do the following procedure

We need to install cups-pdf this software is designed to produce PDF files in a heterogeneous network by providing a PDF printer on the central fileserver. It is available under the GPL and is packaged for many different distributions or can be built directly out of the source files.

Install cups-pdf

sudo apt-get install cups-pdf

You need to chnage the following file permissions

sudo chmod +s /usr/lib/cups/backend/cups-pdf

Configure CUPS for the PDF printer.

- Select SYSTEM > ADMINISTRATION > PRINTERS > NEW PRINTER
- Select LOCAL PRINTER
- Use detected printer: PDF PRINTER
- Select Print Driver:
- Manufacturer: Generic
- Model: Postscript Color Printer
- Name: postscript-color-printer-rev3b
- Click APPLY

When printing from any application, select the newly created postscript-color-printer-rev3b printer to generate PDF files.

Output files are stored in your home directory under /PDF subirectory.

To change the default location of the PDF output

Edit the /etc/cups/cups-pdf.conf file

gksudo gedit /etc/cups/cups-pdf.conf

look for

Out ${HOME}/PDF

and change to something like below

Out ${HOME}/my_print_to_pdf_folder

and restart

sudo /etc/init.d/cupsys restart

 

source : Ubuntu greek

진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

auto-apt

./configure할 때 에러 나는걸 자동적으로 처리 해주는 패키지가 auto-apt란 프로그램인데 그걸 한번 써보시죠
아래 두 라인을 먼저 실행시켜서 auto-apt설치 하시고

Code:
sudo apt-get -y install auto-apt;
sudo auto-apt update && sudo auto-apt updatedb && sudo auto-apt update-local;


파이어폭스 소스 있는 폴더 가서 ./configure하는 대신 아래 명령어를 실행시키세요
Code:
auto-apt run ./configure


컴터가 configure돌리다가 필요한건 알아서 설치할겁니다.
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크

우분투의 X윈도우를 터미널창에서 끄고 시작하는 명령어

1. 우분투의 X윈도우를 터미널창에서 끄고 시작하는 명령어

sudo /etc/init.d/gdm [명령]

시작   : start
중지   : stop
재시작 : restart

2. 우분투를 켰을때 X윈도우를 자동으로 실행하지 않고 터미널로 시작되도록 설정하는 명령어

sudo update-rc.d -f gdm remove

다시 X윈도우를 자동으로 뛰우게 하고 싶으면 아래의 명령어를 입력한다.

sudp update-rc.d gdm defaults


출처 : 제로님의 블로그 글
진보블로그 공감 버튼트위터로 리트윗하기페이스북에 공유하기딜리셔스에 북마크