* Add a FAQ on getting nautilus-cd-burner to work
* Add a "Known Issue" on building gnomemeeting Reviewed by: adamw
This commit is contained in:
parent
946046827f
commit
fca08f337b
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=18211
2 changed files with 78 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.43 2003/09/20 17:35:07 adamw Exp $">
|
||||
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.44 2003/09/20 18:53:02 marcus Exp $">
|
||||
<!ENTITY title "FreeBSD GNOME Project: GNOME &gnomever; FAQ">
|
||||
<!ENTITY % gnomeincludes SYSTEM "../includes.sgml"> %gnomeincludes;
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
|
|
@ -34,6 +34,8 @@
|
|||
GTK+ 2 applications when not in a GNOME environment?</a>
|
||||
<li> <a href="#q14">How do I configure settings for GNOME 1.4
|
||||
applications under GNOME &gnomever;?</a>
|
||||
<li> <a href="#q15">Nautilus-cd-burner does not let me burn CDs.
|
||||
How can I fix this?</a>
|
||||
</ol>
|
||||
<h2>Full Text </h2>
|
||||
|
||||
|
|
@ -106,7 +108,20 @@ WITH_LAME= yes
|
|||
<!-- A2 -->
|
||||
<p>The majority of GNOME &gnomever; compilation problems can be solved
|
||||
by making sure all the necessary GNOME &gnomever; components are
|
||||
<a href="#q6">up-to-date</a>. You may see compiler errors relating to pthreads
|
||||
<a href="#q6">up-to-date</a>. You may see a configure error
|
||||
similar to the following:</p>
|
||||
|
||||
<pre>
|
||||
configure: error: *** pkg-config too old; version 0.14 or better required.
|
||||
</pre>
|
||||
|
||||
<p>While this may be buried in some other text, the error is
|
||||
very straight-forward: you need to upgrade pkg-config.
|
||||
The pkg-config application is found in the
|
||||
<tt>devel/pkgconfig</tt> port. By updating this port to
|
||||
the latest version, this error will go away.</p>
|
||||
|
||||
<p>You may see compiler errors relating to pthreads
|
||||
(POSIX threads), such as:</p>
|
||||
|
||||
<pre>
|
||||
|
|
@ -440,6 +455,59 @@ Load "type1"
|
|||
<tt>gnomecc</tt> from the command line to bring up the GNOME
|
||||
1.4 control center.</p>
|
||||
</li>
|
||||
|
||||
<!-- Q15 -->
|
||||
<li style="padding-bottom: 0.5em"><a name="q15"></a>
|
||||
<p><b>Nautilus-cd-burner does not let me burn CDs. How can I
|
||||
fix this?</b></p>
|
||||
<!-- A15 -->
|
||||
<p>Nautilus-cd-burner cannot write to CD/DVD burners if support
|
||||
for those devices is not enabled in the kernel, or if the
|
||||
permissions on the device nodes do not allow write access.
|
||||
Nautilus-cd-burner talks to CD/DVD burners through the
|
||||
SCSI CAM subsystem. Therefore, you must also make sure
|
||||
you have the following configured in your kernel if you are using
|
||||
an ATAPI CD/DVD writer:</p>
|
||||
|
||||
<pre>
|
||||
device atapicam
|
||||
</pre>
|
||||
|
||||
<p>To figure out which CD/DVD drive you will be using, run the
|
||||
following command as root:</p>
|
||||
|
||||
<pre>
|
||||
# camcontrol devlist
|
||||
</pre>
|
||||
|
||||
<p>Your output will look similar to the following:</p>
|
||||
|
||||
<pre>
|
||||
<CREATIVE CD5233E-N 0.20> at scbus1 target 0 lun 0 (cd0,pass0)
|
||||
</pre>
|
||||
|
||||
<p>The devices in parentheses at the end are important. You
|
||||
must make sure the <tt>/dev</tt> entries for those devices
|
||||
are writable by the users that will be using
|
||||
nautilus-cd-burner. In addition to those devices,
|
||||
<tt>/dev/xpt*</tt> must also be writable to your
|
||||
nautilus-cd-burner users. The following
|
||||
<tt>/etc/devfs.conf</tt> configuration will achieve the
|
||||
desired results given the above devlist (<b>NB:</b>
|
||||
<tt>devfs.conf</tt> is only supported on FreeBSD 5.x):</p>
|
||||
|
||||
<pre>
|
||||
perm acd0 0666
|
||||
perm cd0 0666
|
||||
perm xpt0 0666
|
||||
perm pass0 0666
|
||||
</pre>
|
||||
|
||||
<p>On FreeBSD 4.x, you can simply set the device node
|
||||
permissions, and they will be preserved across reboots.
|
||||
Note that you must use the 'c' device nodes on
|
||||
FreeBSD 4.x (e.g. <tt>acd0c</tt>, <tt>cd0c</tt>, etc.).</p>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
&footer;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY date "$FreeBSD: www/en/gnome/docs/knownissues.sgml,v 1.4 2003/09/20 18:53:02 marcus Exp $">
|
||||
<!ENTITY date "$FreeBSD: www/en/gnome/docs/knownissues.sgml,v 1.5 2003/09/21 19:29:50 marcus Exp $">
|
||||
<!ENTITY title "FreeBSD GNOME Project: Known Issues with GNOME &gnomever; on FreeBSD">
|
||||
<!ENTITY % gnomeincludes SYSTEM "../includes.sgml"> %gnomeincludes;
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
<h3>3. gstreamer doesn't play nice with rhythmbox</h3>
|
||||
|
||||
<p> gstreamer-0.6.3 doesn't play nice with rhythmbox. It is
|
||||
recommended you build rhythmbox with the libxine backend for
|
||||
recommended you build rhythmbox with <tt>-DWITH_XINE</tt> for
|
||||
now.
|
||||
</p>
|
||||
|
||||
|
|
@ -58,6 +58,12 @@
|
|||
that comes with the GDM2 port/package on how to patch OpenPAM
|
||||
to work with GDM2.</p>
|
||||
|
||||
<h3>5. gnomemeeting fails to build</h3>
|
||||
|
||||
<p>Gnomemeeting may fail to build if you have ffmepg installed.
|
||||
If you do, remove ffmpeg, then build gnomemeeting, then
|
||||
reinstall ffmpeg if so desired.</p>
|
||||
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue