ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    What Are You Doing Right Now

    Water Closet
    time waster
    285
    88.9k
    41.3m
    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.
    • brandon220B
      brandon220
      last edited by

      I learned something very valuable last night - don't let Fedora server partition disks automatically. I set up a Nextcloud instance with a 3Tb disk. Fedora automatically set up the /root as 15Gb and left the rest in Never Never Land. I was going to use Gparted and move the partition but just started over. Sad part is I didn't check it sooner. I already exported and moved to another host. Lesson learned.

      ObsolesceO travisdh1T black3dynamiteB 3 Replies Last reply Reply Quote 0
      • ObsolesceO
        Obsolesce @brandon220
        last edited by

        @brandon220 said in What Are You Doing Right Now:

        I learned something very valuable last night - don't let Fedora server partition disks automatically. I set up a Nextcloud instance with a 3Tb disk. Fedora automatically set up the /root as 15Gb and left the rest in Never Never Land. I was going to use Gparted and move the partition but just started over. Sad part is I didn't check it sooner. I already exported and moved to another host. Lesson learned.

        It uses LVM by default... so it's super easy to increase that 15GB to whatever you want.... you don't need gparted, you use the built-in LVM commands.

        1 Reply Last reply Reply Quote 0
        • travisdh1T
          travisdh1 @brandon220
          last edited by

          @brandon220 said in What Are You Doing Right Now:

          I learned something very valuable last night - don't let Fedora server partition disks automatically. I set up a Nextcloud instance with a 3Tb disk. Fedora automatically set up the /root as 15Gb and left the rest in Never Never Land. I was going to use Gparted and move the partition but just started over. Sad part is I didn't check it sooner. I already exported and moved to another host. Lesson learned.

          But this is a good thing. You can assign all that unused space somewhere outside of the /var/www/html/nextcloud directory like /data.

          Do you need a refresher on using LVM? I bet that space has already been assigned a Volume Group.

          1 Reply Last reply Reply Quote 0
          • brandon220B
            brandon220
            last edited by

            It showed the 2.91Tb as a drive if you looked with the parted command in Fedora but if you df-h it just showed / as 15Gb. I got so used to using Ubuntu for everything and have slowly been migrating away to Fedora. I am no expert and will be the first to admit it.

            travisdh1T 1 Reply Last reply Reply Quote 0
            • travisdh1T
              travisdh1 @brandon220
              last edited by

              @brandon220 said in What Are You Doing Right Now:

              It showed the 2.91Tb as a drive if you looked with the parted command in Fedora but if you df-h it just showed / as 15Gb. I got so used to using Ubuntu for everything and have slowly been migrating away to Fedora. I am no expert and will be the first to admit it.

              Take a look at vgdisplay. I'm betting there is a lot of space available that you can use.

              IE:

              lvcreate -l 95%FREE -n "new_lv_name" vgname_from_vgdisplay
              mkfs.xfs /dev/vg_name_from_vgdisplay/new_lv_name
              
              1 Reply Last reply Reply Quote 1
              • ObsolesceO
                Obsolesce
                last edited by

                0_1516309295119_9ff45270-581c-42f4-9973-d8bb2d8984d7-image.png

                lvdisplay

                Do a lvextend --help. Lots of options!

                Same with VG:
                0_1516309373129_5243dfd9-8805-4c81-83d5-6219bdb84b65-image.png

                travisdh1T 1 Reply Last reply Reply Quote 2
                • travisdh1T
                  travisdh1 @Obsolesce
                  last edited by

                  @tim_g said in What Are You Doing Right Now:

                  0_1516309295119_9ff45270-581c-42f4-9973-d8bb2d8984d7-image.png

                  lvdisplay

                  Do a lvextend --help. Lots of options!

                  Same with VG:
                  0_1516309373129_5243dfd9-8805-4c81-83d5-6219bdb84b65-image.png

                  I didn't recommend lvextend, just because with Nextcloud I think it's better to separate the system from your data storage. At least makes managing things like backups of the data easier anyway.

                  1 Reply Last reply Reply Quote 0
                  • black3dynamiteB
                    black3dynamite @brandon220
                    last edited by

                    @brandon220 said in What Are You Doing Right Now:

                    I learned something very valuable last night - don't let Fedora server partition disks automatically. I set up a Nextcloud instance with a 3Tb disk. Fedora automatically set up the /root as 15Gb and left the rest in Never Never Land. I was going to use Gparted and move the partition but just started over. Sad part is I didn't check it sooner. I already exported and moved to another host. Lesson learned.

                    You normally should have a dedicated disk for nextcloud data anyway.

                    brandon220B 1 Reply Last reply Reply Quote 1
                    • ObsolesceO
                      Obsolesce
                      last edited by

                      Yeah, then just do that then.

                      No reason to reinstall.

                      1 Reply Last reply Reply Quote 0
                      • black3dynamiteB
                        black3dynamite
                        last edited by black3dynamite

                        Finished a Airtame demo call. It doesn't say on there website, but instead of 30 day free trial, we have a 60 day trial since we are an Educational institution.

                        1 Reply Last reply Reply Quote 1
                        • brandon220B
                          brandon220 @black3dynamite
                          last edited by

                          @black3dynamite Seems like everyone leaves the data in the default location. I can't recall anyone moving it outside of /var/www/html/nextcloud/data on most things i have read including @JaredBusch guides.

                          JaredBuschJ black3dynamiteB 2 Replies Last reply Reply Quote 0
                          • JaredBuschJ
                            JaredBusch @brandon220
                            last edited by

                            @brandon220 said in What Are You Doing Right Now:

                            @black3dynamite Seems like everyone leaves the data in the default location. I can't recall anyone moving it outside of /var/www/html/nextcloud/data on most things i have read including @JaredBusch guides.

                            I never write customization into a guide.

                            1 Reply Last reply Reply Quote 0
                            • black3dynamiteB
                              black3dynamite @brandon220
                              last edited by

                              @brandon220 said in What Are You Doing Right Now:

                              @black3dynamite Seems like everyone leaves the data in the default location. I can't recall anyone moving it outside of /var/www/html/nextcloud/data on most things i have read including @JaredBusch guides.

                              I mounted my /dev/vg_data1/lv_data to /var/www/html/nextcloud/data.

                              sudo bash -c 'echo "/dev/vg_data1/lv_data  /var/www/html/nextcloud/data  xfs  defaults  0  0" >> /etc/fstab'
                              
                              1 Reply Last reply Reply Quote 1
                              • thwrT
                                thwr
                                last edited by

                                Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                wrx7mW popesterP 2 Replies Last reply Reply Quote 1
                                • wrx7mW
                                  wrx7m @thwr
                                  last edited by

                                  @thwr said in What Are You Doing Right Now:

                                  Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                  Yikes. I still have a cough from a horrible head and chest cold that started on December 19th.

                                  thwrT 1 Reply Last reply Reply Quote 1
                                  • popesterP
                                    popester @thwr
                                    last edited by

                                    @thwr said in What Are You Doing Right Now:

                                    Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                    I just can't.... It's too easy.

                                    1 Reply Last reply Reply Quote 0
                                    • JaredBuschJ
                                      JaredBusch
                                      last edited by JaredBusch

                                      Because I have a dedicated VM for Nextcloud, I just mounted the entire /var/www/html directory to a different partition, though it is sitll on the same vhdx.

                                      /dev/fedora/data /var/www/html                    ext4    defaults        1 2
                                      
                                      1 Reply Last reply Reply Quote 1
                                      • thwrT
                                        thwr @wrx7m
                                        last edited by

                                        @wrx7m said in What Are You Doing Right Now:

                                        @thwr said in What Are You Doing Right Now:

                                        Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                        Yikes. I still have a cough from a horrible head and chest cold that started on December 19th.

                                        ouch. We're facing a big wave of influenza here. Austria's stock of vaccine is already depleted.

                                        As for me, well, I guess it's just a simple cold.

                                        JaredBuschJ 1 Reply Last reply Reply Quote 0
                                        • JaredBuschJ
                                          JaredBusch @thwr
                                          last edited by

                                          @thwr said in What Are You Doing Right Now:

                                          @wrx7m said in What Are You Doing Right Now:

                                          @thwr said in What Are You Doing Right Now:

                                          Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                          Yikes. I still have a cough from a horrible head and chest cold that started on December 19th.

                                          ouch. We're facing a big wave of influenza here. Austria's stock of vaccine is already depleted.

                                          As for me, well, I guess it's just a simple cold.

                                          This year's flu strains are bad. the vaccines are only ~25% effective. But we all have had our shots here. Because a 25% bonus on the dice is better than a 0% bonus.

                                          wrx7mW scottalanmillerS 2 Replies Last reply Reply Quote 2
                                          • wrx7mW
                                            wrx7m @JaredBusch
                                            last edited by

                                            @jaredbusch said in What Are You Doing Right Now:

                                            @thwr said in What Are You Doing Right Now:

                                            @wrx7m said in What Are You Doing Right Now:

                                            @thwr said in What Are You Doing Right Now:

                                            Trying hard on a new record for tissue usage. Currently measured in tissues / minute.

                                            Yikes. I still have a cough from a horrible head and chest cold that started on December 19th.

                                            ouch. We're facing a big wave of influenza here. Austria's stock of vaccine is already depleted.

                                            As for me, well, I guess it's just a simple cold.

                                            This year's flu strains are bad. the vaccines are only ~25% effective. But we all have had our shots here. Because a 25% bonus on the dice is better than a 0% bonus.

                                            That number is inflated from what I heard. I was hearing as low as 10% for this year.
                                            https://www.cbsnews.com/news/this-years-flu-vaccine-may-only-be-10-effective-experts-warn/

                                            thwrT 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 2706
                                            • 2707
                                            • 2708
                                            • 2709
                                            • 2710
                                            • 4443
                                            • 4444
                                            • 2708 / 4444
                                            • First post
                                              Last post