Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have bought computer Acer Aspire T136,
and seller (www.verkkokauppa.com) really says that Linux Linpus 9.2 has not X.
...and I assume that it's really so, when I login with "root" and try to "startx" - linux says "Command not found".
Well problem is not that,
real problem is that I think that sounds are not working on computer, and Acer informs me that I have to test this with Linux Linpus 9.2 (without X), OS has to be same as it was when I bought the computer.
Well, I don't know how I can test sounds.
I just can login but nothing else,
please help me, what I have to do?
This is the first time I have heard of Linpus, and a quick
look over their website (and a google search) weren't very
revealing. The "normal" process to enable X for me would
be to look for the X executable; that is, once you're logged
in, press X (a capital letter X) followed by two tabs ...
Does it show anything? If yes, X is installed but not set-up.
If no - contact Linpus support, I have no idea how their system
is set-up, how their package management works or anything else
about them ....
I've seen one pc this far with Linpus pre-installed. Basically it was bought because of it's price (it was a lot cheaper than equivalent with Windows). Anyway, Linpus seems to be non-European (?) RPM distribution, to me it seemed like it's based off Fedora or something. The settings were odd in the machine I saw, it could of course access the net right away (btw: it did have X working right out of the box, can't remember the version exactly but I think it was 9-something), but some things like package manager didn't work quite well (in that specific case, reposities didn't work out of the box). It looked fine, but I got the picture that it was aimed at the Asian people, and therefore it may well have trouble in Europe, with European settings and so on. Of course everything can be configured but to me it's easier to just reinstall another OS (in that case, Fedora 6) over it and have local settings mostly configured during the setup.
About sound. Well, you would want to get something out of the speakers. First check if there is somekind of mixer that you can use to make sure the mixer levels are something else than muted; try
Code:
aumix
if it's installed, but if not, something like
Code:
find / -name "*mix*" | grep bin | less
and hope to get something. After you've checked mixer levels (and that your speakers are powered), pick up some audio file and play it. Everybody has some audio files these days, but you can see if there is something on board already:
Code:
find / -name "*.mp3"
and if you can't find anything, try the same for .wav, .ogg etc. Then just find out a player app;
Code:
man -k mp3
for example that should (hopefully) show some manpages about apps that know mp3 format. Hope that you get 'mpg321' or something, and try if it's installed. Start playing,
Code:
mpg321 /path/to/the/file.mp3
or whatever player/format you use, and see if you get sound, errors or nothing. That's a start.
X:
Code:
ls /etc/X11
if there's something, you can well have X installed; binaries reside under /etc/X11/bin/ or something. If that directory does not exist, it could be there is no X installed. Simple solution is to make the package manager work (yum?) and fetch X (Xorg) packages with it, or hunt down the rpm packages (and dependencies) and install them via
Code:
rpm -i /path/to/package.rpm
or everything at once,
Code:
rpm -i /path/to/*.rpm
Quoted from linpus.com
Quote:
Headquartered in National Nan-Gang Software Park, Taipei, Taiwan, Linpus Technologies, Inc. is a privately held company funded by leading IT companies such as Acer IP Fund One and MiTAC. For more information about Linpus, please visit http://www.linpus.com or contact marketing@linpus.com.
if there's something, you can well have X installed; binaries reside under /etc/X11/bin/ or something. If that directory does not exist, it could be there is no X installed. Simple solution is to make the package manager work (yum?) and fetch X (Xorg) packages with it, or hunt down the rpm packages (and dependencies) and install them via
Code:
rpm -i /path/to/package.rpm
or everything at once,
Code:
rpm -i /path/to/*.rpm
Hi, thanks for help.
I didn't manage to use "find" commands, because I can't find " -mark, because keyboard settings are incorrect.
I couldn't test sounds, I just don't know how to...
I found that I really have /etc/X11 -folder but there is not /bin -folder under that.
Have you seen the Larko blog at http://larko.wordpress.com/tag/linpus/ which is about Linpus? If you click the link "wrote to the dealer" is shows a letter from Larko (in Finnish) to Verkkokauppa.
Make life easy for yourself and install a different distro!
I found that I really have /etc/X11 -folder but there is not /bin -folder under that.
That's how it should be really, as /etc is for configuration files, rather than binaries. The binaries for X are probably in /usr/X11/bin or something similar.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.