ChanServ changed the topic of #haiku to: Open-source operating system that specifically targets personal computing. | https://haiku-os.org | Nightlies: https://download.haiku-os.org | Bugtracker: https://dev.haiku-os.org | SCM: https://git.haiku-os.org/ | Logs: https://oftc.irclog.whitequark.org/haiku | Matrix: #haiku:matrix.org | XMPP: #haiku%irc.oftc.net@irc.jabberfr.org
<OscarL> this Win10 LTSC IoT installation will be my last one. It allows me to make the most out of my ancient hardware. If I ever get any decent newer computer... I'd most likely to switch full time to the less annoying Linux I can find. +qemu, plus the multiboot into Haiku, of course.
<OscarL> I wish ProcessController (or any other Haiku program) was able to show the full command line for the running processes.
<brickviking[m]> mmm hmm. qemu (along with virt-manager) has made an acceptable platform for me to create x86* VMs of all sorts, from TempleOS, Windows XP, and Minix all the way up to Haiku and the three BSDs.
Nasina has quit [Read error: Connection reset by peer]
<brickviking[m]> I'm assuming that "ps -w" doesn't?
<OscarL> trying to determine which of 4 different pythons I need to kill feels like a russian roulette.
<OscarL> "-w" is not a recognized option.
angrystar170 has joined #haiku
<OscarL> and also...
<OscarL> the problem is, IIRC, that the info is just not available from the OS API.
<brickviking[m]> Ah. Yes, that would be a problem.
<OscarL> the full command line doesn't gets saved.
<brickviking[m]> So how does a program iterate its commandline args, if there are any?
<brickviking[m]> i.e. neat-program firstarg secondarg thirdarg=value
<OscarL> same as all programs... as argv[]...
<OscarL> what I mean is that once that's done...
angrystar170 has quit []
angrystar170 has joined #haiku
<brickviking[m]> Hm. So it's only available inside argv, and not held in any OS-level structure?
angrystar170 has quit []
<OscarL> if you ask the OS about that... it only partially "remembers" the command line (buffer has a fixed, small size)
<brickviking[m]> I believe even Windows has the means to access commandline args.
<brickviking[m]> Huh. Reminds me of MS-DOS/FreeDOS in that regard.
<OscarL> old/original API was "get_team_info()"...
<brickviking[m]> ... which makes building software on MS-DOS quite the chore. WatcomC uses a response file to get around that.
<brickviking[m]> sorry, wasn't in reply to get_team_info()
<OscarL> " char args[64];"
<brickviking[m]> Oh my.
<OscarL> if command line was larger, you're out of luck.
angrystar170 has joined #haiku
<OscarL> there's a newer API... "get_extended_team_info()"
<brickviking[m]> so if your command is several directories deep, you also lose out...given that args[0] is probably the full path
angrystar170 has quit []
angrystar170 has joined #haiku
<OscarL> .... but I don't think it can retrieve the entire original parameters either.
* OscarL starts killing teams at "random"
<brickviking[m]> Is there an ascending PID like there is on UNIX-like, or equivalent on Windows, or are process IDs randomised?
<OscarL> I think they are ascending PIDs.
<brickviking[m]> In which case you may be lucky. Kill the lowest-relevant PID
<OscarL> I wrote /bin/pidof when I first faced this same issue :-)
<brickviking[m]> mmm. pidof would at least give you an array of PIDs. There's not much to separate one from another. Is there a field in the process table for how long each process has been executing? What's that time dependent on, on-CPU execution time?
<brickviking[m]> (I'd be bemused if it ends up being wall-clock time, but that'd possibly make your job easier)
<OscarL> I just left the test suite to run out of tests.... the one still hanging are the ones I need to kill.
<brickviking[m]> Why would pty be dependent upon readline?
<brickviking[m]> and more importantly, why would readline be dependent specifically on pty, and not purely some tty-simulator?
<OscarL> I just pointed a possible connection...
<OscarL> because no hang occurrs when I run them separately...
<OscarL> and not always ocurr when I run tests in parallel (but sometimes do).
<OscarL> if I disable either of them.... no hangs.
<brickviking[m]> Hm. It's certainly probable. Why, I've no idea. I don't do OS-level stuff - I stay out of that even over on Linux.
<brickviking[m]> And both pty-stuff and readline require OS services
<OscarL> there's an underlying /dev/pty (or /dev/tty) device in there, so...
<brickviking[m]> mmm.
<brickviking[m]> Are the respective tests parallelised?
<brickviking[m]> or serialised?
<OscarL> there are about 445 tests, I run them with -j 4, supposedly with the same seed, but resulting order of execution depends on execution time of each tests, so order is not warranteed.
<OscarL> thus why sometimes I get hangs in those, and sometimes I don't. At least that's my theory.
<brickviking[m]> hm. And the only way to get out of that is to gatekeeper one or the other test, which might slightly slow down the test chain.
<brickviking[m]> And would require parsing the entire process table.
<brickviking[m]> And that's well outside my level of experience.
<OscarL> I am NOT going to run tests as "-j 1" :-D (I barely have enough focus for a <20 minutes test suite run)
<brickviking[m]> What I meant is: within one or other test, put code that says "If A is running, wait until it finishes before starting B" and vice versa.
<brickviking[m]> ...seeing as those are the only two tests that you've indicated so far.
<brickviking[m]> Personally, I'd have used semaphores (by using files in the filesystem) but there are probably far better ways to do it.
<OscarL> my comment about not running -j 1 was not a direct reply to your suggestion. just venting a bit of frustration :-)
<brickviking[m]> mmm hmm.
<OscarL> sadly, I have a ton of tests that either hang reliably, or sometimes hang...
<brickviking[m]> Oh. Right. Those are a pain to deal with.
<OscarL> I'm doing my best to disable both, but only those that really cause problems... in hopes that calling "hp python3.xx --test" gets less annoying than when I "took over".
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
<OscarL> earlier today I re-enabled 19 tests after seeing that they were "stable enough" in 32 bits nightlies....
<OscarL> now running with those test enabled on 64 bits beta5 show that some of them still cause problems in that setup.
<OscarL> I want to try and fix at least some of the bugs in our Python(s) port... having a easily runnable test-suite is a good first step (specially considering that I barely know what I'm doing).
Nasina has joined #haiku
OscarL has quit [Remote host closed the connection]
Babaj has quit [Remote host closed the connection]
Babaj has joined #haiku
OscarL has joined #haiku
Halian|Jardin has joined #haiku
OscarL has quit [Remote host closed the connection]
OscarL has joined #haiku
KapiX has quit [Quit: KapiX]
Halian|Jardin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
vdamewood has joined #haiku
mmu_man has quit [Ping timeout: 480 seconds]
OscarL has quit [Remote host closed the connection]
Nasina has quit [Read error: Connection reset by peer]
zelectric has joined #haiku
Aedil has joined #haiku
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
janking has joined #haiku
<janking> Good morning to you all :)
<zelectric> hi janking o/
Nasina has joined #haiku
<janking> :)
Nasina has quit [Read error: Connection reset by peer]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<janking> i am back :)
Nasina has joined #haiku
vdamewood has quit [Quit: Textual IRC Client: www.textualapp.com]
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<janking> back :)
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
<janking> :)
AlienSoldier has quit [Quit: Vision[]: i've been blurred!]
vdamewood has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit []
Nasina has quit [Read error: Connection reset by peer]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
angrystar170 has quit [Quit: The Lounge - https://thelounge.chat]
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
angrystar170 has joined #haiku
vdamewood_ has joined #haiku
angrystar170 has quit []
angrystar170 has joined #haiku
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
angrystar170 has quit []
vdamewood has quit [Ping timeout: 480 seconds]
Aedil has quit [Quit: leaving]
angrystar170 has joined #haiku
angrystar170 has quit []
angrystar170 has joined #haiku
angrystar170 has quit []
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
Aedil has joined #haiku
deneel has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
angrystar170 has joined #haiku
Nasina has joined #haiku
angrystar170 has quit []
angrystar170 has joined #haiku
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/fea81dcfd95e...f633156cda7d
<nekobot> • Begasus (f633156c): inkscape, set poppler_glib version for poppler23 (#12154)
janking has joined #haiku
<Begasus[m]> morning peeps
<janking> good morning Begasus[m]
<Begasus[m]> arghh!! why!? /boot/home/haikuports/packages/poppler25_devel-25.04.0-1-x86_64.hpkg
<Begasus[m]> hi janking :)
<Begasus[m]> this will fail again on buildmaster :/
<nekobot> • Begasus (b2d0b4ff): inkscape, force poppler_glib from poppler23 (#12155)
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/f633156cda7d...b2d0b4ff9e17
HaikuUser has joined #haiku
HaikuUser has quit []
zelectric has quit [Quit: zelectric]
freddietilley has joined #haiku
<Begasus[m]> that should do it: /boot/home/haikuports/packages/poppler23_glib_devel-23.12.0-1-x86_64.hpkg (on buildmaster)
janking has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
<nekobot> • Begasus (7935e57d): es_de, revbump for poppler changes, keep on poppler24 for now (#12156)…
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/b2d0b4ff9e17...7935e57dff36
janking has joined #haiku
angrystar170 has quit [Ping timeout: 480 seconds]
janking has quit [Quit: Vision[]: i've been blurred!]
angrystar170 has joined #haiku
angrystar170 has quit []
angrystar170 has joined #haiku
jmairboeck has joined #haiku
KapiX has joined #haiku
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
KapiX has quit [Quit: KapiX]
Halian|Jardin has joined #haiku
Halian|Jardin has quit [Read error: Connection reset by peer]
Halian|Jardin has joined #haiku
KapiX has joined #haiku
<McCall[m]> lol, I've failed at the first step getting Haiku running on my RISC-V VisionFive 2.... I forgot to buy an microSD card and don't have any spare! 🤣 I've got one in the post now though.
janking has joined #haiku
<McCall[m]> I did have an 1TB SSD for it, but you need an SD to boot initially (not even sure if the SSD is supported yet).
janking has quit [Quit: Vision[]: i've been blurred!]
vdamewood_ has quit [Quit: Textual IRC Client: www.textualapp.com]
janking has joined #haiku
<nekobot> • Begasus (593505de): yacreader, revbump for poppler24 changes (#12157)
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/7935e57dff36...593505debdda
<Begasus[m]> don't have a booting script for the riscv64 image here yet (to test booting it in qemu) :)
janking has quit [Quit: Vision[]: i've been blurred!]
KapiX has quit [Quit: KapiX]
andreaallegri has joined #haiku
janking has joined #haiku
janking has quit []
janking has joined #haiku
janking has quit []
janking has joined #haiku
janking has quit []
mmu_man has joined #haiku
janking has joined #haiku
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/593505debdda...cc1f6481d323
<nekobot> • Begasus (cc1f6481): kbibtex, revbump, switch to popper24 (#12158)
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/cc1f6481d323...97f159e1db0f
<nekobot> • Begasus (97f159e1): tellico, bump to version 4.1.1 (#12159)
andreaallegri has quit [Ping timeout: 480 seconds]
Halian|Jardin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
carlomonte has joined #haiku
andreaallegri has joined #haiku
carlomonte has quit []
andreaallegri has quit [Ping timeout: 480 seconds]
Nasina has quit [Read error: Connection reset by peer]
Nasina has joined #haiku
Nasina has quit [Remote host closed the connection]
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
FreeFull has joined #haiku
Babaj has quit [Quit: Leaving]
andreaallegri has joined #haiku
andreaallegri has left #haiku [#haiku]
HaikuUser has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
Nasina has joined #haiku
nephele has joined #haiku
Nasina has quit [Ping timeout: 480 seconds]
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/97f159e1db0f...e77cc205053c
<nekobot> • Begasus (e77cc205): labplot, revbump for poppler changes (#12160)…
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
andreaallegri has joined #haiku
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/e77cc205053c...7bc1c86c54b4
<nekobot> • Begasus (7bc1c86c): booksorg, revbump for poppler24 changes (#12161)
andreaallegri has left #haiku [#haiku]
mmu_man has quit [Ping timeout: 480 seconds]
nephele has quit [Quit: Vision[]: i've been blurred!]
figment has quit []
hightower2 has joined #haiku
figment has joined #haiku
janking has joined #haiku
mmu_man has joined #haiku
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/7bc1c86c54b4...1fa91f5a244f
<nekobot> • Begasus (1fa91f5a): scribus, revbump for poppler23 (#12162)
janking has quit [Quit: Vision[]: i've been blurred!]
erysdren has joined #haiku
Nasina has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
dalme has joined #haiku
Nasina has joined #haiku
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/1fa91f5a244f...06e465808fa6
<nekobot> • Begasus (06e46580): krita, revbump for poppler changes, move from poppler23 to poppler24 (#12163)…
wicknix_ has quit [Read error: Connection reset by peer]
wicknix has joined #haiku
<Begasus[m]> that should be the last in the list for poppler changes :)
freddietilley has quit [Quit: WeeChat 4.5.0]
mmu_man has quit [Ping timeout: 480 seconds]
OscarL has joined #haiku
<OscarL> what a party poppler, that one.
<Begasus[m]> wb OscarL :)
<OscarL> thanks Begasus[m]!
<Begasus[m]> kept me busy for some time
<OscarL> I imagine :-/
<Begasus[m]> one advantage, poppler23 and poppler24 shouldn't get any major updates anymore
<Begasus[m]> thanks :)
Nasina has quit [Ping timeout: 480 seconds]
<Begasus[m]> hence me trying to keep poppler24 default, poppler23 for those who can't use newer, poppler25 for newer/checking packages :)
<Begasus[m]> should really try to cleanup my recipe for krita_master ... not sure everything in there is still required
<Begasus[m]> both python PR's ready to go OscarL ?
Peppersawce has joined #haiku
<OscarL> I believe so, yes.
<Begasus[m]> Hi there Peppersawce :)
<Peppersawce> Hello all, I'm trying to port Sauerbraten :)
<Peppersawce> I have a small issue tho
<Peppersawce> Sources are on svn
<Peppersawce> So how can I put that into a recipe?
<Begasus[m]> I think* :D
<Begasus[m]> zuurkool* :)
<Peppersawce> *are on sourceforge
<Peppersawce> :D
<Peppersawce> Ofc sauerbraten runs like ass but that was to be expected
<Peppersawce> oof
<OscarL> locally, you can enable unsafe sources, but that won't work on buildmaster (thus the need to keep the recipe disabled)
<nekobot> [haikuports] Begasus pushed 1 commit to branch master: https://github.com/haikuports/haikuports/compare/06e465808fa6...8d9e0240e9e3
<nekobot> • OscarL (8d9e0240): python3.11: update to version 3.11.12. (#12151)
<Begasus[m]> one down
<Peppersawce> Guess I have to hunt for a better source... source
<OscarL> Peppersawce: alternatives I can think of: 1- convice upstream to do a release, FFS! :-P. 2- fork project to codeberg.org (even as a read-only mirror), tag and release yourself.
<OscarL> 3- hunt for someone that already did option 2. :-D
<OscarL> maybe debian?
<Peppersawce> Heh, fair, I might go ahead and clone it on my github or something
<Peppersawce> Time to go searching
<Begasus[m]> checked Arch?
<Begasus[m]> sometimes they supply a link to an archive also
<Begasus[m]> repology ftw! :D
<Peppersawce> That might work actually
<Begasus[m]> FreeBSD sometimes too ... Ubuntu (but I mostly don't check there)
OscarL has quit [Remote host closed the connection]
<Begasus[m]> Could not find a package configuration file provided by "Immer" with any of
<Begasus[m]> that's one ... :)
<erysdren> is there any place i can get x512 nvidia gpu drivers to play with on my machine?
<x512[m]> I sent archive to 3deyes, but it currently need manual install. When driver starts it is required that there are no animations on screen, otherwise screen may stop updating.
<erysdren> ahh i see
<erysdren> thank you for the clarification
<Peppersawce> People here thirsty for the shiny new graphics driver while I'm here perfectly fine getting 20fps on sauerbraten in a 640x480 window
<Peppersawce> (yes, I'm coping, I'm too poor for those fancy new cards ): )
<erysdren> i actually have no idea if my card would even be compatible... it's an nvidia gtx 1060
<erysdren> about 10 years old
<Begasus[m]> it's also too early to release something to the larger public as it's still in heavy development I guess
<erysdren> understandable
<x512[m]> > Architecture Pascal
<x512[m]> Too old.
<erysdren> damn.
mmu_man has joined #haiku
<Peppersawce> Ok, maybe I can compile it using the linux tarball... which takes ages to download ):
Nasina has joined #haiku
<x512[m]> > Production End-of-life
<Peppersawce> Yeah, my nvidia isn't supported either, I already checked :)
<Peppersawce> Still, some form of modern graphics driver is welcome either way
<Peppersawce> Maybe it'll put Haiku on the map and who knows, that might make more people interested in working on it
* phschafft offers everyone a cookie, then sits down next to erysdren.
<erysdren> hi :3
<Peppersawce> :)
<phschafft> all good?
<erysdren> somewhat...
Nasina has quit [Ping timeout: 480 seconds]
janking has joined #haiku
<phschafft> hm.
wicknix_ has joined #haiku
wicknix has quit [Ping timeout: 480 seconds]
janking has quit [Quit: Vision[]: i've been blurred!]
<phschafft> erysdren: was thinking a little about you.
<erysdren> oh yeah?
<erysdren> what's up
<phschafft> was just thinking about low level memory stuff. and that just gets me to you. ;)
<erysdren> :D
<phschafft> 'microstrings' ;)
<erysdren> i havent done too much low level stuff in a while, been working too much on games
<erysdren> :p
wicknix has joined #haiku
<phschafft> I know.
<phschafft> still. you are one of the very few I can talk with about low level stuff at all.
wicknix_ has quit [Ping timeout: 480 seconds]
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev58813] - https://git.haiku-os.org/haiku/log/?qt=range&q=8da9c85cbf10+%5Ea1e94e45fc77
<nekobot> [haiku/haiku] 8da9c85cbf10 - runtime_loader: Add support for RTLD_NOLOAD
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev58814] - https://git.haiku-os.org/haiku/log/?qt=range&q=14d9cf74179e+%5E8da9c85cbf10
<nekobot> [haiku/haiku] 14d9cf74179e - Revert "bus_managers/pci: allow x86 systems to use VirtualBusMap"
<phschafft> waddlesplash++
<Peppersawce> Oh, cool, Sauerbraten's latest release runs better than the latest dev code
<Peppersawce> ...still runs like crap but at least I got some kills lmao
janking has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
<Peppersawce> Lmao, can't post on Playground anymore
<Begasus[m]> try again later, or switch browser
<Begasus[m]> get that sometimes also
<Peppersawce> I edited the last post
<Peppersawce> Can't have more than 3 posts made by myself in a row, which makes sense
<Begasus[m]> ah that one :)
<Peppersawce> Forum telling me to stop with the porting :D
Begasus has joined #haiku
<Begasus[m]> lol
<Begasus> matrix is laggy today
janking has joined #haiku
<janking> hello every one :)
<Peppersawce> Hi :D
<janking> :)
<Begasus> hi janking
<Begasus> wb :)
<janking> :)
<janking> wb?
<Peppersawce> it means "welcome back" :)
<Begasus> mann;.. matrix should get a kick* :P
<Begasus[m]> welcome back*
<janking> ok thanks
<Begasus> comment com... up :P
HaikuUser2 has joined #haiku
HaikuUser2 has quit []
Begasus has quit [Quit: Vision[]: i've been blurred!]
wicknix_ has joined #haiku
nongeek has joined #haiku
<nongeek> Hello all
<Peppersawce> hi there :)
<nongeek> I'm newbie and how can I help Haiku?
<nongeek> I just know a little programming.
<Begasus[m]> welcome nongeek
<nongeek> Thanks.
<nongeek> Is Haiku written in C?
<Begasus[m]> if you are interested in Haiku's internals, you can check the site/bug tracker
<Begasus[m]> C++
janking has quit [Quit: Vision[]: i've been blurred!]
<Begasus[m]> kernel is partly asm I think? (not my cup of tea) :)
<nongeek> But, what is the first step? Any roadmap?
<Begasus[m]> first step is to get yourself familiar with the OS I think
<nongeek> For example, I must install Haiku on VirtualBox, then...?
<Begasus[m]> then find something that anoys you
<nongeek> Aha
<nongeek> How to find it?
<Begasus[m]> then the fun begins, setup buildtools/crosscompiler ...
<Begasus[m]> a Haiku image for a VM?
<nongeek> No, how to find bugs?
<Begasus[m]> in the topic there is a link to the bugtracker, those are known ones
wicknix has quit [Ping timeout: 480 seconds]
<Begasus[m]> the beta image found at the homepage is the stable one, to follow up on latest changes you could grab one of the nightlies
<nongeek> Can I find anyone here that helps me to port a hypervisor to Haiku?
<Begasus[m]> not an easy task I presume
<Begasus[m]> but if you mean something like qemu, we already got that
<nongeek> Exactly.
<nongeek> Not. I mean Xen.
<Begasus[m]> never looked at it, but also haven't seen anyone trying it yet :)
<Begasus[m]> biab
<nongeek> ;)
<nongeek> Is here a good place to start?
<Peppersawce> Imo, you could probably just go to the forums and say "I'd like to work on X" and some devs should come up and give you pointers
<Peppersawce> But what begasus said would be the proper way, looking at the site documentation, having a look at haiku's bug tracker etc.
<Begasus[m]> doubt Xen will be fine, but no one is stopping you from trying nongeek :)
<Begasus[m]> best bet I guess would be to download the sources and see if you can get somewhere in Terminal
<Begasus[m]> but since there is already qemu ...
Peppersawce has quit [Quit: Vision[]: i've been blurred!]
<nongeek> Thanks.
<nongeek> Your goal from https://aur.archlinux.org/packages/xen?all_deps=1#pkgdeps is that all dependencies must be ports also. Right?
<Begasus[m]> most of them should already be available
<nongeek> Good.
<nongeek> So, just compile the source and look at the errors.
<Begasus[m]> for like say gnutls, if configuring fails to find it, you can use this
<Begasus[m]> https://bpa.st/N72A
<Begasus[m]> pkgman search foo ... pkgman install foo_devel ...
<zdykstra> I don't want to rain on your parade, but porting Xen to Haiku isn't going to be as simple as "make packages for the dependencides"
<Begasus[m]> gathered that zdykstra :)
<zdykstra> that was addressed to nongeek, not our resident porting expert :)
<Begasus[m]> that too :D
<nongeek> Why? Need changes in OS internal?
<Begasus[m]> I'm guessing some sort of window manager, network manager ...
<zdykstra> yes, absolutely. You'll have to add extensive support to both Xen and to Haiku
<nongeek> Aha
<nongeek> Maybe Haiku is so young about virtualization support.
<Begasus[m]> define "young"? ;)
<nongeek> Its internal components.
<Begasus[m]> small userbase compared to the major players
<nongeek> Please thinking about it.
<scanty> i wish i had freebsd installed instead of debian, but i'm too lazy to fix that now
<scanty> not really using linux a lot lately, mostly haiku.
<nongeek> Haiku is comparable to Debian.
<Begasus[m]> only got Fedora setup in a VM on Windows, that's it here scanty :)
<nongeek> Is not*
<Begasus[m]> and since Windows is barely booting ...
<scanty> i have windows on here "just in case"
<Begasus[m]> afaik Debian is targetted as a server OS, which Haiku isn't
<Begasus[m]> right scanty same here
<nongeek> Not just the server. Its packages, security and power.
<nongeek> Hardware support.
<Begasus[m]> that comes with the system, Debian has always been like that
<Begasus[m]> on hardware support I guess Debian also benifits from other linux/BSD drivers
<scanty> it would be nice to have bktr on haiku
<nongeek> Debian is awesome.
<Begasus[m]> bktr?
<scanty> i thought maybe about porting it, but i don't think i have the skills
<scanty> bktr = booktree 848/878
<scanty> TV
<Begasus[m]> nongeek: , there is no doubt Debian is awsome, but not targetted (doesn't mean it can't) to Desktop usage
<Begasus[m]> ah, rings a bell scanty :)
<nongeek> I know, but you can use its children.
<Begasus[m]> or Haiku :)
<scanty> if i can see TV here, and OscarL's peek/poke driver works with my PCI parallel port, I can then have a self-contained environment on which i could do NES development.
<Begasus[m]> if you take the good and the bad :)
<nongeek> BTW, thanks.
<Begasus[m]> np nongeek
nongeek has quit [Quit: Quit]
<Begasus[m]> in case you still have questions just shoot, mostly someone is around to answer
<scanty> he left
<Begasus[m]> ah, missed that here :P
<Begasus[m]> closing down here too
<scanty> boo
<scanty> no more friends left for me.
<Begasus[m]> been a long day :P
<scanty> i've been up for 3 hours
<scanty> slept like a baby
<Begasus[m]> maybe OscarL-32 will drop in in a bit :)
<Begasus[m]> been up for 18hours :)
<scanty> i hope so, i was thinking maybe to donate some moneys to him to he could get proper internet access.
<Begasus[m]> almost 8:30PM, time for some TV relaxing :)
<Begasus[m]> yeah :(
<Begasus[m]> too bad it can't be trusted there (as he implied)
<scanty> i will ask him how much it is and go from there
<scanty> maybe a few of us could donate a little bit of money for him because he does a lot of work on the packages and ports.
<scanty> anyways, have a good night
Peppersawce has joined #haiku
<Begasus[m]> thanks, cu tomorrow (probably) :)
<Begasus[m]> cya!
<Peppersawce> cya
vezhlys has quit [Remote host closed the connection]
neoncortex has joined #haiku
Aedil has quit [Ping timeout: 480 seconds]
HaikuUser2 has joined #haiku
HaikuUser2 has quit []
<nekobot> [haiku/haiku] waddlesplash pushed 1 commit to master [hrev58815] - https://git.haiku-os.org/haiku/log/?qt=range&q=648fa5897c28+%5E14d9cf74179e
<nekobot> [haiku/haiku] 648fa5897c28 - listusb: align the port status output of hub descriptors
jmairboeck has quit [Quit: Konversation terminated!]
Halian|Jardin has joined #haiku
AlienSoldier has joined #haiku
HaikuUser2 has joined #haiku
HaikuUser2 has quit []
chilledfrogs has quit [Quit: connection reset by purr]
Babaj has joined #haiku
chilledfrogs has joined #haiku
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #haiku
pol has joined #haiku
HaikuUser2 has joined #haiku
HaikuUser2 is now known as Yoke
pol has quit [Remote host closed the connection]
<Yoke> Getting a 16gb-1600 kit for my laptop has been the best thing I've done for this thing, got double the ram and now the thing flies like hell.
vdamewood has joined #haiku
Nasina has joined #haiku
Halian|Jardin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
vdamewood has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Habbie> memory is the best upgrade
<neoncortex> I'm using this on a 4gb notebook and, aside from the web browser, it runs like a champ.
<Saijin_Naib[m]> Does Haiku kernel support/allow tweaking disk queue algorithms like Linux kernel?
<Yoke> unfortunately it's DDR3 so that's the fastest it's gonna go, defo feels better to use though
<Saijin_Naib[m]> if so, BFQ was probably one of the best tweaks I made on my 4GB RAM/64GB eMMC craptop to usability
<Saijin_Naib[m]> DDR3 is still plenty fast vs swapping/paging, so that's cool you were able to find (reasonably?) priced RAM and upgrade!
<neoncortex> I would be interested in disk queue caching. In the way I work, I use the find command a lot, and I have scripts that cache the queries for using later, but it seems that it reads the disk at each new query.
<neoncortex> I did not migrated to attributes yet, because I'm not sure if I can backup it correctly, so I'm using scripts for 'tagging' directories.
<Yoke> oh yeah, I was on 8gb of 1333 before so yeah, on things liku ubuntu it could slow way down
<Saijin_Naib[m]> neoncortexfor my linux usage, BFQ + zswap basically eliminated disk IO contention under load, which lets be real, you are always under load with 4GB RAM haha
<Saijin_Naib[m]> Haiku is super light, but yeah, browsers gonna eat resources no matter the Host OS
<neoncortex> yes xD
<Yoke> Not like that is gonna change any time soon either, it seems like you need more memory year on year at this point
<neoncortex> sure, at some point, I will have to buy more ram. It is like this.
<Yoke> honestly I still miss having DVD drives on laptops, even if machines are on the whole better without them
<AlienSoldier> browser could take less memory if they could extract only what is usefull, interpret the data and discard what is not usefull.
dalme has quit []
<AlienSoldier> i don't care if it does not render perfectly like in a magazine if all the same operation is possible.
<AlienSoldier> for exemple, no need to keep in memory the insane resolution pushed by a server for a particular picture
<AlienSoldier> same with the gazillion fonts
<neoncortex> AlienSoldier: I agree, and I wish that things to be more tunnable in the future.
<Peppersawce> Browsers would be way lighter without site ads, lol
<neoncortex> ideally, I would be using gopher, and gemini, but that is not up to me.
<AlienSoldier> not having memory leek in browsers would also be a good start
Nasina has quit [Read error: Connection reset by peer]
<AlienSoldier> *leak
<Peppersawce> also true
<Peppersawce> but at least that one will be fixed someday
<Peppersawce> ads will only get worse :(
<AlienSoldier> i wish ads would be bidirectional :)
<Peppersawce> Hahaha, that'd be fun
<AlienSoldier> they would send me a car ads, i would send then pic of myself repairing my 80's truck myself :)
Nasina has joined #haiku
<Peppersawce> lol
<neoncortex> ha
<AlienSoldier> one good thing about internet ads is that i see almost none when i walk around outside. Been ages i saw i billboard.
<neoncortex> now that you have said it. Long time I have not seen flyers, and stuff. Yes, that is a good thing.
Yoke has quit [Quit: Vision[]: i've been blurred!]
<Peppersawce> True
talos has quit [Ping timeout: 480 seconds]
talos has joined #haiku
KapiX has joined #haiku
Nasina has quit [Read error: Connection reset by peer]
Nasina has joined #haiku
<neoncortex> also, I don't know how I did this but: now my deskbar have one button, divided, half is the pen button, to open applications, and the other half is like someone drawing in a board, that shows my currently opened programs.
Nasina has quit [Read error: Connection reset by peer]
Nasina has joined #haiku
<AlienSoldier> neoncortex you can "stretch" it back if you draw the little subtile dotet line
FreeFull has quit []
<AlienSoldier> *drag
<neoncortex> oh.
<neoncortex> oh, on the right side, got it.
<scanty> first time i did that on BeOS it confused me as well.
Nasina has quit [Read error: Connection reset by peer]
<AlienSoldier> neoncortex you can drag it in any corner you want
<neoncortex> I see. Very cool.
Nasina has joined #haiku
Peppersawce has quit [Quit: Vision[]: i've been blurred!]
janking has joined #haiku
Babaj2 has joined #haiku
Nasina has quit [Ping timeout: 480 seconds]
Babaj has quit [Ping timeout: 480 seconds]
wicknix has joined #haiku
Nasina has joined #haiku
janking has quit [Quit: Vision[]: i've been blurred!]
wicknix_ has quit [Ping timeout: 480 seconds]