Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Search
  • Search

Search found 122 matches

Go to advanced search

Advanced search
Search found 122 matches
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next
by hdcg
Sun Sep 07, 2025 5:34 am
Forum: Portage & Programming
Topic: OpenSSL headers do not match your library [Solved]
Replies: 8
Views: 2505

The /usr/local/openssl files are quite sure not installed by emerge. Try

Code: Select all

equery b /usr/local/include/openssl/opensslv.h
to check.
Did you install some software manually?
  • Jump to post
by hdcg
Sat Dec 28, 2024 9:29 am
Forum: Portage & Programming
Topic: 0 byte sized firmware files in linux-firmware[solved]
Replies: 17
Views: 3124

The size shown, is the download size. If the files are already available in distfiles, the size is always zero. Bottom line of emerge output shows this explicit:

~ # emerge linux-firmware -pv

These are the packages that would be merged, in order:

Calculating dependencies... done!

[ebuild R ...
  • Jump to post
by hdcg
Sun Mar 31, 2024 4:01 am
Forum: Networking & Security
Topic: certificate identifiers
Replies: 1
Views: 19340

Hi curmudgeon,

these are hash values of the linked certificates and are used for fast lookups.
They are created by the c_rehash script.

Best Regards,
Holger
  • Jump to post
by hdcg
Tue Feb 13, 2024 11:37 am
Forum: Portage & Programming
Topic: Store git repository information in ebuild [SOLVED]
Replies: 4
Views: 1246

Hi Zucca,

since a few updates git warns and rejects to work if (at least) the root user tries to execute a git command within a repository not owned by the running user.
I guess emerge runs the install phase as root and everything else as the portage user.

The message
fatal: not in a git ...
  • Jump to post
by hdcg
Wed Jan 31, 2024 5:12 am
Forum: Gentoo on ARM
Topic: open-vm-tools not available for ARM
Replies: 32
Views: 74196

Hi eaf,

most of the time ARM is left out, because it has not been tested.
You can add your arch locally via /etc/portage/package.accept_keywords .
In your case case adding a file containing
app-emulation/open-vm-tools ~ARM64
to the above directory, should allow portage to install it on ARM64 arch ...
  • Jump to post
by hdcg
Sun Dec 10, 2023 9:23 am
Forum: Networking & Security
Topic: Passkeys anyone?
Replies: 4
Views: 6592

"Hype" would be as in a new name for old technology that's not particularly used.

As I read it, this is supposed to be more than just 2FA, specifically getting rid of passwords, which I'd quite like.

This matches my understanding of the Passkey approach. You own the key to your data and by the ...
  • Jump to post
by hdcg
Fri Dec 01, 2023 4:16 am
Forum: Gentoo on ARM
Topic: [SOLVED] Raspberry Pi 5 graphics not working
Replies: 29
Views: 110106

Hi HuskyDog,

are you sure about the kernel version? Looks too old for me.

While I am still on RPI4, I use the kernel from https://github.com/raspberrypi/linux and noticed the introduction of the RPI5 stuff around 6.1.54. E.g. the bcm2712 defconfig (arch/arm64/configs/bcm2712_defconfig) was added ...
  • Jump to post
by hdcg
Mon Nov 27, 2023 3:24 pm
Forum: Portage & Programming
Topic: Question about postgresql server upgrade
Replies: 3
Views: 1849

Hello pascalin,

you can proceed. I noticed the same, but the server is there:

~ # eselect postgresql list
Available PostgreSQL Slots
16 * 16.1 (Clients Only)
~ # pg_isready
/run/postgresql:5432 - accepting connections
~ # pg_isready --host=localhost
localhost:5432 - accepting connections


Best ...
  • Jump to post
by hdcg
Fri Nov 10, 2023 8:59 pm
Forum: Other Things Gentoo
Topic: Running script, not service, with openrc?
Replies: 3
Views: 3024

Hi th_in_gs,

simply have a look at the already mentioned

Code: Select all

/etc/init.d/mount-ro
This is also a run-once service.

Best Regards,
Holger
  • Jump to post
by hdcg
Sat Oct 14, 2023 2:28 pm
Forum: Kernel & Hardware
Topic: [Solved]Kernel won't load module from EXTRA_FIRMWARE
Replies: 33
Views: 21246

Hi 4nn13,

I think there is a misunderstanding about what CONFIG_EXTRA_FIRMWARE does.
It only includes those firmware files into the kernel, so they can be loaded without accessing the file system.

What firmware the kernel is looking for still depends on other config options.
I am not used to AMD ...
  • Jump to post
by hdcg
Fri Oct 06, 2023 5:31 am
Forum: Networking & Security
Topic: How to use wireguard under gentoo
Replies: 11
Views: 7789

Hello wenzi,

first of all be careful about the information you share. It looks like you just shared your private key. If this is really your private key, make sure to invalidate your current Cloudflare config and create a new one!

As mentioned in the other posts, the general wireguard setup looks ...
  • Jump to post
by hdcg
Thu Aug 03, 2023 2:24 am
Forum: Portage & Programming
Topic: Override USE flags between parentheses!
Replies: 18
Views: 12119

If you do a search through your profiles directory, you usually also find the reason why the specific use flag is masked. For example:

gentoobox ~ # grep -R fixed-point /var/db/repos/gentoo/profiles
...
/var/db/repos/gentoo/profiles/arch/base/package.use.mask:sys-devel/gcc fixed-point ...
  • Jump to post
by hdcg
Sat Jun 03, 2023 6:36 am
Forum: Kernel & Hardware
Topic: udev-worker log entries after new kernel...?
Replies: 12
Views: 2616

Hi G3nt00,

looking at the logs you posted, I am not sure your issue is init system related.
They are all caused by /sys related errors.

Are you sure the modules of your newly installed kernel are installed/loaded properly? What's the output of lsmod ?

And if you have your old kernel available ...
  • Jump to post
by hdcg
Thu May 11, 2023 5:01 am
Forum: Portage & Programming
Topic: [SOLVED] SQL create an index or something else?
Replies: 20
Views: 4209

My 2 cents regarding some of your points:

My thought was to create a separate index to track the potential duplicates.
You already have this relationship. The foreign key is actually the file size. An index on the file size may be everything you need to perform the following pseudo code algorithm ...
  • Jump to post
by hdcg
Mon May 08, 2023 4:20 am
Forum: Portage & Programming
Topic: [Solved] error running emerge -depclean
Replies: 2
Views: 857

Hi G3nt00,

you are missing a hyphen.

Code: Select all

sudo emerge -depclean
is actually the same as

Code: Select all

sudo emerge -d -e -p -c -l -e -a -n
containing -e = --emptytree and -n = --noreplace.
  • Jump to post
by hdcg
Tue Apr 18, 2023 6:25 pm
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

Possible, yes. Simply use google to find the port you have to expose.
From a security point of view this is not advisable.
You would have to harden the Samba configuration to not expose any known design flaws of the protocol. And even then, only a simple password authentication protects your data ...
  • Jump to post
by hdcg
Sat Apr 15, 2023 6:57 am
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

Regarding
Unable to determine the DomainSID, can not enforce uniqueness constraint on local domainSIDs
Yes, you can ignore this message.

Regarding the Admin user. Simply add your user to the Administrators Group. See your previous post regarding the available options:
~# samba-tool group ...
  • Jump to post
by hdcg
Wed Apr 12, 2023 2:49 am
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

The user adminserver is not part of the Administrators group and therefore cannot be used for joining the Workstation.
Anyway I strongly suggest to use the Administrator account for that to keep it simple.
The steps to join a Windows Workstation to the Samba Domain are described here: https://wiki ...
  • Jump to post
by hdcg
Tue Apr 11, 2023 8:54 pm
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

Please post the output of the following commands, executed on the Domain Controller:

samba-tool group listmembers Administrators

samba-tool user getgroups adminserver
The user used to register the workstation must be in the Administrators group.

host <name of DC>

host MYSERVER

host <IP ...
  • Jump to post
by hdcg
Tue Apr 11, 2023 7:20 pm
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

For joining a workstation to the Domain, I suggest to use the vanilla admin account created during DC setup (Administrator). No need to configure additional ones.
Btw. users have to be created in the DC database (samba-tool user ...).

How does your DNS setup look like and how is the workstation ...
  • Jump to post
by hdcg
Tue Apr 11, 2023 4:59 pm
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

Please have a look at "/etc/conf.d/samba". Should look like this.

# Add "winbind" to the daemon_list if you also want winbind to start.
# Replace "smbd nmbd" by "samba4" if you want the active directory domain controller part or the ntvfs
# file server part or the rpc proxy to start.
# Note that ...
  • Jump to post
by hdcg
Tue Apr 11, 2023 3:48 am
Forum: Networking & Security
Topic: Openldap fail to start after emerge world update
Replies: 4
Views: 1932

Hi asankaan,

there was also a change in supported db backends with the switch from 2.4 to 2.6. Have a look at https://forums.gentoo.org/viewtopic-t-1 ... nldap.html for further details.

Best Regards,
Holger
  • Jump to post
by hdcg
Tue Apr 11, 2023 3:29 am
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

I am using the following use flags for net-fs/samba:

# emerge -pv1 net-fs/samba

These are the packages that would be merged, in order:

[ebuild R ] net-fs/samba-4.18.0::gentoo USE="acl addc ads client json ldap pam python regedit syslog winbind zeroconf -ceph -cluster -cups -debug (-fam ...
  • Jump to post
by hdcg
Mon Apr 10, 2023 2:43 pm
Forum: Networking & Security
Topic: How to configure a Active Directory domain name
Replies: 17
Views: 19406

Hi antoniovalos,

you are looking for a Samba 4 Active Directory setup:
https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller
https://forums.gentoo.org/viewtopic-t-1068402-start-0.html

After successfully setting up Samba as an ADC you can join your Windows ...
  • Jump to post
by hdcg
Sat Apr 08, 2023 2:26 am
Forum: Portage & Programming
Topic: ebuild for this?
Replies: 19
Views: 3795

These are now Makefile issues. I am not a Makefile pro, but noticed the following points:

...
all: clean kirc
install: all
mkdir -p $(DESTDIR)$(BINDIR)
mkdir -p $(DESTDIR)$(MANDIR)/man1
...

Install should only install and not rebuild.

The shown error is caused by the fact, the build artifacts ...
  • Jump to post

Search found 122 matches
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next

Go to advanced search

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy