jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trutkin a6a13ba31c Add jack_last_frame(). 21 years ago
config [0.97.7] several config fixes 21 years ago
doc porting guide updates 21 years ago
drivers Make sure that read/write doesn't run when the driver is stopped 21 years ago
example-clients [0.97.1] config enhancements 21 years ago
jack Add jack_last_frame(). 21 years ago
jackd Fix for MacOSX version 21 years ago
libjack Add jack_last_frame(). 21 years ago
.cvsignore [0.96.0] merge MacOSX EXP tree into HEAD 21 years ago
AUTHORS Give AUTHORS credit to Tilman Linneweh for BSD port. 21 years ago
COPYING adding COPYING 23 years ago
COPYING.GPL needed copies of GPL *and* LGPL 23 years ago
COPYING.LGPL needed copies of GPL *and* LGPL 23 years ago
Makefile.am acinclude.m4 cleanup 21 years ago
QUICK-INSTALL remove unneeded .asoundrc steps 21 years ago
README Readme patch from Jesse 22 years ago
README.developers Typo fixed. 22 years ago
TODO atomicity work done 21 years ago
autogen.sh [0.96.0] merge MacOSX EXP tree into HEAD 21 years ago
configure.in Add jack_last_frame(). 21 years ago
jack.pc.in Better notification of link dependencies in pkgconfig. 21 years ago
jack.spec.in Add OSS driver option to jack.spec file. 21 years ago

README

Welcome to JACK, the Jack Audio Connection Kit.

Please see the website (http://jackit.sf.net/) for more information.

NOTE: If you are using reiserfs or ext3fs or anything except ext2fs
for the directory where JACK puts its temporary files (/tmp by
default), then the JACK team recommends that you do *one* of the
following:

----------------------------

Mount a tmpfs on /tmp. You should have a lot of swap space available
in case some programs try to write very large files there.
In your /etc/fstab add a line:

none /tmp tmpfs defaults 0 0

You'll probably want to reboot here, or kill X then 'mount /tmp'.

---- OR ----

Alternatively, you can do this without affecting your /tmp:

# mkdir /mnt/ramfs

[edit /etc/fstab and add the following line]
none /mnt/ramfs tmpfs defaults 0 0

Then add --with-default-tmpdir=/mnt/ramfs to the JACK configure
line when you build it. No clients need to be recompiled.

------------------------------

Failure to do one of these could lead to extremely poor performance from JACK,
since its normal operation will cause bursts of disk I/O that are
completely unnecessary. This suggestion can also be used by ext2fs
users if they wish.