<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Tux-jack-installation</id>
	<title>Tux-jack-installation - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://spaceonearth.org/index.php?action=history&amp;feed=atom&amp;title=Tux-jack-installation"/>
	<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-jack-installation&amp;action=history"/>
	<updated>2026-05-02T18:29:58Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in SpaceOnEarth</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Tux-jack-installation&amp;diff=391&amp;oldid=prev</id>
		<title>Axel: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-jack-installation&amp;diff=391&amp;oldid=prev"/>
		<updated>2022-04-04T14:35:18Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 4. April 2022, 16:35 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Axel</name></author>
	</entry>
	<entry>
		<id>https://spaceonearth.org/index.php?title=Tux-jack-installation&amp;diff=390&amp;oldid=prev</id>
		<title>Maintenance script: DokuwikiExportByHoxel</title>
		<link rel="alternate" type="text/html" href="https://spaceonearth.org/index.php?title=Tux-jack-installation&amp;diff=390&amp;oldid=prev"/>
		<updated>2019-12-28T12:21:18Z</updated>

		<summary type="html">&lt;p&gt;DokuwikiExportByHoxel&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;====== I_UfE_Installation_of_JACK ======&lt;br /&gt;
&lt;br /&gt;
= Installation of JACK ~s19march09~ =&lt;br /&gt;
&lt;br /&gt;
====== tmpfs ======&lt;br /&gt;
Jack uses temporary file storage (appear as a mounted file system but uses virtual memory instead of a persistent storage device).&amp;lt;br&amp;gt;&lt;br /&gt;
It is activated if CONFIG_TMPFS=y. Only then a user can mount a tmpfs as a fully capable filesystem.&amp;lt;br&amp;gt;&lt;br /&gt;
 cat /boot/config-&amp;#039;uname -r&amp;#039; | grep CONFIG_TMPFS&lt;br /&gt;
should give the state of CONFIG_TMPFS.&amp;lt;br&amp;gt;&lt;br /&gt;
Login as root.&amp;lt;br&amp;gt;&lt;br /&gt;
Add to /etc/fstab the line&lt;br /&gt;
 none /dev/shm tmpfs defaults 0 0&lt;br /&gt;
(or &amp;quot;none /tmp tmpfs defaults 0 0&amp;quot;).&amp;lt;br&amp;gt;&lt;br /&gt;
Restart computer.&lt;br /&gt;
&lt;br /&gt;
====== jack ======&lt;br /&gt;
Download jack-audio-connection-kit-0.116.2 from ufe ftp (u_soft/m_pc/jack).&lt;br /&gt;
Login as root. Do&lt;br /&gt;
 ./configure&lt;br /&gt;
Here alsa should be anabled. If this is not the case you need to install alsa libraries. It work at me after INSATLLING and DEINSTALLING (apt-get install ..., apt-get remove ...)&lt;br /&gt;
libjack0.100.0-0, &lt;br /&gt;
libjack0.100.0-dev and&lt;br /&gt;
jackd.&amp;lt;br&amp;gt;&lt;br /&gt;
You should INSTALL&lt;br /&gt;
libasound-dev and make.&amp;lt;br&amp;gt; Then you do&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
====== command ======&lt;br /&gt;
When using jack together with usc, call jack in the following way&lt;br /&gt;
 jackd -R -Z -d alsa -d hw:j -r 44100 -p 4096 -n 4&lt;br /&gt;
With the option &amp;#039;-d hw:j&amp;#039; you have to specify the soundcard you want to use for recording/playback. You can find the correct number j of your soundcard by typing the command&lt;br /&gt;
 cat /proc/asound/cards&lt;br /&gt;
in your shell.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE:&lt;br /&gt;
If jackd produces the error&lt;br /&gt;
 jackd: error while loading shared libraries: libjackserver.so.0:\&lt;br /&gt;
 cannot open shared object file: No such file or directory&lt;br /&gt;
&lt;br /&gt;
you need to tell your system to look for the shared libraries in /usr/local/lib (which is the default installation path [[/usr/local]] when you run configure).&lt;br /&gt;
If there’s a directory named /etc/ld.so.conf.d you (as root) can run echo /usr/local/lib &amp;gt; /etc/ld.so.conf.d/local.conf&lt;br /&gt;
If you don’t have that directory you can add /usr/local/lib to the end of the file /etc/ld.so.conf.&lt;br /&gt;
After that run ldconfig as root to update the cache and things should start working.&lt;br /&gt;
&lt;br /&gt;
====== usc ======&lt;br /&gt;
Before you start usc using the soundcard, start jackd. In the shell you start usc must be the path of jackd in the PATH variable. At my debian I had to add /usr/local/bin to PATH when I using the outostart for my script.\n[[category:DWImport]]\n&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>