Diese Version (2024/01/08 18:59) wurde bestätigt durch Daniel.Die zuvor bestätigte Version (2024/01/08 18:56) ist verfügbar.Diff

Linux: Basic Server Configuration

These setting here are an advice to think about when setting up a new linux- machine (here on an opensuse distrubution, which i really like).

By default openSuSE will set some conservative mountoptions, that are save, but not best choice for homeoffice use and maybe could also improve company servers. Here are some proposals to think about.

Basically i would recommend to use UEFI only in Bios and GPT- Partitiontable on at least two Harddrives. The Linux- Root- System AND the EFI- Partitions should be mirrored (raid1) for failsafe and mak it possible to have the system booting from ONE disk (which is not possible with raid5).

The Data (like Home and program data) can have raid5 with 3 or more disks.

Always use LVM, as this has many benefits. On OpenSuSE btrfs is the best Filesystem if you disable Quotas on datapartitions.

Nowadays, UEFI is always the best choice to boot. UEFI- Boot is quite straight forward: You first take some device, make it gpt- partitioned, create a partition (i would at least take 500 MB today, better 1GB in size), format that partition with FAT32 and mark the partition as efi-boot via the partition flag. Thats all. After some OS installed to that partition in a UEFI- way, the bios can load those files and start the OS.

Unfortunatelly, the designers of UEFI forgot, that if your not using hardware- raid (which i don't recommend, as your losing the ability to switch harddisks between your hardware), there is no standard way to raid the partition as FAT32 is not suitable for that (way too old filesystem).

Fortunatelly the designers of OSS software- raid were smarter: They found a way to work around that.

So I would suggest to use two disks both partioned with gpt and same sized efi-partitions and before creating the FAT32 filesystem do software raid on it. E.g.:

~ # mdadm --create --verbose /dev/md/efiboot --level=1 --raid-devices=2 --metadata=1.0 --name=efiboot --homehost=system /dev/sda1 /dev/sdb1

The important part is metadata=1.0 - this format has especially designed to fit the needs of raid1 of fat/efi- systems.

You than install your Linux to that md- Device. If its not found in the beginning of the installation, scan for raid- devices or just create it while installing.

LVM is a powerful partition-management-layer and should always be used, when there is some none low-end hardware present. If you can use the KDE Partitioning- Tool (which means having Plasma=KDE Desktop compatible support), the support is very inuitive and opens a lot of flexibility whne handling partitions, like adding more disk space or moving partitions, but also on console this offers good functionality. OpenSuSE offer to create LVM- Styled system setup in installation optionally (not by default). If you can: use it.

Raided LVM- Volumes

Noadays, raid1 or raid5 for system without LVM is outdated. Those things are integrated in LVM - so use it!

First, creat a volume group with two same size partitions on two discs, than create a raid1 on it (for example):

vgcreate vgsystem /dev/sdX1 /dev/sdY1
lvcreate -m1 --type raid1 -l 100%FREE -n lvroot vgsystem

where 100%FREE means 100% of Free Space used…

To check if raid1 works, use:

lvs -a -o name,copy_percent,devices vg_xxx

If this has not worked, use:

lvconvert --type raid1 -m1 vg_xxx/lvol1

Or - you can do raid5 with:

lvcreate -n lvdata --type raid5 -l 100%FREE -i 2 vgdata

where i equals the number of devices with Data (not including parity- storage)

Useful Commands

The KDE- Partitionmanager is still not perfect. LVM is mor powerful in these things:

Moving logical Volumes to physical Devices

Usually Partitions or Devices are only assigned to Volume-Groups (VG) and Logical Volumes (LV) are using them dynamically as needed. This makes it sometimes hard to understand, where the Data really is located right now. Especially when you are having different physical Devices, you may want one LV to use one Device.

For an overview how the Data is split, you can use:

# lvs -o+devices
LV     VG     Attr       LSize   Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert Devices
  home   system -wi-ao----  78.63g                                                     /dev/sdb2(8013)
  root   system -wi-ao----  97.89g                                                     /dev/sda4(0)
  shared system -wi-ao---- 786.64g                                                     /dev/sdb2(130893)

You can also move them to single Devices if needed. Here i wanted my home to also be on the faster Device sda. As sda4 had enough free space, i could do:

# pvmove -n system/home /dev/sdb2 /dev/sda4
Resizing logical Volumes with mounted Filesystem

can be done by e.g.

lvresize --size 20G /dev/vgfast/lvfast --resizefs

Brtfs is the way to go everywhere. There are some disadvanteges while it is still in developement and sometime a bit oversized for homeoffice, but no other filesystem is that good in general usage. Only use other Filesystems, if there are reasons for - e.g. when exchanging files with another windows on that pc.

BTRFs has a lot of Mountoptions and some here are really odd ones for every linux. I would suggest at least those:

For Desktopusage: compress=zstd:3,noatime,nodiratime,autodefrag

While autodefrag should not be necessary on ssd- harddiscs.

For Databases or files that need speed and are well backed up otherwise : nodatacow,nodatasum,noatime,nodiratime

Sources:

Brief: Quotas should be disabled

BTRFS comes with included support of disk quotas. It is enabled by default if a btrfs-volume is created. Disk quotas are useful to mangage diskspace, as they store informations of directory sizes in the filesystem. There may be programs, that calculate disk usage of directories only that way. One example is snapper: It will automatically delete old snapshots, if the space is running low on a device using snapshots. This is done, by checking the qoutas. Running snapper without qoutas will make this not working anymore. Instead other functions will be used - e.g. the maximum number of old snapshots to keep.

To find out, if quoutas are enabled, do:

btrfs qgroup show /

Quotas are complicated to manage by btrfs. As there are many situations, where the qoutas may get incorrect, they will often be invalidated and will need to be recalculated from scratch. Furthermore checking if they are correct is often needed - e.g. at startup or after some time. This process consumes a lot of cpu and disc utilisation and makes the hardware slow, sometimes rendering a computer useless for some time.

Because of this, the kernel.org- team recommends to turn disk quotas off if not needed.

This can be done by:

btrfs quota disable /

Snapper

After that, /etc/snapper/configs/root should be checked:

# limit for number cleanup
NUMBER_MIN_AGE="1800"
NUMBER_LIMIT="10"
NUMBER_LIMIT_IMPORTANT="10"

If you have a lot of Ram, you may adjust the swappiness to better fit your needs - or turn off swap completely.

e.g. /etc/sysctl.conf:

vm.swappiness = 60

While linux itself is a very secure system (when set up the right way), the rights given to files by default are not secure at all. Setting good rights is not an intuive process and is mostly not well done. So it needs some attention.

If you are the only user on your pc, or your linux pc is a machine for the net, then you maybe fine. But if your pc is shared between some users e.g. in your family and used by some other persons, then you may wish, that personal informations of the one user is not accessible to the other one.

Even if your pc is not used by others, there maybe other users on your pc by services running in different accounts, so maybe you want Data not to be visible to any user.

Lets start with a simple new file, let's say „~\securedata.txt“ with text „secure data“ in it. Let say we are user named testuser:

New File ~\securedata.txt :

testuser@xubuntu-stick:~$ echo secure data> ~/securedata.txt

Then become someone else, maybe user testuser2 and read that file:

testuser@xubuntu-stick:~$ su -l testuser2
Passwort:
testuser2@xubuntu-stick:~$

Now lets see what the other user has written in its secure file:

testuser2@xubuntu-stick:~$ cat ../testuser/securedata.txt
cat: ../testuser/securedata.txt: Keine Berechtigung

So everything right? No - not quite. Lets say horst decides to store is secure data in another location and do it again:

testuser@xubuntu-stick:~$ mv securedata.txt /tmp
testuser@xubuntu-stick:~$ su -l testuser2
Passwort:
testuser2@xubuntu-stick:~$ cat /tmp/securedata.txt
secure data

So now the data the one user created is not secure any more. Well ok this sounds fine, because the data was moved to an insecure directory.

But: Can you make sure that everybody knows which directories are secure and which aren't? Can you be really sure, that no personal information saved by any user-context-program is written only to secure directories and not visible to the other? I guess not.

So it may be a better approach to not make the files created by someone readable by other user by default.

There ist a tool for this called umask. This tool defines the permission for new created files.

By default the umask is 0002 or 0022. Those values are substracted from 0777, which would mean full access for everyone. You can check out the docs in the net how they work. I won't explain here, cause there is a big problem with umask: The value can only be changed on process level or user or systemwide. This means you cannot set them per directory - which would be intentional to the user.

So forget about umask.

F… what??? Yes: facl is the tool to do so. with that tool you can very much expand the rights per directory an on every file in detail. It ist also possible to have multiple group- access definitions, which are not possible otherwise.

So lets do some facl- work

FACL: get infos about settings

testuser@xubuntu-stick:~$ mkdir temp
testuser@xubuntu-stick:~$ getfacl temp
# file: temp
# owner: testuser
# group: testuser
user::rwx
group::rwx
other::r-x

As you can see, that directory has been created quite insecure. There is only the above permission preventing everyone to read the informations in it. Creating a new file in it, would make it the same way insecure, as it would have been before.

FACL: set default permissions

But now lets set the mode to better fit our needs:

testuser@xubuntu-stick:~$ setfacl -m d:o::--- temp
testuser@xubuntu-stick:~$ getfacl temp
# file: temp
# owner: testuser
# group: testuser
user::rwx
group::rwx
other::r-x
default:user::rwx
default:group::rwx
default:other::---

Note, that we only changed the DEFAULT permissions to be more secure (d:).

FACL: check new settings

Now lets again create a file there as we did before just in that - safe - directory. Also we can use getfacl on that file to check if it works:

testuser@xubuntu-stick:~$ echo secure data> ~/temp/securedata.txt
testuser@xubuntu-stick:~$ getfacl temp/securedata.txt
# file: temp/securedata.txt
# owner: testuser
# group: testuser
user::rw-
group::rw-
other::---

As you can see, that file is more secure than before. So lets check, what happens now if we move that file as before.

testuser@xubuntu-stick:~$ rm /tmp/securedata.txt
testuser@xubuntu-stick:~$ mv temp/securedata.txt /tmp

And check if it is accessible by another one:

testuser@xubuntu-stick:~$ su -l testuser2
Passwort:
testuser2@xubuntu-stick:~$ cat /tmp/securedata.txt
cat: /tmp/securedata.txt: Keine Berechtigung

You can also check the rights now:

testuser2@xubuntu-stick:~$ getfacl /tmp/securedata.txt
getfacl: Entferne führende '/' von absoluten Pfadnamen
# file: tmp/securedata.txt
# owner: testuser
# group: testuser
user::rw-
group::rw-
other::---

Now „Testuser2“ knows, that he has to ask „Testuser“ to tell him the secret he wrote in that file.

That way you can also have one or more default group(s) assigned and to give only those groups access to the file(s), which is very powerful. As for the user perspective i would rate that approach more secure, than the default one.

Its up to you to decide if this is more usable or not.

FACL: full ACL- Sytnax

The full Syntax is:

      [d[efault]:] [u[ser]:]uid [:perms]
             Permissions of a named user. Permissions of the file owner if uid is empty.

      [d[efault]:] g[roup]:gid [:perms]
             Permissions of a named group. Permissions of the owning group if gid is empty.

      [d[efault]:] m[ask][:] [:perms]
             Effective rights mask

      [d[efault]:] o[ther][:] [:perms]
             Permissions of others.

That means you can only set the defaults per user or per group and only files or directories at once.

FACL: use in batch and recursively

FACLs do also have good ways to be used for whole directories, chek out:

setfacl has a recursive option (-R) just like chmod:

-R, –recursive Apply operations to all files and directories recursively. This option cannot be mixed with `–restore'.

FACL: handle execute-bit with files and directories

…it also allows for the use of the capital-x X permission, which means: execute only if the file is a directory or already has execute permission for some user (X)

so doing the following should work:

Set all Files AND the directories recursively to be readwriteable by user colleague and only give X to all Directories and only those Files, that already have x set:

setfacl -R -m u:colleague:rwX .

For setting the default permissions to be like that:

setfacl -R -m d:u:colleague:rwX .

Some other intersting aspects:

  • There are some interesting usages of the sticky bits for a. the user and group- bit and b. to files and directories in seperate
  • Mind, that only the user of the file can change its ownership. Per default all files created by the user are owned by the user.
  • That means: If you don't want a user be able to change the ownership of a file into insecure permissions, it may be a good way to set the default user of files in the directory to root and only allow group- access to it. That way directories can be read and written, but not the content will not be opened to everyone by some hacky user (or virus in the last mail of that user?)

All in all thinking about permissions is a basic one whenever there is personal data that needs to be secured somehow. One cannot rely on the defaults and hope its all fine.

And with FACLs there are powerful tools that should cover everything an administrator needs.

Diese Website verwendet Cookies. Durch die Nutzung der Website stimmen Sie dem Speichern von Cookies auf Ihrem Computer zu. Außerdem bestätigen Sie, dass Sie unsere Datenschutzbestimmungen gelesen und verstanden haben. Wenn Sie nicht einverstanden sind, verlassen Sie die Website.Weitere Information
  • content/serverbasics.txt
  • Zuletzt geändert: 2024/01/08 18:59
  • (Externe Bearbeitung)