wiki:R1/Alpha2/ReleaseAddendum

Version 3 (modified by mmadia, 14 years ago) ( diff )

added secondary resolution for WebPositive thta doesn't require internet access.

Haiku R1 Alpha 2 Release Addendum

While the Haiku Project strives for quality in official releases including alpha and betas, there will always be the chance of an unnoticed issue prior to release. This page serves to inform you any notable issues with the release and how to resolve them.

Installer fails on libwebcore.so

  • Error Message: General System Error
  • Reproduction: This seems to be caused through a certain combination of media and disc drives. During installation you may encounter a General System Error while copying libwebcore.so.
  • Resolution (with active internet connection) : To remedy this you need to open the Terminal application and run the following command. It will temporarily replace the version of WebPositive on the CD. You should now be able to restart the Installer application.
      installoptionalpackage webpositive 
    
  • Resolution (no internet access): To remedy this, WebPositive's libraries will be manually copied to the partition you are installing to and then the files will be "deleted" on the CD. To note, file modification on the LiveCD will not persist across reboots.
    • Click [ Desktop (Live-CD) ]
    • Click Deskbar --> select Applications --> click DriveSetup
    • Prepare and mount the partition you wish to install to.
    • Close DriveSetup
    • On the Desktop, right click the destination partition and in that popup menu:
      • select Add-ons --> Open Terminal
      • run the following commands & ignore the comments (lines starting with #).
            # Set up a variable to reduce typing.
            export dir=apps/WebPositive/lib
        
            # Create the directory on the partition being installed to.
        	mkdir -p $dir
        
        	# Copy the files from the LiveCD to the partition.
        	cp /boot/$dir/* $dir/
        
        	# Temporarily delete the files on the LiveCD.
        	rm -rf /boot/$dir/*.so
        
        	# Launch Installer
        	Installer
        
        
    • Installer will prompt you "The target volume is not empty ....", click [ Install anyway ].

sftp requires libedit.so

  • Error Message: runtime_loader: Cannot open file libedit.so.0: No such file or directory
  • Reproduction: When sftp is executed, it will fail to load.
  • Resolution: The following commands will download and extract the needed dependencies.
      wget http://haiku-files.org/files/optional-packages/libedit-20100424-r1a2-x86-gcc2-2010-05-10.zip
      unzip -d /boot libedit-20100424-r1a2-x86-gcc2-2010-05-10.zip
      rm libedit-20100424-r1a2-x86-gcc2-2010-05-10.zip
    
Note: See TracWiki for help on using the wiki.