그래픽 응용프로그램 열기
명령줄에서 그래픽 응용프로그램 열기
그래픽 응용프로그램은 응용프로그램의 이름을 단순한 입력하여 터미널 윈도우 또는 콘솔 세션에서 실행 할 수 있습니다.
[fedorauser@localhost]$ firefox
파일 이름대 응용프로그램 이름
프로그램은 프로그램 꾸러미에서 제공된 실행 할 수 있는 파일의 이름을 사용하여 명령 줄에서 열립니다. 데스크탑 메뉴에 있는 항목은 종종 이를 실행하는 파일에서 다른 이름으로 지정 되어질 수 있습니다. 예를 들면, 그놈 데스크탑 관리 유틸리티는 Disks 와 같은 메뉴에서 나타나고, 이를 실행하는 파일은 `/usr/bin/gnome-disks`입니다. |
When a program is executed on the command line, the terminal is occupied until the program completes. When a graphical application is executed from the command line, the program’s error output, or STDERR
, is sent to the terminal window. This can be especially useful when troubleshooting.
[fedorauser@localhost]$ astromenace-wrapper AstroMenace 1.3.1 121212 Open XML file: /home/fedorauser/.config/astromenace/amconfig.xml VFS file was opened /usr/share/astromenace/gamedata.vfs 제조사 : OpenAL Community 이미지 합성 : OpenAL Soft 버전 : 1.1 ALSOFT 1.15.1 ALut 버전 : 1.1 글꼴 초기화됨: DATA/FONT/LiberationMono-Bold.ttf 현재 비디오 방식: 3200x1080 32비트 Xinerama/TwinView 감지됨. Screen count: 2 Screen #0: (0, 0) x (1920, 1080) Screen #1: (1920, 0) x (1280, 1024) 지원 해상도 목록: 640x480 16비트 640x480 32비트 640x480 0비트 768x480 16비트 <잘린 출력>
To launch a graphical application, but fork the additional output into the background and return the terminal for immediate use, use the shell’s job control
feature.
[fedorauser@localhost]$ emacs foo.txt &
세션 끝내기
Applications that hold the command line prompt until they complete will close when the terminal session ends, even if they are forked into the background. |
GUI programs can also be launched on one TTY
and displayed on another by specifying the DISPLAY
variable. This can be useful when running multiple graphical sessions, or for troubleshooting problems with a desktop session.
-
Switch to another TTY using the key combination Ctrl+Alt+F2 and log in. Note that consoles are available by default with F2 through F6.
-
Identify the X session you want to target. The
DISPLAY
variable is always an integer preceded by a colon, and will be :0 in most cases. Check the arguments of the currently running X process to verify the value. The command below shows both theDISPLAY
variable as well as the TTY that X is running on,tty1
.[fedorauser@localhost]$ ps aux|grep /usr/bin/X root 1498 7.1 1.0 521396 353984
tty1
Ss+ 00:04 66:34 /usr/bin/X:0
vt1 -background none -nolisten tcp -auth /var/run/kdm/A:0-22Degc root 23874 0.0 0.0 109184 900 pts/21 S+ 15:35 0:00 grep --color=auto /usr/bin/X -
Specify the
DISPLAY
variable when executing the program.[fedorauser@localhost]$ DISPLAY=:0 gnome-shell --replace &
-
Switch back to the TTY the graphical session is running on. Since the example above shows X running on
vt1
, pressing Ctrl+Alt+F1 will return to the desktop environment.
Launching Applications with Alt+F2
Most desktop environments follow the convention of using the key combination Alt+F2 for opening new applications. Pressing Alt+F2 brings up a prompt for a command to be entered into.
Commands entered into this dialog box function much as they would if entered in a terminal. Applications are known by their file name, and can accept arguments.





데스크탑 메뉴에서 응용프로그램 시작하기
Applications can also be opened from the menu system provided by the desktop environment in use. While the presentation may vary between desktop environments, the menu entries and their categories are provided by the individual application and standardized by the freedesktop.org Desktop Menu Specification. Some desktop environments also provide search functionality in their menu system to allow quick and easy access to applications.
그놈 메뉴 사용하기
`개요’라고 불리는 그놈 메뉴는 기본 표시화면의 상단 왼쪽에 있는 '활동' 누름 단추를 누르거나, 상단 좌측 '핫 코너’를 지나서 마우스를 이동하거나, Super (Windows) 키를 눌러서 접근 할 수 있습니다. '개요’는 응용프로그램에 추가적인 문서를 제공합니다.
메뉴에서 항목을 선택하는 것은 '검색 상자’를 사용하는 것이 가장 좋습니다. 간단하게 '개요’라고 불러오고, 실행하려는 응용프로그램의 이름을 입력하기 시작합니다. 엔터를 누르는 것은 강조된 응용프로그램을 실행하거나, 또는 화살표 키 또는 마우스를 사용하여 대안을 선택 할 수 있습니다.
'개요’는 또한 검색 될 수 있습니다. '대시’라고 불리우는 왼쪽에 있는 막대는 자주 사용되는 응용프로그램과 그리드 아이콘을 표시됩니다. 그리드 아이콘에서 누르면 자주 사용하는 응용프로그램을 표시하는 윈도우의 중앙에 있는 그리드를 가져옵니다. 그리드는 화면 하단에 '모두' 누름 단추를 사용하여 선택하면 모든 사용 가능한 응용프로그램을 표시합니다.
그놈 쉘 사용에 대하여 더 알아보려면, 그놈 CheatSheet을 방문하세요
Want to help? Learn how to contribute to Fedora Docs ›