Sponsored Content
Operating Systems Linux Installing (some other) Linux on Archos PMA400. Post 302106319 by reborg on Wednesday 7th of February 2007 09:02:55 PM
Old 02-07-2007
I would look for Qtopia community forums and the like. You often find that spinoff groups develop their own solutions.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Installing Programs In Linux

I am not sure how to install a program in linux. I have Java 2 on a CD the CD Mounts but then I'm lost. What do I need to do so that the programm will install on my system? Thank you, Monkette (6 Replies)
Discussion started by: kdelph
6 Replies

2. UNIX for Dummies Questions & Answers

Installing RedHat Linux 7

Hey everybody. Its been awhile since I last posted but in short I am now in posession of RedHat Linux 7.0 which I got from a book called the RedHat 7 Bible. As this is not an official distribution I cannot get product support from RedHat so I decided to try here. I have three computers. I... (2 Replies)
Discussion started by: TheGoof
2 Replies

3. UNIX for Dummies Questions & Answers

installing LINUX

I would like to install LINUX alongside my XP environment, but XP uses NTFS file system which cannot be re-partitioned without destroying what is already on my drive. I don't want to do that right now. Can I install LINUX on an external firewire drive such that I will be able to select XP or... (1 Reply)
Discussion started by: pkappaz
1 Replies

4. Ubuntu

Needs for installing Arch/Linux?

I'm pretty new to *nix systems and been using Ubuntu and Debian for a while but think it's pretty much 'overkill' lauching any of these systems. I've always been in need of a simple system, with a simple X where I can get the necessary programs myself. Yesterday I read about Arch (and it got me).... (1 Reply)
Discussion started by: riwa
1 Replies

5. SuSE

Issue installing linux

I apologize in advance if this is the wrong forum for this Alright, I am a long time Microsoft user (games of course). I have installed Linux in the past, but not on this computer. Brand new computer, have been using it extensively for the past month or so, and recently I just had the urge... (9 Replies)
Discussion started by: Wyzer1
9 Replies

6. UNIX for Dummies Questions & Answers

Installing LINUX on a separate HD

For the last few installations of Linux I have installed it with XP via a dual boot set up on one HD. Now I have purchased a 2nd HD and would like to install Linux on the 2nd HD and keep the first HD for XP. How do I go about setting up the HD's for this? Do I have to create a small partition on... (2 Replies)
Discussion started by: nistleloy
2 Replies

7. Red Hat

Installing LINUX KS from USB

:confused:Hello All, We are trying to install RHEL6 via USB using KICKSTART installation. We had following configuration: Below is the entry of isolinux.cfg file : menu label ^Kickstart Installation:via USB kernel vmlinuz append initrd=initrd.img ks=cdrom:/ks.cfg Below is the entry... (2 Replies)
Discussion started by: NIMISH AGARWAL
2 Replies

8. Red Hat

Installing OpenOffice in Linux

Dear All, Here is my redhat uname -a and cat /etc/redhat-release output Linux hpclnpm.com 2.6.18-128.el5 #1 SMP Wed Dec 17 11:42:39 EST 2008 i686 i686 i386 GNU/Linux 2.cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.3 (Tikanga) After running all the... (3 Replies)
Discussion started by: monojcool
3 Replies

9. Red Hat

Installing Linux packages

hi, I wants to customize the Linux packages after installting the Linux OS... I am not able to install the packages packages in GUI mode System-> Administration->add/remove software.i want to install some desktop and dabase related packages how do i install those packages... I use RHEL6.2... (1 Reply)
Discussion started by: Rahulne25
1 Replies

10. Red Hat

Installing realvnc on Linux

Hi, I'm running Oracle Linux 7 - 64 bit (PRODUCT_VERSION=7.2). I'm currently using RealVNC 5.3.0. I've upgraded this several times, put the instructions in notepad...I can't find them. I've downloaded RealVNC 5.3.1 and want to upgrade from 5.3.0 to 5.3.1. Since oracle Linux is very... (2 Replies)
Discussion started by: Janning
2 Replies
PYKAR(6)																  PYKAR(6)

NAME
pykaraoke - free CDG/MIDI/MPEG karaoke player SYNOPSIS
pykar karfilename.kar OVERVIEW
pykaraoke is a free karaoke player for Linux, FreeBSD and Windows. pykar is a MIDI/KAR karaoke player built using python. It was written for the PyKaraoke project but is in fact a general purpose KAR player that could be used in other python projects requiring a KAR player. The player uses the pygame library (www.pygame.org), and can therefore run on any operating system that runs pygame (currently Linux, FreeBDS, Windows and OSX). You can use this file as a standalone player, or together with PyKaraoke. PyKaraoke provides a graphical user interface, playlists, search- able song database etc. For those writing a media player or similar project who would like KAR support, this module has been designed to be easily incorporated into such projects and is released under the LGPL. To play the MIDI songs on Linux, Timidity++ is also required. USAGE
To start the player, pass the KAR filename/path on the command line: pykar /path/song.kar You can also incorporate a KAR player in your own projects by importing this module. The class midPlayer is exported by the module. You can import and start it as follows: import pykar player = pykar.midPlayer("/path/song.kar") player.Play() If you do this, you must also arrange to call pycdg.manager.Poll() from time to time, at least every 100 milliseconds or so, to allow the player to do its work. The class also exports Close(), Pause(), Rewind(), GetPos(). There are two optional parameters to the initialiser, errorNotifyCallback and doneCallback: errorNotifyCallback, if provided, will be used to print out any error messages (e.g. song file not found). This allows the module to fit together well with GUI playlist managers by utilising the same GUI's error popup window mechanism (or similar). If no callback is provided, errors are printed to stdout. errorNotifyCallback should take one parameter, the error string, e.g.: def errorPopup (ErrorString): msgBox (ErrorString) doneCallback can be used to register a callback so that the player calls you back when the song is finished playing. The callback should take no parameters, e.g.: def songFinishedCallback(): msgBox ("Song is finished") To register callbacks, pass the functions in to the initialiser: midPlayer ("/path/song.kar", errorPopup, songFinishedCallback) These parameters are optional and default to None. If the initialiser fails (e.g. the song file is not present), __init__ raises an exception. SEE ALSO
You can find PyKaraoke's home page at: http://www.kibosh.org/pykaraoke/ AUTHOR
PyKaraoke was written by Kelvin Lawson <kelvinl@users.sourceforge.net> and William Ferrell <willfe@gmail.com>. This manual page was written by Miriam Ruiz <little_miry@yahoo.es>, for the Debian project (but may be used by others). july 16, 2006 PYKAR(6)
All times are GMT -4. The time now is 04:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy