-
rtprio
what is pubnix?
-
kerneldove_
why do i get kernel: swap_pager: cannot allocate bio messages in /var/log/messages sometimes when there's heavyish swap pressure but there's plenty of free swap pls?
-
flatdog
rtprio: a community tryimg to have a home, building it themselves. pubnix, there you have it
-
flatdog
Hey, freensd community, (the music loving part) David Coverdale called it a day, retired
-
flatdog
s/freensd/freebd
-
flatdog
-
rwp
ant-x, As a good debug step if you log into pubnix and then "nc localhost 5119" do you see the ssh banner from your home system? If so then that part is definitely working. Now you just need to connect up to it.
-
rwp
ant-x, As to why you can't just "ssh -p 5119 pubnix" the answer is that you might actually be able to do so. But probably not since most admins will have all ports firewalled off blocking external access to it.
-
rwp
If that works you might try "ssh -oProxyCommand='ssh -W 127.0.0.1:5119 pubnix' homemachine" and see if you log into the home machine through it.
-
rwp
And if _that_ works then try the shorter -J option to jumphost through "ssh -J pubnix:5119 localhost" and see if that works. And then configure it in the ~/.ssh/config file so that it just works with a simple "ssh homemachine".
-
JetpackJackson
Hi, I just installed FreeBSD in a VM using the netboot iso and configured it for ports support. I'd like to remove said support, how does one do that? Are there files to remove? I looked at the handbook but only found ports install instructions. Thanks in advance, and happy to be here and explore this system :3
-
mjp
just delete /usr/ports
-
JetpackJackson
Thanks! That was fast lol
-
mjp
ezpz
-
rwp
JetpackJackson, Ports installs into /usr/local which starts out empty of files. If you want to remove installed ports then remove everything from the /usr/local tree.
-
phryk
What's the least-worst linux distro for someone who actually just wants FreeBSD? 🤔
-
phryk
(subjective answers obviously welcome)
-
angry_vincent
Gentoo
-
angry_vincent
but it is a topic more suited for #freebsd-social.
-
ek
Arch or Slackware as well, maybe?
-
ek
... if they're even still around.
-
mason
ek: Both are alive and kicking. (Since you're not on -social.)
-
ek
mason: I figured this much. Kinda glad to hear it, honestly. I liked those Linuxseses.
-
rtj
ek: I've been enjoying
chimera-linux.org for a little bit. Tested it on a old laptop.
-
ant-x
rtprio, "what is pubnix"> a public Unix system, e.g. <
sdf.org> .
-
ant-x
rwp, ports 5000-5500 are open on that pubnix, so that (for example) my instance of Subversion listening to port 5120 there is available from the outside. Yes, I will test 'nc localhost 5119' later today, while the tunnel is open.
-
ant-x
rwp: "As to why you can't just "ssh -p 5119 pubnix" the answer is that you might actually be able to do so." I asked because 1) you did not mention this, but proposed more complicated mechanisms such as -J and -W . 2) Yesteday, I failed to SSH directly to publnx:5119 after opening the tunnel.
-
kerneldove_
ive heard about a high availability architecture where server appliances and daemons are deployed in an a/b setup, (software, not hardware HA like with routers) and say A is running, B is upgraded, started, and if it fails it switches back to A. anyone know the term for that?
-
crab
kerneldove_: there are loads of different ha solutions, but if you are talking specifically about firewalls / packet filtering in a bsd specific context you might want to read up on carp and pf (although i only have experience of that wrt openbsd, and ive forgotten pretty much everything i knew about it)
-
kerneldove_
found it, a/b swap
-
kerneldove_
used in firmware updates
-
crab
that sounds like how some junos switches have dual root filesystems
-
kerneldove_
ya
-
Koston
CARP/VRRP, LACP, lagg(4)
-
dch
kerneldove_: we call the process of doing this blue/green deploys, if you have actual separate servers/routers involved
-
dch
redeploy A, if it comes up cleanly & responds to healthchecks, then redeploy B as well.
-
kerneldove_
no it's software, not hardware
-
kerneldove_
it's all on 1 device
-
kerneldove_
it's called a/b swap
-
dch
ok
-
dch
-
LxGHTNxNG
sounds like blue-green and a/b are the same concept in a different context
-
kerneldove_
similar ya
-
Koston
what's the distinction between hardware and software?
-
Koston
you can run virtual NICs in jails behind CARP
-
dch
Koston: at some point its all just electrons and stardust
-
dch
hardware is a thing I can throw out a window when I'm angry with it.
-
Koston
well I meant what's the distinction that's relevant to this context
-
dch
in this context IDK. The blue/green thing is about ordering of deployment, whereas a/b is about partitions you can switch between.
-
dch
but they both are equally software in this context
-
kerneldove_
i guess they're the same concept just different by context, because operationally, they do the same. have 2 operating contexts (networks or partitions) and switch between them
-
JetpackJackson
rwp: oh ok, I think I put my doas config in there
-
tk
So there's a wlans_<interface> and a vlans_<interface> but what about wireguard?
-
tk
looks like you can abuse cloned_interfaces for this
-
LxGHTNxNG
reminds me that i need to work on my ifupdown-ng fork
-
[tj]
it isn't an abuse, that is what it is for
-
tk
is cloned a term that makes sense in this case?
-
[tj]
it is how the device driver is implemented
-
tk
i see
-
tk
I can see two ways to actually configure the wireguard side, devd or /etc/start_if.<interface>. Is there a preference? Does it matter?
-
tk
looks like the devd approach is strictly less maintenance
-
kerneldove_
why am i getting "limiting icmp unreach response" messages in /var/log/messages when i have set net.inet.tcp.blackhole=3 and net.inet.udp.blackhole=1 ??
-
CrtxReavr
kerneldove_, because. . . you're limiting it even more?
-
kerneldove_
what?
-
kerneldove_
the point of blackhole is to not send responses
-
nimaje
on which side do you see that message? it looks like it just logs what blackhole is doing
-
kerneldove_
no
-
deconfed
backlog 1024 coz unprivileged
-
mzar
kerneldove_: ICMP responses are not only responses to UDP received on wrong port
-
mzar
kerneldove_: you can silence them net.inet.icmp.icmplim_output=0 net.inet6.icmp6.icmp6lim_output=0
-
kerneldove_
mzar, i don't want to limit them i want to not send them at all
-
mzar
ha.. so you have to firewall outgoing ICMP
-
mzar
it's pretty normal nowadays to see Limiting icmp unreach response from 95012 to 209 packets/sec, we see it 24/7
-
kerneldove_
ok but my point is, isn't setting net.inet.tcp.blackhole=3 supposed to stop sending them?
-
mzar
but in the place where it bothers you, you can silence it with the above sysctl knobs
-
mzar
nope
-
kerneldove_
what do you mean nope?
-
kerneldove_
wtf does it do if not that
-
kerneldove_
the docs said it does
-
mzar
TCP is rejected with TCP
-
mzar
UDP is rejected with ICMP, or rather politely declined with ICMP
-
[tj]
nah tcp is rejected with icmp too
-
mzar
?!
-
mzar
how so ?
-
mzar
who told you that ?
-
kerneldove_
-
tykling
that is how it works.. connect to a closed port, receive an icmp unreach in return
-
» mzar facepalms
-
tykling
try starting wireshark or tcpdump and see for yourself :)
-
mzar
tykling: have you ever run tcpdump on wirshark to see what's going on closed port ?
-
mzar
*TCP closed port
-
tykling
I have spent half my life in wireshark and tcpdump
-
tykling
(can recommend)
-
mzar
that's probably not BSD TCP stack but other
-
mzar
TCP is rejected with TCP, but UDP with ICMP, you have to check it guys
-
tykling
nonsense
-
hodapp
this is easily tested
-
rfmoz
I guess that it depeds of how deep are on the stack, could be ICMP host unreachable or a TCP SYN to a closed port returns TCP RST
-
tk
it depends on how you configure your system
-
tk
and the system
-
kerneldove_
just wanna say despite freebsd's flaws, it's still better than linux feces. imagine running debian and when you ssh into a new server, it saves key to .ssh/known_hosts with no domain/ip attached so when you need to remove it later you can't correlate. looool
-
deconfed
i am foricified to linux coz freebsd does not run docker
-
tk
That has nothing to do with debian, it's a feature of OpenSSH.
-
deconfed
presented by openssl
-
kerneldove_
well freebsd attaches ip/domain to .ssh/known_hosts entries
-
kerneldove_
so?
-
tk
no, freebsd doesn't do that, OpenSSH does that
-
tk
because on FreeBSD OpenSSH is not configured with HashKnownHosts by default.
-
kerneldove_
so... freebsd's defaults?
-
deconfed
opentheo found only 1 vuln
-
deconfed
in earlier coding ears
-
deconfed
skel/
-
tk
There are advantages and disadvantages to either default, but if you don't feel like the security benefit of not storing the host information directly is worth it then just disable it on Debian.
-
kerneldove_
nah i'll just keep using and prefering freebsd's defaults
-
tk
echo "HashKnownHosts=no" >>~/.ssh/config
-
» deconfed setting up amd network card with nvidia gpu's fast cores to calc TX/RX/IX crc'2
-
deconfed
working in dream but i can proof my dreams comes truella at rate more than 70%
-
ant-x
rwp, "log into pubnix and then "nc localhost 5119" do you see the ssh banner from your home system?" nc shows: "SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.14", but I can if fact "ssh -p 5119 user@localhost" and land on the computer where I opened the tunnel. Connecting at user@pubnix, however, fails with: connection refused.
-
acu
Hello Everyone - I see Freebsd 15.0 RC1 is going to be released soon - today - I wonder if I install it - can I keep pkg update upgrade --- until the RELEASE ? - means that I would not need to reinstall it - and repositories are kept constant ?
-
ant-x
It means that opening the tunnel: "ssh -R 5119:localhost:22 user@pubnix" opens port 5119 from within pubnix, but not from without...
-
ant-x
rwp, "If GatewayPorts=clientspecified is needed but you can't set it up" > looks like my case.
-
ant-x
rwp, "you can use a second program such as socat or nc to stitch yet another software layer into the pipeline of communication tunnel." > Can nc alone do it, but listinging to another open port and forwarding to localhost:5119 ?
-
tk
paste.rs/Tad7T - there, I wrote another one - you're welcome
-
ant-x
tk, what does the colon (:) do in the begining of the script?
-
tk
nothing
-
tk
it's a no-op in shell scripting, it's just there to make the heredoc valid syntax
-
ant-x
Ah, used as a block comment.
-
JetpackJackson
Trying to build the updated version of jujutsu in my VM makes me realize how much I dislike like many dependencies that this project needs... I guess I'll wait for now and tinker with other things in this vm
-
ant-x
It is easier to include a dependency (even if it uses 1% of the dependent library) than to deal with it for the lifetime of the program...
-
rtprio
acu: yes you can keep using pkg
-
mzar
/10
-
mzar
er
-
rwp
JetpackJackson, JFTR, doas is also a port. So if you want to remove all ports then that would include doas which is also a port.
-
rtprio
why are you avoiding dependancies ?
-
rwp
ant-x, It sounds like you are successfully setting up a quick ssh port forwarding tunnel back to your home system and are successfully able to use it to log into your home system remotely from other places. Right? You will need to say more about the user@pubnix problem which seems unrelated.
-
ant-x
rwp, not successfully, because the sshd on the pubnix has `GatewayPorts no', which means I need to use socat or nc (as you mentioned previosly) to complete the setup. My test setup is: 1) open a reverse SSH tunnel from my home machine to the pubnix:5119, 2) try to SSH to pubnix:5119 from other places.
-
rtprio
(are you unable to ssh directly home without the reverse tunnel?)
-
ant-x
rtprio, I am unable to SSH to pubnix:5119, because the reverse tunnel opens port 5119 only locally, but not to the outside, due to the `GatewayPorts no' setting in the sshd config. I can SSH to pubnix, and then, from inside that pubnix, I can ssh to my home machine, specifying the tunnel's port: localhost:5119 .
-
TommyC
What is pubnix?
-
ant-x
TommyC, a public Unix server -- a multiuser Unix (actually, Linux) server.
-
JetpackJackson
rwp: oh alright. I installed it using pkg so I thought it was a binary rather than something part of ports
-
rwp
rtprio, It was established earlier that ant-x can't directly ssh home due to blocking, I think it was CG-NAT? Don't remember now.
-
ant-x
rwp, Yes: direct SSH home is impossible because of CGNAT.
-
rtprio
how set are you on using pubnix ?
-
rwp
JetpackJackson, binary pkgs are simply precompiled ports. No difference.
-
ant-x
rwp, Yes: direct SSH home is impossible because of CGNAT.
-
TommyC
ant-x: Is pubnix free?
-
ant-x
rtprio, "How set am I" -- what does that mean? Yes, that pubnix is free. There are many free pubnixes, e.g. freeshell.de .
-
rtprio
are you willing to use a provider that doesn't have that GatewayPorts setting
-
rwp
JetpackJackson, If you are mixing pkgs and ports that is okay but also mixing two things that have no way to easily unmix them. As far as I know there is no tracking of installs by ports other than that you remember in your head. With pkgs there is the pkg database which will remember what pkgs are installed.
-
ant-x
rtprio, yes.
-
rtprio
ant-x: or a vps where you can run wireguard
-
rwp
One could run pkg which on every file and compile a list of files and packages that are installed by pkg and then assume that all other files are installed either by the admin creating them or by a ports make install.
-
ant-x
rtprio, no VPS for me so far. It is a completely different kettle of cod.
-
TommyC
Speaking of, Black Friday & Cyber Monday are coming up. You might be able to get a good deal on a cheap VPS that you can do whatever you want on.
-
rtprio
i don't know about that
-
ant-x
TommyC, probably, but I have not looked into VPSes so far. I could rather buy a static IP from my ISP.
-
TommyC
ant-x: Hold up, why not a VPS? You'd be in full control of it.
-
rwp
ant-x, ssh itself has a -W option which is like nc or socat itself. Since you can log into pubnix and you can see the banner from your home system then you can use ssh itself to connect to it. I mentioned the series of sneaking up on it commands earlier.
-
ant-x
TommyC, learning from smaller and simpler things.
-
TommyC
Ok...
-
rtprio
ant-x: some cgnat isps still have routable ipv6, not sure if that applies to you
-
ant-x
rwp, yes: I have not tried ssh -W> is it to be invoked on the pubnix to set up redirection?
-
rwp
One of the problems of running a system on the Internet is that it is like owning your own home versus renting an apartment. You are then responsible for *everything* all at once. It can be a challenge.
-
ant-x
rtprio, all I know is that my ISP is selling a static IP for a monthly payment.
-
» TommyC likes owning his own things :3
-
rwp
ant-x, Invoke it from any remote location not on pubnix over to pubnix.
-
rtprio
ant-x: if it's a couple of bucks it might be worth it
-
ant-x
rwp, that's why my server is a toy one. I am not using it seriously (yet).
-
ant-x
treefrob, about 2$ a month, yes.
-
ant-x
rwp, OK> will test later this evening, from home: 1) reverse SSH tunnel from home machine to pubnix, 2) ssh -W to pubnix, on another machine .
-
ant-x
TommyC, it helps against learned helplessness.
-
rwp
ant-x, Other than confusion you can do the full loop from your home machine. Set up the tunnel from your home machine. Then use the tunnel to log into your home machine from your home machine but going through the bastion host system. (pubnix is the bastion host in this diagram)
-
ant-x
rwp, 1) and 2) do not seem sufficient, as I fail to see how they will get connected, gonna read about -W.
-
rwp
By using ssh to log into the bastion host it avoids any firewalls because it will use the loopback device and that is not (usually) firewalled. It avoids the GatewayPorts=no configuration by using the loopback device which is where the ssh port will be listening.
-
rwp
Just answering the questions I saw asked about it earlier.
-
ant-x
So, I connect to the bastion host twice: once to establish a reverse tunnel, and once again to use that tunnel, with ssh -W ?
-
rwp
Yes.
-
ant-x
I see, thanks. Will try it.
-
rwp
Each of the two end locations meet in the middle on the bastion host.
-
rwp
And there is a 3rd ssh too, the one that you use to connect through those two to get to the home system.
-
ant-x
The second ssh -W connection goes to port 22, and somehow must link with the tunnel on port 5119.
-
rtprio
yo dawg, i heard you like ssh
-
ant-x
Ah, so the two ssh connections are needed for service setup. OK.
-
rwp
You got it!
-
ant-x
Hope I can implement it.
-
rwp
One the client side there are two ssh processes in one invocation: "ssh -oProxyCommand='ssh -W 127.0.0.1:5119 pubnixbastion' homemachinearbitraryname"
-
rtprio
it would be a shame to switch ISPs after all this effort
-
rwp
That client ssh is told to use ssh -W to connect to the bastion host for the connection back to the home machine. The name of the home machine is pretty arbitrary there.
-
deconfed
OS: 64 bit Windows 11 Professional (Version 10.0 2009 Build 26100.6725)
-
JetpackJackson
rwp: ah ok. I'll stick with just pkg for now then so I don't muck up the system on my first day lol. I'll keep that in mind when I find myself wanting a newer version of a package
-
ant-x
rwp, can this be simplified into independent invocations, or is that nested invocation necessary? For example, I could open a session from pubnix to my home machine (over the reverse tunnel), and then I could connect to that session from wherever I liked, except that it would be a bit indirect on the user level 1) ssh to pubnix 2) establish or restore (from screen) the session to the home machine.
-
rtprio
JetpackJackson: my laptop has more than 1000 packages and my server has 400. it's just how modern software works
-
rwp
JetpackJackson, The standard solution for that is to set up poudriere to compile locally compiled pkgs from local source and then everything are precompiled binary pkgs.
-
ant-x
rtprio, I am not switching ISP. They are offering a static IP as a service.
-
rtprio
it was a joke
-
ant-x
With a grain of truth in it, however.
-
JetpackJackson
rwp: oh OK I'll check that out, thanks!
-
ant-x
I am going home now, stay tuned.
-
cpet
ant-x: any isp that does weird things like that should be avoided
-
rwp
JetpackJackson, Since you are just getting going I recommend going slow so as not to overwhelm the learning curve and just use FreeBSD pkgs for a while until you get comfortable with things.
-
ant-x
cpet, weird things like CGNAT?
-
rwp
Yes. CG-NAT is truly a problem!
-
cpet
shouldn't have ssh issues with that my ISP uses it as well
-
rtprio
my isp will charge between 22,000 and $42,000 for installation :|
-
cpet
i pay 151/m for a biz line with a /29
-
cpet
which hosts my dumb beer brewing website
-
cpet
:P
-
rtprio
that seems like a lot
-
cpet
the only other ISP is ATT and no
-
JetpackJackson
rwp: alright fair
-
cpet
I am contemplating to upgrade it to RC1 and play with pkgbase
-
rwp
On the user side CG-NAT creates another problem for incoming connections such as ssh that we want to have work but are then blocked.
-
rwp
On the server side I block with fail2ban and other tools and will automatically block tens of thousands of users behind CG-NAT because there are bad actors launching abuse attacks sharing the same IP address.
-
cpet
this is why I just got the biz line residential lines aren't made to host anything
-
cpet
as they want you to pay for the biz line
-
JetpackJackson
I should test out one of my zig programs to see how well it works on FreeBSD for funsies
-
cpet
well atleast thats how it is with CableOne
-
rtprio
residntal lines host just fine
-
rwp
Not residential lines behind CG-NAT!
-
cpet
when you want to host your own email they dont
-
rwp
I have only ever seen the CG-NAT problem with IPv4. IPv6 doesn't need NAT and so avoids the problem. And creates the new problem that everything needs to be firewalled! Otherwise light bulb IoT devices get compromised by hostile bad actors that can now poke at them.
-
cpet
you could get a tunnel from he.net
-
cpet
and see if that fixes your issues
-
rwp
Oh, and you can't send email if you are listed in the ISP Policy as a DUL "dial up line" address.
-
cpet
yeap but you can if you have a biz line
-
rtprio
oh yeah, email
-
rwp
Right. A biz line is by policy allowed for those things.
-
cpet
so you pay for the 151/m to do all that
-
rwp
That cost is why renting a VPS from a cloud vendor at USD$5/month is so attractive.
-
cpet
i like to do all the things myself
-
cpet
:)
-
rwp
Me too. I am renting a shared office with a computer rack and paying for a business ISP connection too.
-
cpet
i just have a mini computer, running freebsd nothing that fancy
-
rwp
I am a little more spread out. I have my own personal machines. I have paid client systems. I have community project systems that I am a volunteer admin. It's a fun little empire of systems all in total. :-)
-
cpet
2 VPS's and the mini PC
-
rwp
I need to run off. Later!
-
JetpackJackson
Holy moly FreeBSD works on my janky no-name spare laptop
-
JetpackJackson
This is awesome
-
JetpackJackson
Granted I have to tether with my phone and I haven't tested sound but still, im excited
-
LxGHTNxNG
congratulations! i hope it does well for ya
-
JetpackJackson
Well for some reason niri says it can't find a GPU but I have the firmware installed lol. I'll tinker with it later, gonna work on some HW now
-
cpet
if there is no hwid in the firmware
-
cpet
that wont help you
-
JetpackJackson
Got it, had to install drm-kmod per the handbook
-
JetpackJackson
-
JetpackJackson
Weird, I had installed sway to test it out and went to uninstall it and when I ran niri again the system just did an unresponsive black screen, couldn't switch ttys, had to power it off. Reinstalled sway and niri worked again, so I'll have to look at what packages sway is adding. Or maybe its my hardware lol. But I'm glad I have a WM now. Next test is audio
-
cpet
always the integrated gfx cause issues
-
cpet
however if that PC has been sitting aorund for a long time could have leaking caps as sometimes they use polymer closer to the CPU and lquid for the rest as they are cheaper, start to get weird issues as well
-
nwe
how can I tell my wpa_supplicant to move to nearest AP ?
-
nwe
found out I can use wpa_cli :)
-
cpet
the router itself is the one that deal with that
-
nwe
looks like I can use wpa_cli -i wlan0 scan -> wpa_cli -i wlan0 scan_results -> wpa_cli -i wlan0 reassociate
-
cpet
i have a mesh system with a AP on each floor so router does that for me I have some clients on the second floor and some cameras on the first i dont use wifi so 3rd level is basically useless
-
nwe
after that I saw it was moved to the AP in the same room Im in at the moment, and not the otherone in the room across the house :P
-
cpet
you cant use scan on some cards
-
JetpackJackson
-
cpet
I have found that embedded gfx always cause issues
-
cpet
so I force my system to default to the AMD card
-
cpet
doesnt fix my issue with X though
-
JetpackJackson
After typing on the spare laptop for a while, I remember that my current laptop is just way nicer and more powerful lol
-
JetpackJackson
Ah
-
cpet
i have to force X to probe the AMD and leave the other alone
-
cpet
system is old but I dont have the reaosn to upgrade it if all I do on it is KDE and youtube
-
JetpackJackson
Fair
-
cpet
it has 64 GBG of ram a ryzen 7 5700H and a 4 x zfs z2
-
cpet
so yeah more than enough :P
-
cpet
ok now I Know what niri is thought it was something like sheep.exe
-
cpet
:P
-
JetpackJackson
Lol
-
cpet
isnt sway wayland stuff ?
-
JetpackJackson
So basically I forgot the spare laptop needs sof-firmware to do sound shenanigans so I'm out of luck for now re: sound.
-
JetpackJackson
Yeah
-
cpet
ill try wayland when I have too
-
cpet
go pickup a USB sound card
-
cpet
make sure its supported by usound or whatever that is called
-
JetpackJackson
The spare laptop also only has ~50GB storage and 4GB ram, its just for distrohopping
-
JetpackJackson
But ill look into that
-
cpet
uaudio*
-
JetpackJackson
I guess later I can boot a live USB for my nice laptop and probe it
-
cpet
i couldnt get BT to work so I went out and got some SRS THX speakers
-
cpet
go big opr go home when it comes to sound
-
cpet
so im stuck with 500 watt speakers vs the 1500 watt theater sound system connected to the TV
-
cpet
now if I comapre freebsd sound back in the 90's vs what it is now it sounds quit nice
-
cpet
JetpackJackson: cant you do something magic like using the sof-firmware from linux ?
-
cpet
-
cpet
or is that not the same ?
-
cpet
the .bin file should be readbale by the driver
-
JetpackJackson
I could try
-
cpet
-
cpet
yeap youre better off just getting a USB sound card
-
cpet
accordsing to google your SOL in *BSD
-
cpet
-
cpet
jA&dib_tag=se&keywords=USB%2Bsound%2Bcard&qid=1763416548&sprefix=usb%2Bsound%2Bcard%2Caps%2C137&sr=8-3&th=1
-
cpet
something like that
-
JetpackJackson
That one is compatible?
-
cpet
no was just showing what i meant
-
JetpackJackson
Oh
-
cpet
well amazon does offer free returns so
-
cpet
could always try a few and see which one works cause the hardware notes doesnt specify any
-
cpet
now if I was you I would try the Creative Labs one first
-
cpet
but dont come yelling at me if it doesn't work :)
-
ant-x
rwp, the method you propsed works: 1) open a reverse SSH tunnel from home machine to pubnix, 2) use ssh -oProxyCommand='ssh -W 127.0.0.1 pubnix' home_machine . Thanks.
-
JetpackJackson
cpet: haha I won't yell at you
-
JetpackJackson
-
JetpackJackson
Couldn't find a Probe for it
-
cpet
I like Lenovo but my last Lenovo Legion didn't work very well as it had that dual gfx card that X didn't like
-
cpet
this was back with 12 i think I sold it so cant test it with 14 or 15
-
cpet
hrm
-
cpet
pubnix sure is expensive
-
JetpackJackson
I need to take this slow and not get all crazy with looking at framework laptops lol
-
cpet
freebsd works fine just need to get HW it supports
-
JetpackJackson
Right right
-
JetpackJackson
I have two other spare laptops I can check for compatibility
-
cpet
JetpackJackson: if this will be your main system not having sound kinda sucks more than not having a printer
-
cpet
heh
-
JetpackJackson
Haha I mean I can't switch now cause I'm still in college but ill look into it more when I get closer to being able to switch
-
JetpackJackson
Want to get more experience with the system first too before I go all in
-
cpet
run it in a VM
-
JetpackJackson
yeah im doing that too i just had the idea to plunk it on one of the spares
-
rtprio
great plan
-
JetpackJackson
I know one is an old Toshiba and the other is another Lenovo so hopefully they'll work better
-
cpet
JetpackJackson: I would check the Toshiba next
-
JetpackJackson
Oh how come? Better support?
-
cpet
Cause why not ?
-
JetpackJackson
Ah
-
JetpackJackson
It's at the bottom of the stack so I was gonna do the Lenovo first lol