• 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
    11.0k
    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 @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
                                • Q
                                  Quazz Moderator
                                  last edited by

                                  Haven’t forgotten about this, just been setting up a build environment so I can try out some of the locale options and see if anything helps.

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

                                    I did not really understand what was going on here… Have you made some progress?

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

                                      @maxcarpone Basically, unicode support (required for letters such as é) is broken/missing in current builds, causing the check to fail.

                                      I think we’re on the right track, but each build takes time to compile, so for each idea it takes hours before I can test.

                                      Currently looking into busybox locale support.

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

                                        Still no improvement, I did notice /usr/share/locale being empty, not sure if that’s expected on buildroot or not… (according to the buildroot code, locale support only works if the target file system has locales in /usr/share/locale)

                                        I have a week off next week, so this seems like it will be on hold for a while.

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

                                          @Quazz Thanks for looking into this!

                                          Usually you don’t have to recomplie from scratch all the time. Try changing some code or setting and run make again. Depending on what you changed this will only take a couple of minutes.

                                          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

                                            @Sebastian-Roth That’s usually true, but for some reason my changes weren’t being reflected, I was probably doing something wrong, but couldn’t figure it out.

                                            So far, the only thing I’ve been able to find is that everything should work, sigh.

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

                                            272

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project