Tuesday, 23rd April 2024

Comment posted How to install Ubuntu Linux on Acer ASPIRE 5736Z Notebook / Get around the black screen install CD issue by .

Recent comments by

Share this on:

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

No Responses to “…”

  1. admin says:
    Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
    Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

    The post install will not work. Seems like one needs to set the nomodetest option also to the installed grub on the hard drive.

    View CommentView Comment
  2. hip0 says:
    Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
    Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

    After installing it one needs to use the boot CD once again and mount the installed partition to fix some issues.

    One needs to place in /etc/rc.local
    setpci -s 00:02.0 F4.B=00

    Also it’s necessery to edit /etc/default/grub
    in the file in variable
    GRUB_CMDLINE_LINUX_DEFAULT= change
    “quiet splash” to “quiet acpi_osi=Linux”

    Next to set the new grub configuration, I issued:

    ubuntu:~# update-grub2

    One more thing I did during I was in rescue mode with the Ubuntu Cd was to install the xsplash package, e.g.:

    ubuntu:~# apt-get install xsplash

    ….

    After that I had a lot of issues still while booting I couldn’t properly boot the GUI (Gnome).

    To make the Graphic environment start I had to update to the latest packages with apt:

    ubuntu:~# apt-get update && apt-get upgrade

    After a reboot the X server started but still when I leave the system for some time idle in graphic env it hangs out.

    In overall it’s terrible to install Ubuntu on this notebook I wonder if it will work better with Debian or some other Linux distro.

    View CommentView Comment
    • hip0 says:
      Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
      Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

      This can be set setpci -s 00:02.0 F4.B=00 on cron to restart if the monitor gets dark again, it will restart in some seconds though …
      for instance
      echo ‘*/1 * * * * setpci -s 00:02.0 F4.B=00 >/dev/null 2>&1’ | crontab –

      View CommentView Comment
      • hip0 says:
        Firefox 6.0.2 Firefox 6.0.2 GNU/Linux GNU/Linux
        Mozilla/5.0 (X11; Linux i686; rv:6.0.2) Gecko/20100101 Firefox/6.0.2

        Actually a better crontab to set up, which will work around a black screen waiting issues which appear whenever laptop is closed or opened goes like this:

        * * * * * sleep 15; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
        * * * * * sleep 30; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
        * * * * * sleep 45; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
        * * * * * sleep 15; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf
        * * * * * sleep 30; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf
        * * * * * sleep 45; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf

        View CommentView Comment
        • qkrika says:
          Firefox 7.0.1 Firefox 7.0.1 GNU/Linux GNU/Linux
          Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Gecko/20100101 Firefox/7.0.1

          where to put these comands?? please help

          View CommentView Comment
          • admin says:
            Firefox 8.0 Firefox 8.0 Windows XP Windows XP
            Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0

            Hi,
            setpci -s 00:02.0 F4.B=00 needs to be set in /etc/rc.local before the
            exit 0 command

            The rest is explained well I believe. Which exact commands are you referring to?

            best
            Georgi

            View CommentView Comment
          • admin says:
            Firefox 10.0.2 Firefox 10.0.2 Ubuntu Ubuntu
            Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:10.0.2) Gecko/20100101 Firefox/10.0.2

            Type the following in your gnome-terminal:
            sudo su
            echo ‘* * * * * sleep 15; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null’ > workaround_blankscreen_bug.txt
            echo ‘* * * * * sleep 30; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null’ >> workaround_blankscreen_bug.txt
            echo ‘* * * * * sleep 45; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null’ >> workaround_blankscreen_bug.txt
            echo ‘* * * * * sleep 15; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf’ >> workaround_blankscreen_bug.txt
            echo ‘* * * * * sleep 30; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf’ >> workaround_blankscreen_bug.txt
            echo ‘* * * * * sleep 45; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf’ >> workaround_blankscreen_bug.txt
            crontab -u root workaround_blankscreen_bug.txt

            This is it now the crontab is set.
            This should really work. Sorry for my veryyyy delayed reply 🙂

            best

            View CommentView Comment
        • qkrika says:
          Firefox 8.0 Firefox 8.0 Windows 7 Windows 7
          Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20100101 Firefox/8.0

          ok that. but i mean on these last comands

          * * * * * sleep 15; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
          * * * * * sleep 30; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
          * * * * * sleep 45; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
          * * * * * sleep 15; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf
          * * * * * sleep 30; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf
          * * * * * sleep 45; cp -rpf /etc/resolv.conf.auto /etc/resolv.conf

          because whenever laptop is closed and opened i do not have light

          View CommentView Comment
          • admin says:
            Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
            Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

            hi you need to put that on crontab. You should open crontab with command:
            crontab -u root -e
            then paste inside this commands and save, that al..
            Tell me if you did it, if not I will try to explain better though I’m quite sure this should be enough as explanation.
            Also take a look at crontab’s manual write in gnome-terminal:
            man crontab.

            View CommentView Comment
        • qkrika says:
          Firefox 8.0 Firefox 8.0 Ubuntu Ubuntu
          Mozilla/5.0 (Ubuntu; X11; Linux i686; rv:8.0) Gecko/20100101 Firefox/8.0

          sorry i am new at linux. I do not understand. when i put crontab -u root -e says to me:
          no crontab for root – using an empty one
          888
          do i put all comands or just after ” ; “
          * * * * * sleep 15; setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null
          or just: setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null

          because when i put ” setpci -s 00:02.0 F4.B=00 2>&1 >/dev/null ” in terminal ligh is automaticly on!
          can you tel me in which file to put comands

          Thank you very much. great post!
          helped me a lot.
          but I have still just this problem.

          View CommentView Comment
  3. hip0 says:
    Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
    Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

    This one might go to /etc/rc.local also

    echo 2 > /sys/class/backlight/acpi_video0/brightness

    View CommentView Comment
  4. Kostas R says:
    Firefox 5.0 Firefox 5.0 Windows 7 x64 Edition Windows 7 x64 Edition
    Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0

    THANK YOU!!!! It worked!

    View CommentView Comment
    • admin says:
      Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
      Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

      Glad to know it, really works 😉

      View CommentView Comment
  5. asimi Mumini says:
    Firefox 4.0b4 Firefox 4.0b4 Windows Vista Windows Vista
    Mozilla/5.0 (Windows NT 6.0; rv:2.0b4) Gecko/20100818 Firefox/4.0b4

    I have black screen problem.
    I m new to linux distribution all what you said above i don understand them i just what you to let me know how to get around it. thanks

    View CommentView Comment
    • admin says:
      Epiphany 2.30.6 Epiphany 2.30.6 Debian GNU/Linux x64 Debian GNU/Linux x64
      Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+ Debian/squeeze (2.30.6-1) Epiphany/2.30.6

      Hello, please read carefully the article, I think I’ve explained step by step what to do to make the Ubuntu install on the notebook. If you have specific issues during install I can help. But tell me where exactly from following the article you get problems.

      View CommentView Comment
  6. hip0 says:
    Firefox 10.0.2 Firefox 10.0.2 Ubuntu Ubuntu
    Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:10.0.2) Gecko/20100101 Firefox/10.0.2

    Just wanted to say, the brightness function keys:
    Fn key + Left arrow / Fn key + Right arrow, works just fine on this notebook with Ubuntu Linux.

    View CommentView Comment
  7. Rafael says:
    Google Chrome 20.0.1132.47 Google Chrome 20.0.1132.47 Mac OS X  10.7.4 Mac OS X 10.7.4
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.47 Safari/536.11

    Thanks for the install tip!!!

    View CommentView Comment
  8. Sam says:
    Opera Mobile 12.10 Opera Mobile 12.10 Android 2.3.6 Android 2.3.6
    Opera/9.80 (Android 2.3.6; Linux; Opera Mobi/ADR-1309251116) Presto/2.11.355 Version/12.10

    I know I’m a bit late to the party but I have to ask: which is the best version of Ubuntu that is compatible with the Acer Aspire 5736Z? I have Kubuntu 14 on mine and it has a host of problems with new ones popping up each time I fix them. Which Ubuntu version or Linux distro works best?

    View CommentView Comment
    • admin says:
      Firefox 29.0 Firefox 29.0 Windows 7 x64 Edition Windows 7 x64 Edition
      Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0

      Hi Sam,

      I would recommend Linux Mint, as my experience with it for desktop was better than with Ubuntu / Kubuntu. Give it a try if you haven’t still. Drop a message on your experiences.


      Best,
      Georgi

      View CommentView Comment