DisplayManager
Serwis znalezionych hasełOdnośniki
- Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
- jaki sposób w małej zbiorowości lokalnej obrotny przedsiębiorca bogaci się, inwestuje, uzależnia od siebie innych, prowadzi wystawny tryb życia, wchodzi do...
- nym
- Moghedien zdawała się chętnie przychodzić z pomocą, a wręcz pragnęła jej udzielać, zwłaszcza od czasu, kiedy Siuan nauczyła je sztuczki z ignorowaniem upału...
- powitała jak prawdziwe wybawienie...
- Publishers, Boston-Dordrecht-London 1992, s...
- przez Rep...
- składał żadnej przysięgi...
- U nas som zdrowi w hałupie, niemoze ino Jagnieska Bartkowej Maryny...
- kwietnia roku pańskiego 1901, w dwudziestą piątą rocznicę ucieczki z domu Ja- śnie Wielmożnej Panny Katarzyny Rolnickiejâ...
- Hodża skłonił się i przyspieszył kroku...
Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
_2.authorize: true
DisplayManager._0.setup: /etc/X11/xdm/Xsetup_0
DisplayManager._0.startup: /etc/X11/xdm/GiveConsole
DisplayManager._0.reset: /etc/X11/xdm/TakeConsole
DisplayManager._1.setup: /etc/X11/xdm/Xsetup_0
DisplayManager._1.startup: /etc/X11/xdm/GiveConsole
DisplayManager._1.reset: /etc/X11/xdm/TakeConsole
DisplayManager._2.setup: /etc/X11/xdm/Xsetup_0
DisplayManager._2.startup: /etc/X11/xdm/GiveConsole
DisplayManager._2.reset: /etc/X11/xdm/TakeConsole
This enables me to run gnome and kde at the same time on a single computer with the third GUI terminal spare.
4.3.8 How to X-window remotely?
- Start X-server on the local machine, e.g.
xinit
- From the x-terminal give the remote machine the permission to display on your local screen: xhost name_of_the_remote_server
In the really secure environment of my house, I could even give all servers the permission to display on my screen using (don’t do it when connnected to the Internet):
xhost +
- Telnet the remote server.
- Start an X-program on the remote server directing the display on your local screen, for example, you may start a window manager:
startkde -display local_machine_name:0.0 &
The symbol "&" puts the command in the background, so that your telnet window is still available to you.
The 0.0 means "display zero, screen 0", which is your first screen on the first display and makes 103
sense since you can have many concurrent sessions of X running on your computer with Linux.
You don’t have to specify the "-display" option if your environment variable DISPLAY specifies the correct location on your current terminal, which is the case on my systems by default, but not on everybody else’s as I am told. You can check your DISPLAY setting using:
echo $DISPLAY
- After I finish my remote X session, I restore the access control to my X-server using: xhost -name_of_the_remote_server
or
xhost -
Example. This sequence of commands will run Netscape on the remote machine called marie, directing the display to the X-server with X-windows manager which runs on the local machine hacker:
startx
xhost marie
telnet marie
[login]
netscape -display hacker:0.0 &
[do my stuff]
[logout]
xhost -marie
In principle, you can run a program on any computer on the network, and display the output on any other (not necessarily the one you are sitting at).
I use remote X-windowing a lot to run fat programs (kde, Word Perfect 8, and Netscape) on a slim machine (486-33, 8 MB mem) which would not be able to run those by itself. It is also a convenient and fast way to work with files on a remote system for which the nfs mount is not set up.
X-windows was designed to run remotely over the network. Remote X-windowing is a very powerful tool, on top of being quite a pleasant experience. Try it out.
You can even run a program on a remote Linux (or any Unix) computer and redirect the display to a local MS Windows machine if you install an X-windowing program for MS Windows. For a good overview of choices, see:
http://www.linuxworld.com/linuxworld/lw-2000-09/lw-09-legacy_1.html
4.3.9 How do I install TrueType fonts from my MS Windows
partition?
Red Hat 6.2 comes with a TrueType font server but no TrueType fonts. You can install your own TrueType fonts though. Here is how I did it.
104
0. From under K-menu (KDE), select "System"-"Font Manager" (or equivalent) and note what fonts you have installed.
1. Check if the "free type" font server is installed:
rpm -q freetype
This queries (option "q") the rpm package manager for the package "freetype". If the package is installed, go to next step. If "freetype" is not installed, install it now from your distribution CD.
"freetype" was installed on my system after a "full" RH installation.
2. As root, make a directory that is to hold your TrueType fonts:
cd /usr/X11R6/lib/X11/fonts
mkdir TrueType
This directory is referred to in the configuration file /etc/X11/XF86Config so make sure that the name of the directory is exactly as shown. If you would like to name the directory differently, you have to edit /etc/X11/XF86Config and make appropriate adjustments. My
"default installation" RedHat contained such a line:
FontPath "/usr/X11R6/lib/X11/fonts/TrueType"