• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Lenovo x130e

Scheduled Pinned Locked Moved
Hardware Compatibility
13
19
9.5k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B
    benneta
    last edited by Apr 3, 2012, 2:34 PM

    has anyone had any luck getting these notebooks to work with pxe boot? I keep getting the snowy screen when I try to perform a full registration.

    1 Reply Last reply Reply Quote 0
    • R
      Robert Erbes
      last edited by Apr 4, 2012, 1:01 AM

      I got that with some of my first images. What OS you using for FOG?

      1 Reply Last reply Reply Quote 0
      • B
        benneta
        last edited by Apr 5, 2012, 11:08 AM

        [quote=“Robert Erbes, post: 2671, member: 827”]I got that with some of my first images. What OS you using for FOG?[/quote]
        The server is running ubuntu, and the notebook is win7.

        I’ve not had an issue imaging any other makes/models of notebook or desktop

        1 Reply Last reply Reply Quote 0
        • E
          Eric
          last edited by Apr 5, 2012, 5:10 PM

          I posted my custom 3.3 Kernel in another thread. It resolved the snowy screen issue that I had on some of my Dells. Maybe it will help you too? Below is what I posted in another thread:

          I recently made my own Kernel as a proof of concept. Its based of the Linux 3.3 Kernel and it resolved a lot of problems for me. Its attached in my post here. Be sure to backup any of your existing Kernels in /tftpboot/fog/kernel/

          Let me know if it works for you.

          [url]http://scatteredspace.com/Fog/bzImage.zip[/url]

          1 Reply Last reply Reply Quote 0
          • P
            PennTech
            last edited by Apr 12, 2012, 2:49 PM

            Than you Eric, your kernel worked great with our x130e, as well as our x120e.

            1 Reply Last reply Reply Quote 0
            • Y
              yogipaolo
              last edited by Jun 27, 2012, 9:12 PM

              This definitely worked for me as well!
              Thank you for this solution. I have 40 of these bad boys to image and I’m trying to impress my boss with fog. This will go a long way towards that aim.

              Would you mind filling us in on what mods you made to this kernel?

              I’m going to do some toying with the kernel this weekend.

              Thanks!
              [quote=“Eric, post: 2726, member: 83”]I posted my custom 3.3 Kernel in another thread. It resolved the snowy screen issue that I had on some of my Dells. Maybe it will help you too? Below is what I posted in another thread:

              I recently made my own Kernel as a proof of concept. Its based of the Linux 3.3 Kernel and it resolved a lot of problems for me. Its attached in my post here. Be sure to backup any of your existing Kernels in /tftpboot/fog/kernel/

              Let me know if it works for you.

              [url]http://scatteredspace.com/Fog/bzImage.zip[/url][/quote]

              1 Reply Last reply Reply Quote 0
              • K
                kcasper
                last edited by Jul 2, 2012, 6:02 PM

                Thank you eric! After countless hours messing around with kernel updates I decided to give yours a try. It worked and now allows me to boot into fog with our Lenovo desktops and laptops. Props to you!

                1 Reply Last reply Reply Quote 0
                • M
                  M Bodelson
                  last edited by Aug 23, 2012, 7:08 PM

                  [quote=“Eric, post: 2726, member: 83”]I posted my custom 3.3 Kernel in another thread. It resolved the snowy screen issue that I had on some of my Dells. Maybe it will help you too? Below is what I posted in another thread:

                  I recently made my own Kernel as a proof of concept. Its based of the Linux 3.3 Kernel and it resolved a lot of problems for me. Its attached in my post here. Be sure to backup any of your existing Kernels in /tftpboot/fog/kernel/

                  Let me know if it works for you.

                  [URL=‘http://scatteredspace.com/Fog/bzImage.zip’]http://scatteredspace.com/Fog/bzImage.zip[/quote[/URL]]

                  Can your kernel replace the one that loaded with FOG .32 installation or would it be best to just associate it with a particular PC model? I was having problems with a Dell 990 that has an AMD Radeon HD 6450 video card. When I used your kernal, I got past all the other errors and snow and actually created an image - but I have yet to deploy it. Thanks for your help.[/quote]

                  1 Reply Last reply Reply Quote 0
                  • T
                    todd nova
                    last edited by Sep 25, 2012, 4:09 PM

                    Should i use copy and paste the bziamge kernel and overwrite the existing one. how should i go about this. Please help.

                    1 Reply Last reply Reply Quote 0
                    • C
                      chad-bisd Moderator
                      last edited by Sep 25, 2012, 5:31 PM

                      make a copy of the default bzImage
                      [CODE]sudo cp /tftpboot/fog/kernel/bzImage /tftpboot/fog/kernel/bzImage.default[/CODE]
                      OPTIONAL: make the copy of the image immutable so you don’t accidentally overwrite it
                      [CODE]sudo chattr +i /tftpboot/fog/kernel/bzImage.default[/CODE]
                      download the kernel you want to use, save it anywhere you can get to it, like your Desktop.
                      copy the new kernel to the tftpboot location
                      [CODE]sudo cp ~/Desktop/bzImage-newfile /tftpboot/fog/kernel/bzImage[/CODE]
                      change the owner,group, and permissions on the file just as a precaution
                      [CODE]
                      sudo chown fog:root /tftpboot/fog/kernel/bzImage
                      sudo chmod 644 /tftpboot/fog/kernel/bzImage
                      [/CODE]


                      If you would like to make a donation to the Fog project, please do so [U][COLOR=#0000ff][URL='http://sourceforge.net/dona…

                      1 Reply Last reply Reply Quote 0
                      • T
                        todd nova
                        last edited by Sep 25, 2012, 6:35 PM

                        Thanks. I have done step by step what you said but i am stuck at the copy command when i type
                        sudo copy ~/Desktop/bzImage-newfile /tftpboot/fog/kernel/bzImage

                        I get sudo:copy: command not found

                        Ive also tried taking out the -newfile part but i get the same error. i did also take the / out before tftpboot but i got permission denied.

                        1 Reply Last reply Reply Quote 0
                        • C
                          chad-bisd Moderator
                          last edited by Sep 25, 2012, 6:38 PM

                          [COLOR=#000000]ok. I fixed the command in the previous post. switching from MS to Linux a lot, I get the commands backwards (dir and ls especially). And you’ll need to substitute the real name of the file you downloaded for bzImage-newfile.[/COLOR]


                          If you would like to make a donation to the Fog project, please do so [U][COLOR=#0000ff][URL='http://sourceforge.net/dona…

                          1 Reply Last reply Reply Quote 0
                          • T
                            todd nova
                            last edited by Sep 25, 2012, 6:46 PM

                            Its actally the same name bzimage. Thats what was in this threads file lol. I am still getting that same error though. Also another quick note i am not able to pxe boot now to my machines. I dont know if its because now i have bzimage and bzimage.default in the kernal folder of tftp. I am really new to linux so i am getting use to this.

                            1 Reply Last reply Reply Quote 0
                            • C
                              chad-bisd Moderator
                              last edited by Sep 25, 2012, 6:48 PM

                              you need to have a file called “bzImage” exactly, capitalization is important in the Linux world. And what error are you still getting. You need to be specific since you’ve gotten multiple issues in this thread.


                              If you would like to make a donation to the Fog project, please do so [U][COLOR=#0000ff][URL='http://sourceforge.net/dona…

                              1 Reply Last reply Reply Quote 0
                              • M
                                mattyjpeterson
                                last edited by Mar 28, 2013, 8:28 PM

                                Thanks Eric for the image. That did the trick.
                                Thanks chad-bisd for the commands. Made it very easy to change what image file to use.

                                1 Reply Last reply Reply Quote 0
                                • T
                                  ted33
                                  last edited by Jan 22, 2014, 12:37 PM

                                  [quote=“Eric, post: 2726, member: 83”]I posted my custom 3.3 Kernel in another thread. It resolved the snowy screen issue that I had on some of my Dells. Maybe it will help you too? Below is what I posted in another thread:

                                  I recently made my own Kernel as a proof of concept. Its based of the Linux 3.3 Kernel and it resolved a lot of problems for me. Its attached in my post here. Be sure to backup any of your existing Kernels in /tftpboot/fog/kernel/

                                  Let me know if it works for you.

                                  [url]http://scatteredspace.com/Fog/bzImage.zip[/url][/quote]
                                  hi,
                                  it is possible to have your file .config ?
                                  thank you

                                  1 Reply Last reply Reply Quote 0
                                  • Tom ElliottT
                                    Tom Elliott
                                    last edited by Jan 22, 2014, 12:38 PM

                                    ted33,

                                    can you try my kernel:

                                    [url]https://mastacontrola.com/fogboot/kernel/bzImage[/url]

                                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                    1 Reply Last reply Reply Quote 0
                                    • T
                                      ted33
                                      last edited by Jan 22, 2014, 9:16 PM

                                      Hello Tom,
                                      Thank you for the kernel

                                      1 Reply Last reply Reply Quote 0
                                      • K
                                        kiwimatt
                                        last edited by Mar 18, 2014, 10:46 AM

                                        many thanks chad and eric , this has saved my bacon , please keep up the good work

                                        laptop/netbbok is an asus x552c , had to disbale uefi , blast hdd to remove gpt format and use the custom kernel above

                                        BIG UP TO YOU ALL from a linux/ubuntu fog newbie

                                        1 Reply Last reply Reply Quote 0
                                        • 1 / 1
                                        • First post
                                          Last post

                                        257

                                        Online

                                        12.0k

                                        Users

                                        17.3k

                                        Topics

                                        155.2k

                                        Posts
                                        Copyright © 2012-2024 FOG Project