Forums

Skip to content

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

Search found 3676 matches

Go to advanced search

Advanced search
Search found 3676 matches
  • Page 1 of 148
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 148
  • Next
by charles17
Sun Mar 09, 2025 8:44 am
Forum: Desktop Environments
Topic: A question about locales
Replies: 2
Views: 3785

Did you read https://wiki.gentoo.org/wiki/Localizati ... ic_locales ?
  • Jump to post
by charles17
Thu Nov 21, 2024 10:37 am
Forum: Unsupported Software
Topic: Can I request a new package(ebuild)?
Replies: 10
Views: 117681

phanxen wrote:I'm openning a bugreport on zed's side give that something seems not OK in rust source file.
Why not comment on the PR? https://github.com/gentoo/gentoo/pull/39310
  • Jump to post
by charles17
Fri Oct 25, 2024 7:20 am
Forum: Portage & Programming
Topic: [Solved] openjdk-17.0.13_p11 extreme RAM usage
Replies: 20
Views: 7534

Re: [Solved] openjdk-17.0.13_p11 extreme RAM usage

Hello there!
Background
I have dev-java/openjdk (17) installed since a few years back. A month (or so) ago i recompiled my system, because i had a KDE Plasma bug and wanted debug symbols and source code to be more helpful. Back then everything recompiled smoothly with emerge -e @world .
I update ...
  • Jump to post
by charles17
Mon Sep 02, 2024 6:41 am
Forum: Portage & Programming
Topic: Implementing a local repository to use removed pkg
Replies: 20
Views: 19134

prepending [Solved] to the title?
  • Jump to post
by charles17
Sun Sep 01, 2024 3:27 pm
Forum: Portage & Programming
Topic: Implementing a local repository to use removed pkg
Replies: 20
Views: 19134

[...]
* java-config --classpath=swt-3.8,json-simple,log4j,commons-cli-1 failed
It is looking for json-simple with SLOT=0

[...]
Available versions: (2.3) 2.3.1^t

(2.3) means SLOT="2.3", see https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-java/json-simple/json-simple-2.3.1.ebuild#n18 ...
  • Jump to post
by charles17
Sun Sep 01, 2024 6:10 am
Forum: Portage & Programming
Topic: Implementing a local repository to use removed pkg
Replies: 20
Views: 19134

eohrnberger wrote: Looking around, I believe that the build.xml file [...]
https://gitweb.gentoo.org/repo/gentoo.g ... 10baa5d67c
  • Jump to post
by charles17
Mon Aug 26, 2024 9:31 am
Forum: Installing Gentoo
Topic: EFI partition mount point and GRUB issue...
Replies: 5
Views: 9543

you wat to read https://wiki.gentoo.org/wiki/EFI_System_Partition and https://wiki.gentoo.org/wiki/EFI_stub
  • Jump to post
by charles17
Thu Aug 22, 2024 6:12 am
Forum: Installing Gentoo
Topic: [void] Repurpos laptop, how to recreate the EFI partition?
Replies: 10
Views: 8076

You want to read https://wiki.gentoo.org/wiki/EFI_System_Partition
  • Jump to post
by charles17
Sun Aug 04, 2024 7:25 am
Forum: Kernel & Hardware
Topic: [SOLVED] PPD creation failed. HP OfficeJet Pro 8020
Replies: 4
Views: 12786

maybe update https://wiki.gentoo.org/wiki/Driverless_printing ?
  • Jump to post
by charles17
Tue Jul 30, 2024 6:16 am
Forum: Portage & Programming
Topic: Implementing a local repository to use removed pkg
Replies: 20
Views: 19134

Be aware of bug 857663 mentioned in https://gitweb.gentoo.org/repo/gentoo.g ... e50235309b
Also java-ant-2.eclass might go away in a not too far furure.
  • Jump to post
by charles17
Fri Jul 19, 2024 6:54 am
Forum: Portage & Programming
Topic: java jar ebuild - certain files in wrong folder [solved]
Replies: 17
Views: 35582

Sure, take a look https://bpa.st/W6RQ
But I'm not launching the program from the ebuild itself afaik

For reference, the original unciv launcher in /usr/bin/unciv is
#!/bin/bash
gjl_package=unciv-bin
gjl_jar="unciv-bin.jar"
source /usr/share/java-config-2/launcher/launcher.ba

For a launcher ...
  • Jump to post
by charles17
Thu Jun 27, 2024 1:27 pm
Forum: Installing Gentoo
Topic: efi stub record is going out after reboot
Replies: 17
Views: 50378

I didn't use it before, but today I'll try it, thanks for the idea. I also found this: https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface#Windows_changes_boot_order, section 9.8 "Boot entries created with efibootmgr fail to show up in UEFI".

Thanks!

there is some more lyrics ...
  • Jump to post
by charles17
Thu Jun 27, 2024 10:12 am
Forum: Installing Gentoo
Topic: efi stub record is going out after reboot
Replies: 17
Views: 50378

can't you use onboard tool to access the bios / efi instead of bothering with efibootmgr?
i don't even have efibootmgr installed.
  • Jump to post
by charles17
Thu Jun 27, 2024 8:55 am
Forum: Installing Gentoo
Topic: efi stub record is going out after reboot
Replies: 17
Views: 50378

for minimalistic setup based on gentoo-sources see https://wiki.gentoo.org/wiki/User:Vaukai/EFI_stub
there replace /boot with /efi

further options in https://wiki.gentoo.org/wiki/EFI_stub
  • Jump to post
by charles17
Sat Jun 22, 2024 8:08 am
Forum: Portage & Programming
Topic: Java and ebuilds
Replies: 16
Views: 2682

In many if not most cases pom.xml can be easily "translated" into ebuild.

[...] a script to parse the list and fetch them all one-by-one and store them. [...]
Not store them. The usual way is to package them, as done e.g. for dev-java/bnd-ant.
Some random shit packages however have ugly ...
  • Jump to post
by charles17
Sat Jun 22, 2024 6:15 am
Forum: Portage & Programming
Topic: Java and ebuilds
Replies: 16
Views: 2682

Perhaps think of your bunch of jar files as a Snap. It may lead to duplication, but it does provide a known Java environment for the application. [...]
To be honest, I tend to think that the simplest way to distribute open-source Java applications is just to provide users with a Maven pom.xml ...
  • Jump to post
by charles17
Fri Jun 21, 2024 5:46 am
Forum: Portage & Programming
Topic: Java and ebuilds
Replies: 16
Views: 2682

Re: Java and ebuilds

Hi folks

[...]

I'm curious about how other people are tackling this problem (if they are). Downloading compiled JARs seems hugely easier to me, and the arguments given for building Java from source don't seem particularly compelling to me.

Comments welcome.

BR, Lars.

See https://wiki.gentoo ...
  • Jump to post
by charles17
Mon Jun 17, 2024 11:39 am
Forum: Unsupported Software
Topic: [solved] dev-libs/protobuf-25.1 build fail
Replies: 3
Views: 10797

It needs.a newer version of abseil-cpp. Compare with deps in protobuf-java.
  • Jump to post
by charles17
Mon Jun 10, 2024 3:22 pm
Forum: Other Things Gentoo
Topic: brother printer added but not printing
Replies: 11
Views: 16347

Re: brother printer added but not printing

See viewtopic-t-1116386-start-0.html
  • Jump to post
by charles17
Sat Aug 05, 2023 9:43 am
Forum: Kernel & Hardware
Topic: [solved] intel ucode for Core i7-8650U
Replies: 3
Views: 3101

Re: intel ucode for Core i7-8650U

lazydog wrote:In the guide only one microcode bundle is shown, and here I have 5 - so which one is right?
Is it 199/001 which matches the signature of my CPU or should I pick the latest one (198/002)?
I only use the one matching the cpu (given in the first line which you didn't show of the output).
  • Jump to post
by charles17
Wed Nov 09, 2022 2:40 pm
Forum: Documentation, Tips & Tricks
Topic: Remove the need for dbus when compiling gtk+:3
Replies: 24
Views: 52101

Thanks Anon-E-moose

Updated with your patch and re-added at-spi2-atk to package.provided. Still the same error.
Then, restricting dev-libs/atk to 2.38.0 finally did the trick.

Thanks again
  • Jump to post
by charles17
Wed Nov 09, 2022 12:36 pm
Forum: Documentation, Tips & Tricks
Topic: Remove the need for dbus when compiling gtk+:3
Replies: 24
Views: 52101

all constraints above must be met, I just ran the configure part and had no problem.

What is your version of glib, pango, fribidi, cairo*, gdk-pixbuf and atk itself (which should be installed just not the bridge part)

Edit to add: went and looked at the patchset that classic is using, I didn't ...
  • Jump to post
by charles17
Wed Nov 09, 2022 9:32 am
Forum: Documentation, Tips & Tricks
Topic: Remove the need for dbus when compiling gtk+:3
Replies: 24
Views: 52101

It's been working for long time now until yesterday ...
Did someone get gtk+:3 work with USE=-atk-bridge ? [32m * [39;49;00mPackage: x11-libs/gtk+-3.24.34-r1:3
[32m * [39;49;00mRepository: gentoo
[32m * [39;49;00mMaintainer: gnome@gentoo.org
[32m * [39;49;00mUSE: X abi_x86_64 amd64 cups elibc_glibc ...
  • Jump to post
by charles17
Fri Aug 19, 2022 5:37 am
Forum: Portage & Programming
Topic: clean your world file
Replies: 3
Views: 1695

Re: clean your world file

Dear all,

while waiting for one gentoo box to finish with updating, i've decided to take care of my old work horse.

Following

https://forums.gentoo.org/viewtopic-t-1042252-start-11.html

i used the script from @Irre [...]
Wikification: https://wiki.gentoo.org/wiki/User:Vaukai/checkworldfile ...
  • Jump to post
by charles17
Thu Aug 04, 2022 5:01 pm
Forum: Kernel & Hardware
Topic: [Solved] Atheros QCA6174 card with ath10k failed to load
Replies: 2
Views: 2191

Re: Atheros QCA6174 card with ath10k failed to load

togooroo wrote:I haven't found anything online about this issue, so hopefully other people know how to fix it? Thanks in advance.
What about https://forum.openwrt.org/t/solved-sett ... r/132443/2?
  • Jump to post

Search found 3676 matches
  • Page 1 of 148
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 148
  • 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