<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.freebsdwiki.net/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.freebsdwiki.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheLobster</id>
		<title>FreeBSDwiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.freebsdwiki.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheLobster"/>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/Special:Contributions/TheLobster"/>
		<updated>2026-05-07T18:07:11Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.18.0</generator>

	<entry>
		<id>http://www.freebsdwiki.net/index.php/KDE,_installing</id>
		<title>KDE, installing</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/KDE,_installing"/>
				<updated>2005-02-15T19:56:53Z</updated>
		
		<summary type="html">&lt;p&gt;TheLobster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Congradulations! You have installed Xorg and are now ready to get KDE running. &lt;br /&gt;
&lt;br /&gt;
First, su to root. After you have root privledges, you must install KDE. As of the time of writing this artical KDE 3.3 is the most current.&lt;br /&gt;
&lt;br /&gt;
You have 2 options for installing KDE, build from ports or use the BSD packages. &lt;br /&gt;
&lt;br /&gt;
To build KDE from source, use the ports tree:&lt;br /&gt;
&lt;br /&gt;
 # cd /usr/ports/x11/kde3 &amp;amp;&amp;amp; make install clean&lt;br /&gt;
&lt;br /&gt;
OR&lt;br /&gt;
&lt;br /&gt;
 # pkg_add -r kde&lt;br /&gt;
&lt;br /&gt;
Notice: If you look at the command above, it's 'kde' and NOT 'kde3'. BSD has been nice enough to keep with the times. If you are adding a package as a general rule, you leave off the version number and you'll get the most stable version.&lt;br /&gt;
&lt;br /&gt;
After KDE is installed you must tell the X server to invoke KDE at the start of the X server and NOT to use the default WM. This is done though editing the .xinitrc file.&lt;br /&gt;
&lt;br /&gt;
 # % echo &amp;quot;exec startkde&amp;quot; &amp;gt; ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
Note: Sometimes if you are already using a window manager (i.e. XDM) you might have to edit the .xsession instead of the xinitrc&lt;br /&gt;
&lt;br /&gt;
If all has gone well, you SHOULD be able to:&lt;br /&gt;
&lt;br /&gt;
 # startx&lt;br /&gt;
&lt;br /&gt;
and have X start up and then invoke KDE.&lt;br /&gt;
&lt;br /&gt;
Note: A lot of this artical has originated from http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html&lt;/div&gt;</summary>
		<author><name>TheLobster</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php/Configuring_X</id>
		<title>Configuring X</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/Configuring_X"/>
				<updated>2005-02-15T14:38:11Z</updated>
		
		<summary type="html">&lt;p&gt;TheLobster: Installing Xorg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Starting with FreeBSD 5.3-RELEASE, Xorg is the default X11 implementation for FreeBSD. Xorg is the X server of the open source X Window System implementation released by the X.Org Foundation. Xorg is based on the code of XFree86 4.4RC2 and X11R6.6. The X.Org Foundation released X11R6.7 in April 2004 and X11R6.8.1 in September 2004, this latter is the version currently available in the FreeBSD Ports Collection.&lt;br /&gt;
&lt;br /&gt;
To install Xorg from source it is recommended that you first update your ports using cvsup. &lt;br /&gt;
&lt;br /&gt;
After logged in via su, you have 2 options. You can build from ports or use the BSD Packages.&lt;br /&gt;
&lt;br /&gt;
Note: To build Xorg in its entirety, be sure to have at least 4 GB of free space available.&lt;br /&gt;
&lt;br /&gt;
To build Xorg from ports:&lt;br /&gt;
&lt;br /&gt;
 # cd /usr/ports/x11/xorg &amp;amp;&amp;amp; make install clean&lt;br /&gt;
&lt;br /&gt;
OR &lt;br /&gt;
&lt;br /&gt;
To add the BSD package:&lt;br /&gt;
&lt;br /&gt;
 # pkg_add -r xorg&lt;br /&gt;
&lt;br /&gt;
After you have installed Xorg, you must configure it. This is a multi-step process and can get a tad complex.&lt;br /&gt;
&lt;br /&gt;
As su, run the Xorg Config File creator&lt;br /&gt;
&lt;br /&gt;
 # Xorg -configure&lt;br /&gt;
&lt;br /&gt;
This will generate an X11 configuration skeleton file in the /root directory called xorg.conf.new (whether you su(1) or do a direct login affects the inherited supervisor $HOME directory variable). For XFree86, this configuration file is called XF86Config.new. The X11 program will attempt to probe the graphics hardware on the system and write a configuration file to load the proper drivers for the detected hardware on the target system.&lt;br /&gt;
&lt;br /&gt;
 # xorgconfig&lt;br /&gt;
&lt;br /&gt;
This will run a sort of wizard that will simplify the process for creating the config file.&lt;br /&gt;
&lt;br /&gt;
The next step is to test the existing configuration to verify that Xorg can work with the graphics hardware on the target system. To perform this task, type:&lt;br /&gt;
&lt;br /&gt;
 # Xorg -config xorg.conf.new&lt;br /&gt;
&lt;br /&gt;
If a black and grey grid and an X mouse cursor appear, the configuration was successful. To exit the test, just press Ctrl+Alt+Backspace simultaneously.&lt;br /&gt;
&lt;br /&gt;
If all went to plan, you should have gotten Xorg working and happy. Now you are ready to go on and install your window manager ([[KDE]], [[GNOME]], [[BlackBox]], [[XFCE]], [[WindowMaker]], [[SawFish]], etc...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note: Most of this information came DIRECTLY from the FreeBSD Handbook located http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html&lt;/div&gt;</summary>
		<author><name>TheLobster</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php/Configuring_X</id>
		<title>Configuring X</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/Configuring_X"/>
				<updated>2005-02-14T22:56:28Z</updated>
		
		<summary type="html">&lt;p&gt;TheLobster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Starting with FreeBSD 5.3-RELEASE, Xorg is the default X11 implementation for FreeBSD. Xorg is the X server of the open source X Window System implementation released by the X.Org Foundation. Xorg is based on the code of XFree86 4.4RC2 and X11R6.6. The X.Org Foundation released X11R6.7 in April 2004 and X11R6.8.1 in September 2004, this latter is the version currently available in the FreeBSD Ports Collection.&lt;br /&gt;
&lt;br /&gt;
To install Xorg from source it is recommended that you first update your ports using cvsup. &lt;br /&gt;
&lt;br /&gt;
After logged in via su, build Xorg from ports&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
# cd /usr/ports/x11/xorg &amp;amp;&amp;amp; make install clean&lt;br /&gt;
&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: To build Xorg in its entirety, be sure to have at least 4 GB of free space available.&lt;br /&gt;
&lt;br /&gt;
After you have installed Xorg, you must configure it. This is a multi-step process and can get a tad complex.&lt;br /&gt;
&lt;br /&gt;
As su, run the Xorg Config File creator&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Xorg -configure&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will generate an X11 configuration skeleton file in the /root directory called xorg.conf.new (whether you su(1) or do a direct login affects the inherited supervisor $HOME directory variable). For XFree86, this configuration file is called XF86Config.new. The X11 program will attempt to probe the graphics hardware on the system and write a configuration file to load the proper drivers for the detected hardware on the target system.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# xorgconfig&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will run a sort of wizard that will simplify the process for creating the config file.&lt;br /&gt;
&lt;br /&gt;
The next step is to test the existing configuration to verify that Xorg can work with the graphics hardware on the target system. To perform this task, type:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
# Xorg -config xorg.conf.new&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a black and grey grid and an X mouse cursor appear, the configuration was successful. To exit the test, just press Ctrl+Alt+Backspace simultaneously.&lt;br /&gt;
&lt;br /&gt;
If all went to plan, you should have gotten Xorg working and happy. Now you are ready to go on and install your window manager (KDE, GNOME, SawFish, etc...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note: Most of this information came DIRECTLY from the FreeBSD Handbook located http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html&lt;/div&gt;</summary>
		<author><name>TheLobster</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php/Configuring_X</id>
		<title>Configuring X</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/Configuring_X"/>
				<updated>2005-02-14T22:55:42Z</updated>
		
		<summary type="html">&lt;p&gt;TheLobster: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Starting with FreeBSD 5.3-RELEASE, Xorg is the default X11 implementation for FreeBSD. Xorg is the X server of the open source X Window System implementation released by the X.Org Foundation. Xorg is based on the code of XFree86 4.4RC2 and X11R6.6. The X.Org Foundation released X11R6.7 in April 2004 and X11R6.8.1 in September 2004, this latter is the version currently available in the FreeBSD Ports Collection.&lt;br /&gt;
&lt;br /&gt;
To install Xorg from source it is recommended that you first update your ports using cvsup. &lt;br /&gt;
&lt;br /&gt;
After logged in via su, build Xorg from ports&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
# cd /usr/ports/x11/xorg&lt;br /&gt;
# make install clean&lt;br /&gt;
&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Note: To build Xorg in its entirety, be sure to have at least 4 GB of free space available.&lt;br /&gt;
&lt;br /&gt;
After you have installed Xorg, you must configure it. This is a multi-step process and can get a tad complex.&lt;br /&gt;
&lt;br /&gt;
As su, run the Xorg Config File creator&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Xorg -configure&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will generate an X11 configuration skeleton file in the /root directory called xorg.conf.new (whether you su(1) or do a direct login affects the inherited supervisor $HOME directory variable). For XFree86, this configuration file is called XF86Config.new. The X11 program will attempt to probe the graphics hardware on the system and write a configuration file to load the proper drivers for the detected hardware on the target system.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# xorgconfig&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will run a sort of wizard that will simplify the process for creating the config file.&lt;br /&gt;
&lt;br /&gt;
The next step is to test the existing configuration to verify that Xorg can work with the graphics hardware on the target system. To perform this task, type:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
# Xorg -config xorg.conf.new&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a black and grey grid and an X mouse cursor appear, the configuration was successful. To exit the test, just press Ctrl+Alt+Backspace simultaneously.&lt;br /&gt;
&lt;br /&gt;
If all went to plan, you should have gotten Xorg working and happy. Now you are ready to go on and install your window manager (KDE, GNOME, SawFish, etc...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note: Most of this information came DIRECTLY from the FreeBSD Handbook located http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html&lt;/div&gt;</summary>
		<author><name>TheLobster</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php/Configuring_X</id>
		<title>Configuring X</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php/Configuring_X"/>
				<updated>2005-02-14T22:54:30Z</updated>
		
		<summary type="html">&lt;p&gt;TheLobster: Installing and Configuring Xorg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Starting with FreeBSD 5.3-RELEASE, Xorg is the default X11 implementation for FreeBSD. Xorg is the X server of the open source X Window System implementation released by the X.Org Foundation. Xorg is based on the code of XFree86 4.4RC2 and X11R6.6. The X.Org Foundation released X11R6.7 in April 2004 and X11R6.8.1 in September 2004, this latter is the version currently available in the FreeBSD Ports Collection.&lt;br /&gt;
&lt;br /&gt;
To install Xorg from source it is recommended that you first update your ports using cvsup. &lt;br /&gt;
&lt;br /&gt;
After logged in via su, build Xorg from ports&lt;br /&gt;
&lt;br /&gt;
# cd /usr/ports/x11/xorg&lt;br /&gt;
# make install clean&lt;br /&gt;
&lt;br /&gt;
Note: To build Xorg in its entirety, be sure to have at least 4 GB of free space available.&lt;br /&gt;
&lt;br /&gt;
After you have installed Xorg, you must configure it. This is a multi-step process and can get a tad complex.&lt;br /&gt;
&lt;br /&gt;
As su, run the Xorg Config File creator&lt;br /&gt;
&lt;br /&gt;
# Xorg -configure&lt;br /&gt;
&lt;br /&gt;
This will generate an X11 configuration skeleton file in the /root directory called xorg.conf.new (whether you su(1) or do a direct login affects the inherited supervisor $HOME directory variable). For XFree86, this configuration file is called XF86Config.new. The X11 program will attempt to probe the graphics hardware on the system and write a configuration file to load the proper drivers for the detected hardware on the target system.&lt;br /&gt;
&lt;br /&gt;
# xorgconfig&lt;br /&gt;
&lt;br /&gt;
This will run a sort of wizard that will simplify the process for creating the config file.&lt;br /&gt;
&lt;br /&gt;
The next step is to test the existing configuration to verify that Xorg can work with the graphics hardware on the target system. To perform this task, type:&lt;br /&gt;
&lt;br /&gt;
# Xorg -config xorg.conf.new&lt;br /&gt;
&lt;br /&gt;
If a black and grey grid and an X mouse cursor appear, the configuration was successful. To exit the test, just press Ctrl+Alt+Backspace simultaneously.&lt;br /&gt;
&lt;br /&gt;
If all went to plan, you should have gotten Xorg working and happy. Now you are ready to go on and install your window manager (KDE, GNOME, SawFish, etc...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note: Most of this information came DIRECTLY from the FreeBSD Handbook located http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html&lt;/div&gt;</summary>
		<author><name>TheLobster</name></author>	</entry>

	</feed>