User Support Forum

Questions/problems with Haiku? Post here and get help from the community. If you think you have found a bug, please file a bug report at dev.haiku-os.org.

Sound not running in Alpha 3 under VMWare Player

Forum thread started by williamHerrick on Sat, 2012-04-14 23:33

Hi,

I am running Alpha 3 under VMWare player and the sound doesn't work. I downloaded an .mp3 file and tried playing it under MediaPlayer. The volume meters on the MediaPlayer respond to the song being played, but no sound comes out. System sounds also don't work.

When I click on the speaker icon on the Tracker, it responds "Could not find the mixer".

In the Media Settings panel, under Audio Settings, under Defaults, Audio Output, it says "none", and when I click on it, it says "empty".

In the Media Settings Panel, under Audio Mixer, Gain Controls, it says "Master Output not connected".

What to do? Thank you for any help!

bye,
William

Stack and Tile

Forum thread started by paulfxh on Fri, 2012-04-13 05:48

Is Stack and Tileas a window decorator no longer available in the nightlies?
If not, are there plans to resurrect it in the future?

Graphics

Forum thread started by DFergATL on Wed, 2012-04-11 03:10

I am looking at buying a low end laptop. I am trying to decide between one based on AMD E-450 and one based on the new Intel Atom N2800. The new Atom is using a PowerVR SGX 545 for graphics. Does anyone know if this n PowerVR SGX 545 is supported? If it isn't is it one of those chips that has no open source driver? I know I can use Vesa and will probably do that is this idea of this PowerVR SGX 545 is something that Haiku does or my still be able to support. Anyway, just looking for feedback. I can go either way.

David

P.S. I do know that neither of these is guaranteed to work in Haiku. I am hoping someone with better hardware knowledge and better Haiku knowledge can just give me their opinion.

Few problems

Forum thread started by CHORT on Mon, 2012-04-09 17:46

Hello Haiku community!
It was fun to use Be years ago .
At least i got my old laptop working! I was trying to install and try out haiku for a long time . But due dying harddrive , i was getting crashes on installation and starting up. Now i got myself another harddrive and was able to successfully install ans start Haiku . I was palying with it for few days now , installing different nighty builds . Right now i use 43976.
My laptop specs are :
Fujitsu Siemens S6010WB
1GHZ Pentium III
512 Ram
40 Gb HDD
Intel Extreme Graphics 2 (i830MG) - as screen configuration window shows me , so i suppose haiku use right driver
LAN is rtl8139 (Realtek RTL8139 PCI Fast Ethernet Adapter) - should be supported , i get link via DHCP , seems ok.
WIFI wavelanwifi ( Intersil ISL3874 , Prism 2.5 ) - Can't get it working , don't show any network
Intel 82801 AC'97 audio controller - was trying to get mp3 file playing - no sound

Laptop also have bluetooth, firewire and softmodem - don't use it , so can't comment

So i could have some help getting sound and wifi working on WPA-PSK network.

Bigger problem right now :
I can't download any browser using Terminal and installoptionalpackage command . I was able to get some packages , like wpa_supplicant and few others, just fine , using lan connection. But every time i try to get some larger package loaded , computer just locks up . No KDL , no nothing , screen freezing , total lockup.
Is there any possibility to look what is crashing system ? Like process explorer or something?
Using ActivityMonitor , i saw 100% CPU use, when Terminal using command , but not in the moment it locks up . While downloading package CPU activity is around 20-30%

Need help here !

Sidenote:
I was wondering , why Haiku have some demos and smaller utilities and stuff like that , but not any browser ? Can't even read manual from desktop.

Are two video cards supported in Haiku?

Forum thread started by stellarpower on Sat, 2012-03-31 17:35

Hello all,

My Alpha 3 is hanging at boot if I don;t put it into fail-safe video mode, and before I file a bug report I want to check that I'm not reporting something that is already known not to work. I have an XFX NVidia as my actual graphics card, which displays fine in fail-safe video mode, but also a very old Matrox card in a PCI slot - I was aiming to use it to help with video editing in Windows XP, so I'm not asking for it to work in Haiku. the app server has also started to crash, dropping into KDL or gdb whilst in the fail-safe video mode. Could anyone tell me if this setup is known to cause a problem, or should I file a bug report?

Thank you.

Using dd for Windows to install Haiku

Forum thread started by ribbonz on Thu, 2012-03-29 16:48

This advice is for woz who is trying to use dd in Windows to create a USB install disk for Haiku.

(this post has turned into a novel, so I've split it into two parts)

Woz, you have done most of the hard stuff already, IMO. You have downloaded and extracted
the Haiku anyboot image. You have found the "dd for Windows" utility and downloaded it. And
you have already created a partition to install Haiku on -- easily the hardest part of all.

From here, you will need to:
1. run dd to create the USB install disk
2. reboot from this USB disk
3. run the Haiku installer
4. run BootManager
5. reboot and enjoy

Firstly, the error you are getting about "dd is not recognized..." is because you don't have dd.exe
located in a path that the command shell knows about. This means you either have to enter the full path
of the dd program at the command line, or better yet, just change to this directory first.

For simplicity, we'll assume that dd.exe is at the root of the C drive
In fact, you can just copy it there, then the remainder of the commands shown below will work perfect.

From the Windows taskbar, enter "cmd" (no quotes, of course) to bring up the command shell.
No, you don't have to run this as administrator -- regular user is fine.
By default, the command shell will be in the Users\<username> directory, so

	cd C:\

to change to the root of the C drive, where we have put dd.exe.

Incidentally, for those reading who don't have "dd for Windows", go here:

http://www.chrysocome.net/dd

You can download dd from there, and it also has some nice instructions covering its use.

Now run

	dd --list

and it will show all the drives.

First do this without the USB stick in, then again after inserting the USB stick.
The new entry that shows up the second time will obviously be the drive info for the USB stick.

As an example, mine reads:

	\\.\Volume<01a7cdb7-2ce8-11e0-868f-0013721d25ab>\
	link to \\?\Device\HarddiskVolume6
	removeable media
	Mounted on \\.\g:

The fact that it shows "removeable media" is a good hint that we've got the right drive.
Furthermore, it shows that it is mounted as "g:", which is easy to verify as my USB stick shows
as G: in Explorer when I browse the files. Of course, your info will be different.

So, using this example, we would use "\\?\Device\HarddiskVolume6" as the drive path
for the USB stick. Thus we can construct a sample command line for dd

dd if=haiku-hrev43898-anyboot.image of=\\?\Device\Harddisk6\Partition0 bs=1M --size --progress

Naturally, use the correct revision number if its not hrev43898.
Notice that we append "\Partition0" to the USB drive path. This is essential.
You have to write to partition 0 on the drive you are writing to.

After you have run this dd command, and it is finished, you can power off the computer.
Leave the USB stick in.
Now power back on.

See next post for more.

Is wpa_supplicant broken in latest nightlies?

Forum thread started by paulfxh on Sun, 2012-03-25 12:48

I've been using Haiku on a EeePC 901 for quite some time and was delighted that I was able to get a WPA2-encoded Wifi connection on the ralink2860 card since last October when wpa_supplicant became available.

However, I update the version of Haiku with a new nightly now and again. Over the last month or so, I have not been able to get a wifi connection using wpa_supplicant on a new nightly.
The latest one I've tried is r43883.
Certainly the card is working (it works fine in Ubuntu in a different partition on the same machine), is found and identified by ifconfig and the available wireless networks are being picked up.
However, neither using the command line nor the GUI results in a wifi connection.
It seems wpa_supplicant does not remember the network passcode as, despite checking the Store this Configuration box, the Password space comes up empty every time.
I even included the passcode in the Network section of the /boot/common/settings/network/interface file to no avail.

Has anybody else had a similar experience?

Syndicate content