You are not logged in.
Pages: 1
hey there,
just installed Arch and i really dig it. will be my sole distro soon ( right now dual booting w/ debian)
i need a better mixer program for alsa though.Preferably gui. in debian i use gamix but it isn't available, i dont think, thru pacman.
suggestions anyone?
thanks
Offline
sorry this suggestion is not gui but aumix is quite easy to use. it is ncurses (gui-ish) that is key controlled (arrow keys and some letters).
AKA uknowme
I am not your friend
Offline
I made a PKGBUILD for this gamix that you can use with arch. I can upload the pkg to incoming if you'd like or you can build it yourself.
# Contributor: Mike Wilson <shen@echolinux.org>
pkgname=gamix
pkgver=1.99.p14
pkgrel=1
pkgdesc="GTK based alsa mixer"
url="http://www1.tcnet.ne.jp/fmurata/linux/down"
license=""
depends=('alsa-lib' 'gtk' 'xfree86')
source=(http://www1.tcnet.ne.jp/fmurata/linux/down/$pkgname-$pkgver.tar.gz)
md5sums=('a57b7954aa8e95b0a1c69a6fb06bc64b')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
Offline
... i need a better mixer program for alsa though.Preferably gui...thanks
If you're running Gnome, get "gnome-alsamixer".
Offline
yes indeed, i would like to build gamix myself.
um, could you gimme a quick rundown on how to do that ?
thanks,
Offline
yes indeed, i would like to build gamix myself.
um, could you gimme a quick rundown on how to do that ?
thanks,
save the PKGBUILD posted up to a textfile named PKGBUILD and then in this directory in a terminal just run
makepkg
and then after successfull build, change to root and do this:
pacman -U gamix-1.....pkg.tar.gz
what will install the new pkg for you
good luck
The impossible missions are the only ones which succeed.
Offline
ok, did what you said and this is what it gave me.
it appeared to download and check md5sum, and some other stuff then got to this point and failed.
starting build:
/usr/bin/makepkg : line 540: build: command not found
==> ERROR: Build Failed Aborting
ok, what now ?
Offline
ok, did what you said and this is what it gave me.
it appeared to download and check md5sum, and some other stuff then got to this point and failed.
starting build:
/usr/bin/makepkg : line 540: build: command not found
==> ERROR: Build Failed Abortingok, what now ?
seems that the part
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
you copied with a typo or something --- check this and if you cannot see any, post your PKGBUILD
The impossible missions are the only ones which succeed.
Offline
Check for additional spaces or other characters after } at the end of the pkgbuild. You may want to delete everything after } even if it's not visible - it happened to me several times.
Offline
WOW - i got it working.
lesson learned - do not use Abiword to copy - paste a script.
i brought the script up in xedit and it had all this formatting stuff in it from abiword.
once i deleted it all line by line and saved it, it worked on my next attempt.
man, that was so easy ! Thanks much
Offline
and then after successfull build, change to root and do this:
pacman -U gamix-1.....pkg.tar.gz
what will install the new pkg for you
Sorry, "pacman -U ..."? Not "pacman -A ..."? I thought -U was for upgrading previously installed packages?
"No live organism can continue for long to exist sanely under conditions of absolute reality; even larks and katydids are supposed, by some, to dream." - S. Jackson
Offline
Yeah, it should be $ pacman -A
If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but have not love, I am nothing. 1 Corinthians 13:2
Offline
pacman -U will upgrade if installed or install if not installed. -U is always fine. Scalawag.
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
pacman -U will upgrade if installed or install if not installed. -U is always fine. Scalawag.
So under what circumstances would want to use pacman -A rather than pacman -U? What I mean is, if you can always use pacman -U, why does the -A option exist?
"No live organism can continue for long to exist sanely under conditions of absolute reality; even larks and katydids are supposed, by some, to dream." - S. Jackson
Offline
well i dont know if i should have used pacman -A
i used pacman -U and it worked.
didn't even know about pacman -A ( Newbie )
Offline
Xentac wrote:pacman -U will upgrade if installed or install if not installed. -U is always fine. Scalawag.
So under what circumstances would want to use pacman -A rather than pacman -U? What I mean is, if you can always use pacman -U, why does the -A option exist?
not sure, but maybe it was first here and the -U was added later
The impossible missions are the only ones which succeed.
Offline
Pages: 1