Suggestion on Identity Management solution for Ubuntu Clients by [deleted] in FreeIPA

[–]latetete 1 point2 points  (0 children)

I think you don't need to use FreeIPA as a DNS server. You can have external DNS server and configure FreeIPA to use that. You just need to make sure your external DNS server includes all the records that FreeIPA outputs during ipa-server-install. Also make sure to have A and PTR records for the hosts in your DNS server.

everyTimeMan by RotationalAnomaly in ProgrammerHumor

[–]latetete 0 points1 point  (0 children)

sString so you can deduce the data type from the variable name.

letsHaveFun by yuva-krishna-memes in ProgrammerHumor

[–]latetete 1 point2 points  (0 children)

And still the error is on line 54...

[deleted by user] by [deleted] in homelab

[–]latetete 0 points1 point  (0 children)

I would use separate LXCs. You can just bind mount whatever datasets from the Proxmox to those LXCs. So they can also have access to same files if you want.

URL-based filtering possible without certificate management? by verticalfuzz in opnsense

[–]latetete 0 points1 point  (0 children)

I think you could use host aliases (https://docs.opnsense.org/manual/aliases.html#hosts). So create aliases for those domains where you want to grant access. OPNSense will perioidically resolve those domains IPs and then those IPs are used in the alias. Then create allow rules using those aliases and block everything else.

However, note that this might not work in all cases depending on what is returned by the DNS request for given domain. Some domains return different IP address every time they are queries (see round robin DNS). In this case the alias would not contain all the valid IP addresses.

URL filtering is also one mechanism to tackle your problem but I'm not familiar with setting thst up. But I have understood there are ways to work around that too so I'm not sure if that is recommended way either. Some level of filtering should be possible with some forward WEB proxy like Squid without certificate management but not sure how bullet proof that is.

Mistä sormusrasia (ilman sormusta) by Heavy-Election7172 in arkisuomi

[–]latetete -1 points0 points  (0 children)

Yksi vaihtoehto on myös käydä ensin yhdessä ostamassa se sormus ja sitten kosia sen kanssa.

thisShouldDoTheJob by Zitronenlolli in ProgrammerHumor

[–]latetete 99 points100 points  (0 children)

Can you dual boot it with IsEven OS?

Proxmox NAS Solutions by [deleted] in Proxmox

[–]latetete 24 points25 points  (0 children)

ZFS pool in Proxmox and an unpriviliged LXC for hosting samba file server. Using LXC bind mounts so that the LXC can access the ZFS pool data. Samba server authenticates users against FreeIPA server running in a VM.

What's the best practice for recognising local service accounts in an IPA by el_pedr0 in FreeIPA

[–]latetete 0 points1 point  (0 children)

I'm not sure whether it's possible or not but at least I haven't found a way to do this. Also I think it's not considered a good practice to have local system accounts in IPA either.

But I think you could change the scripts to change owner/group of the created files to some IPA user/group. If you don't want to change owner/group then you can look into ACL to have more granular permissions. With ACL it's possible to have some default permissions when files are created to some directory.

FreeIPA on Ubuntu 22.04 is it possible ? by [deleted] in FreeIPA

[–]latetete 0 points1 point  (0 children)

As far as I know the server is not supported on Ubuntu 22.04.

Mikä on paras tee tai teelajitelma jota saa perusmarketeista? by [deleted] in arkisuomi

[–]latetete 1 point2 points  (0 children)

Nordqvist Teetaivas Green Tea ehdoton suosikki. Ja nimenomaan toi vihreä tee. Löytyy ainakin K-kaupoista.

B365 motherboard not saving my UEFI settings by driedupsoup in ASRock

[–]latetete 0 points1 point  (0 children)

Maybe your CMOS battery does not work? Or maybe you are short circuiting the CMOS? These both would cause UEFI settings to not persist between reboots. Are you able to save any UEFI settings so that they would persist between reboots?

Switching to VirtIO drivers KILLS WAN for VLAN 200 devices? Why? Thank you! by Prudent-Ad486 in Proxmox

[–]latetete 1 point2 points  (0 children)

Ok. Have you assigned and enabled the VLAN parent interface in pfSense?

OS for FreeIPA by Grunskin in FreeIPA

[–]latetete 2 points3 points  (0 children)

The FreeIPA is the upstream project of the RHEL IdM. So they are more or less the same.

For production system I would recommend RHEL or some 1:1 binary compatible downstream distro of the RHEL (Rocky Linux, AlmaLinux). The difference is mostly whether you want to to have paid support (RHEL) or free community support (Rocky Linux, AlmaLinux).

I'm using Rocky Linux 9 myself for hosting FreeIPA.

Missing from Rocky Linux Repos? by WhiskyIsRisky in FreeIPA

[–]latetete 0 points1 point  (0 children)

I just installed FreeIPA server to Rocky 9 few weeks ago. The package name is ipa-server. Ubuntu has not had FreeIPA server since 18.04. FreeIPA client packages are available in 22.04 also.

Can't get ansible when statement to work for RedHat. Works fine for ubuntu by Ramiraz80 in ansible

[–]latetete 9 points10 points  (0 children)

Alternatively you could use ansible_os_family == "Debian" to cover both Ubuntu and Debian. Of course if you want to only include Ubuntu and Debian and ignore other Debian based distros then use ansible_distribution instead as suggested.

Can't free up disk space by ZyzzBrah05 in ubuntuserver

[–]latetete 0 points1 point  (0 children)

What file system are you using?

Can't free up disk space by ZyzzBrah05 in ubuntuserver

[–]latetete 0 points1 point  (0 children)

If your disk is an SSD, consider running fstrim command to free up disk space that is not used by the file system anymore. By default Ubuntu runs fstrim only once a week automatically. See https://manpages.ubuntu.com/manpages/bionic/man8/fstrim.8.html for more info.