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

    FOG resizes all partitions even System Reserved!

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    5
    58
    10.7k
    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.
    • Q
      Quazz Moderator @maxcarpone
      last edited by

      @maxcarpone Could you provide a screenshot of the disk layout in Windows Disk Management?

      :1:3 is odd to say the least, thinking that disk layout is something like “System Reserved” “Main Windows partition” “Recovery”. Either that or it’s GPT and somehow the second partition wasn’t picked up… Not sure.

      But anyway, let’s focus on the images you have available to you in front of you first. I currently don’t really have an idea as to why it would fail in your situation, though.

      M 1 Reply Last reply Reply Quote 0
      • M
        maxcarpone @Quazz
        last edited by

        @Quazz Here it is.

        0_1543249267777_diskmgmt.png

        Q 1 Reply Last reply Reply Quote 0
        • Q
          Quazz Moderator @maxcarpone
          last edited by

          @maxcarpone Looks normal to me, should just work, very strange!

          Will likely look into an entirely different system for this later tonight if I don’t forget.

          1 Reply Last reply Reply Quote 0
          • Q
            Quazz Moderator
            last edited by

            After further investigation, using the ‘English’ label ‘System Reserved’ works fine.

            I double checked my french images and one dating 25 october capture the label was picked up correctly, but one dating 16 november was not.

            I believe the one around 25 october was the one I was using when I originally tested the new label regex and confirmed it working.

            Not sure how/why it wouldn’t work now, though.

            1 Reply Last reply Reply Quote 1
            • Q
              Quazz Moderator
              last edited by Quazz

              @Sebastian-Roth Soooo, this is bizarre, but both the [EeÉé] and [Dd]? seem to fail now.

              I am at a loss as to explain why though since it definitely worked 😕

              Tom ElliottT 1 Reply Last reply Reply Quote 0
              • Tom ElliottT
                Tom Elliott @Quazz
                last edited by Tom Elliott

                @Quazz I think it best to move the checks into a case statement and separate out whether it should be reserved or reserved with the accents.

                I’m suspecting the Regex method is very finicky.

                Possibly we need to use .*[Rr][EeÈè][Ss][EeÈè][Rr][Vv][EeÈè].*

                Here’s why:
                https://stackoverflow.com/questions/2348379/use-regular-expression-in-if-condition-in-bash

                Basically, ? in the if statement regex = Wildcard for one or more characters. You were, I presume, using [Dd] as an “if d exists or not, let’s be true” kind of scenario?

                I don’t think it has to do with the e or accented e’s, just plain it doesn’t know what to match and what not.

                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

                Q 1 Reply Last reply Reply Quote 0
                • Q
                  Quazz Moderator @Tom Elliott
                  last edited by Quazz

                  @Tom-Elliott We had case originally I believe, but it has more limited pattern matching, it wouldn’t work at all at the time.

                  I think it’s ultimately just going to be struggling with accented letters no matter what we do. Even cheeky capture methods like [D-Fd-f] don’t work to capture é in the inits (but does on something like Centos 7 or even online shell sandboxes.

                  I’m not sure WHY that is, though.

                  Basically, ? in the if statement regex = Wildcard for one or more characters. You were, I presume, using [Dd] as an “if d exists or not, let’s be true” kind of scenario?

                  I don’t think it has to do with the e or accented e’s, just plain it doesn’t know what to match and what not.

                  Yes, that was the original idea, which works in certain environments I suppose, but should definitely be replaced with a wild card instead. (along with [Dd])

                  However, even when removing that bit, it still fails to match. It so far has only worked with

                  [Rr]*[Ss][Ee][Rr][Vv]* as the pattern.

                  [Rr][EeÉé][Ss][Ee][Rr][Vv][EeÉé]* does not work.

                  I’m thinking that perhaps using grep to do the matching might be more consistent and predictable in its behavior.

                  Something like:

                  echo $label | grep -iq "R[ée]serv[ée]"

                  Tom ElliottT 1 Reply Last reply Reply Quote 0
                  • Tom ElliottT
                    Tom Elliott @Quazz
                    last edited by

                    @Quazz A way around it:

                    I believe the problem is dealing with multiple different characters within the same pattern of matching.

                    Maybe something like:

                    .*[Rr][Ee|È|è][Ss][Ee|È|è][Rr][Vv][Ee|È|è][Dd|].*

                    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

                    Q 1 Reply Last reply Reply Quote 0
                    • Q
                      Quazz Moderator @Tom Elliott
                      last edited by

                      @Tom-Elliott

                      I like that idea, I will test it in a minute, but I did edit it a little bit (correcting accents and changing the last character possibilities given the label format that gets checked + added support for Dutch)

                      [Rr][Ee|É|é][Ss][Ee][Rr][Vv][Ee|É|é][Dd|_|Ee]

                      Well edit with results

                      1 Reply Last reply Reply Quote 0
                      • Tom ElliottT
                        Tom Elliott
                        last edited by

                        Running some testing:

                        I created a labels.txt file
                        0_1543328875603_f8a14d35-48fc-42e0-8976-581d72ea0b9e-image.png

                        I then pulled the information from labels.txt into a variable.
                        0_1543328922648_82192f09-ceed-48a3-8618-9f798c3eacb6-image.png

                        Then I run inline testing: Regex pattern used: *[Rr][Ee|É|é][Ss][Ee|É|é][Rr][Vv][Ee|É|é|][Dd|_|]*
                        0_1543329044757_d1c35f63-feb7-4f37-832d-94362a185b0b-image.png

                        Then I run inline testing: Regex pattern used: .*[Rr][Ee|É|é][Ss][Ee|É|é][Rr][Vv][Ee|É|é|][Dd|_|].*
                        0_1543329095407_265e6872-f970-46af-b717-e21e6ae4052a-image.png

                        Hopefully this can help shed light. The .* matters more than we might expect.

                        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
                        • S
                          Sebastian Roth Moderator
                          last edited by

                          @Quazz Are you sure it’s both that fail now or could it just be one of them? I could imagine this being a very dirty character encoding issue. Could be wrong though.

                          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

                          Tom ElliottT 1 Reply Last reply Reply Quote 0
                          • Tom ElliottT
                            Tom Elliott @Sebastian Roth
                            last edited by

                            @Sebastian-Roth Talking with @Quazz in chat, he says “you’ll never guess what works, storing the regex into a variable”

                            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

                            Q 1 Reply Last reply Reply Quote 0
                            • Q
                              Quazz Moderator @Tom Elliott
                              last edited by Quazz

                              @Tom-Elliott [Rr][Ee|É|é][Ss][Ee][Rr][Vv][Ee|É|é][Dd|]

                              This one is confirmed to work in my test case.

                              Feel free to update github as I can’t create a PR atm

                              1 Reply Last reply Reply Quote 0
                              • S
                                Sebastian Roth Moderator
                                last edited by

                                @Quazz Great work. Could you please make sure to test this in the FOS client as well as the bash version might differ to the one you have on other systems. Possibly you have done the tests in the client already, then forget my comment.

                                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

                                Q 1 Reply Last reply Reply Quote 0
                                • Q
                                  Quazz Moderator @Sebastian Roth
                                  last edited by Quazz

                                  @Sebastian-Roth Yes, I have tested in FOS, every other variation we tried worked on regular systems already 🙂

                                  edit: I may have messed up the test case, I’ll try again in a bit though

                                  I dun goofed, I’m pretty embarassed. I messed up my sed which made the variable empty and of course it matches then…

                                  Tom ElliottT 1 Reply Last reply Reply Quote 1
                                  • Tom ElliottT
                                    Tom Elliott @Quazz
                                    last edited by

                                    @Quazz So what does this mean?

                                    Is the test cases working properly now?

                                    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

                                    Q 1 Reply Last reply Reply Quote 0
                                    • Q
                                      Quazz Moderator @Tom Elliott
                                      last edited by Quazz

                                      @Tom-Elliott Unfortunately not, it turns out it was working because the variable was empty.

                                      Back to square one.

                                      Would [Rr]*[Ss][Ee][Rr][Vv]* be dangerous to use in production? I don’t expect many false positives, but arguably not resizing certain partitions that should is less harmful than the reverse.

                                      edit: Even stuff like grep fails, the accents are blocking everything so far

                                      1 Reply Last reply Reply Quote 0
                                      • S
                                        Sebastian Roth Moderator
                                        last edited by

                                        @Quazz said in FOG resizes all partitions even System Reserved!:

                                        Even stuff like grep fails, the accents are blocking everything so far

                                        Possibly a character encoding thing. Sorry but have no great idea on how to work around this.

                                        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

                                        Tom ElliottT 1 Reply Last reply Reply Quote 0
                                        • Tom ElliottT
                                          Tom Elliott @Sebastian Roth
                                          last edited by

                                          @Sebastian-Roth I suppose we could try enforcing all of the systems to load UTF-8 locale?

                                          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

                                          Q 1 Reply Last reply Reply Quote 0
                                          • Q
                                            Quazz Moderator @Tom Elliott
                                            last edited by Quazz

                                            @Tom-Elliott BR2_ENABLE_LOCALE_WHITELIST="en_US"

                                            to

                                            BR2_ENABLE_LOCALE_WHITELIST="en_US.UTF-8" ?

                                            edit: is it possible the difference is down the glibc vs uClibc???

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

                                            169

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project