-
aesthetikx
does anyone know if there is a reason why the chromium in pkg doesn't include chromedriver? It seems like it is a build option in the ports tree (DRIVER) but it would be nice not to have to build chromium for the next few days
-
vortexx
aesthetikx: maybe try ungoogled-chromium or iridium to see if chromedriver is included on those?
-
aesthetikx
good idea, thankyou
-
V_PauAmma_V
Hmm, in www/chromium/Makefile, I see "OPTIONS_DEFAULT= CODECS CUPS DRIVER KERBEROS PIPEWIRE SNDIO ALSA PULSEAUDIO", so are you sure it's not installed by default?
-
CCFL_Man
restore: /tmp//rstdir1725751428: cannot create directory database: Read-only file system
-
CCFL_Man
/tmp is on the slice i'm dumping from
-
CCFL_Man
so i booted into single user mode so the root is read only
-
wowzersbrain
hello my question is as follows
-
wowzersbrain
I want to use the mail app but instead of having it with the default domain is there a way I can change it to a different one?
-
wowzersbrain
lol
-
wowzersbrain
seriously because I am trying to do dkim on postman.videotron.com aka send root⊙pve but it's sending as root⊙ve
-
wowzersbrain
I need help to setup opendkim on freebsd using sendmail
-
hwpplayer1
Do you know a datacenter which offers VM service with a stable network ?
-
hwpplayer1
which offers FreeBSD
-
debdrup
It sounds like you're looking for a company that does colo and offers console access and remote media management?
-
debdrup
freebsd.org/commercial/isp is a pretty good list, from what I remember.
-
hwpplayer1
yes
-
hwpplayer1
I see that page
-
hwpplayer1
Thanks debdrup !
-
debdrup
Although, one piece of advice - look for providers that have a public looking glass site available (usually at lookingglass.domain.tld or lg.domain.tld).
-
debdrup
As a general rule of thumb, any provider that doesn't have that, probably doesn't care much about connectivity..
-
V_PauAmma_V
A looking glass being... somewhere you can query what external routes the ISP's AS has/have?
-
V_PauAmma_V
Or VPS provider?
-
pwrsurge
anyone here that can help with IPFW and setfib, trying to setup default routes for certain internal LAN hosts.
-
jmnbtslsQE
sounds like you just want ipfw fwd
-
CCFL_Man
unix.stackexchange.com/questions/31…e-and-extend-to-new-disk-in-freebsd <--in the second answer, the step that uses dump and restore, since in single usermode, / is read only, restore requires /tmp and can't write
-
CCFL_Man
anyone know a way around that?
-
jmnbtslsQE
can you remount / with mount -uw ?
-
pwrsurge
jmbfslsQE: tried to but not working
-
jmnbtslsQE
CCFL_Man: not sure what restore using it before but you could also try mouting a memory disk at /tmp
-
jmnbtslsQE
pwrsurge: what happened?
-
pwrsurge
basically I have a multihomed host with 2 ISP's and fibs 0 and 1 are setup
-
jmnbtslsQE
CCFL_Man: *what restore is using it for
-
CCFL_Man
in single user mode, / is read only be default, right?
-
CCFL_Man
dump and restore to copy / to another partition on another drive
-
jmnbtslsQE
CCFL_Man: i think so. i don't remember ever not being able to remount read-write though. maybe i'm mis-remembering
-
pwrsurge
on the gateway host itself, i can do setfib 0 or setfib 1 traceroute and it chooses the correct ISP
-
jmnbtslsQE
CCFL_Man: if it's ufs, you could also dd the partition your filesystem is on to a partition on your destination disk and expand on the destination
-
pwrsurge
also setfib 0 or setfib 1 lynx www.myip.org works fine
-
pwrsurge
but i want to have a certain lan host use fib 1 instead of fib 0
-
jmnbtslsQE
pwrsurge: ipfw works in mysterious ways. maybe your ipfw fwd rule is not being hit. check ipfw -ta list on relevant rules
-
pwrsurge
i have 2 nats configured in ipfw, nat 1 and nat 2
-
jmnbtslsQE
do you have net.inet.ip.fw.one_pass=1 or 0?
-
pwrsurge
0
-
pwrsurge
tried with 1 and no difference
-
CCFL_Man
jmnbtslsQE: it us ufs, but i'm copying from a failing smaller drive to a bigger drive
-
jmnbtslsQE
do you have your fwd rule before the outgoing nat rule?
-
CCFL_Man
dd did not work and the bootloader was corrupted
-
jmnbtslsQE
CCFL_Man: dd should still work if you add conv=noerror,sync . i think generally dd would be preferred if the drive is failing a lot
-
jmnbtslsQE
i would just copy individual partitions that have your data and reinstall any bootloader or other replaceable things
-
jmnbtslsQE
or copy those over too, but not copy the entire device at once (recreate the partition table on the destination)
-
» jmnbtslsQE will be back in about 20 minutes
-
CCFL_Man
i think i'd do that
-
CCFL_Man
how can one create a /tmp from a ram drive?
-
pwrsurge
ok i was able to make outbound traceroute work but ping or web browsing does not work.
-
CCFL_Man
that would be tmpfs, i believe
-
jmnbtslsQE
pwrsurge: sounds like an issue with your ipfw filtering
-
pwrsurge
what should the fwd rule be set at?
-
pwrsurge
ipfw add fwd tcp from 192.168.1.10 to 1.2.3.4 where 192.168.1.10 is the internal LAN host and 1.2.3.4 is the public IP
-
pwrsurge
tried: ipfw add fwd 192.168.1.10 ip from 1.2.3.4 to any
-
pwrsurge
still does not work
-
pwrsurge
I can do traceroute and nslookups with any Internet host
-
pwrsurge
but that's it
-
pwrsurge
should not be so hard
-
jmnbtslsQE
pwrsurge: should fwd to the desired next hop
-
jmnbtslsQE
if the desired behavior is working for traceroute then the routing problem is solved
-
pwrsurge
hmm
-
pwrsurge
next hop as in default gateway for fib 1?
-
jmnbtslsQE
pwrsurge: yeah whichever default gateway you're trying to forward that traffic through
-
CCFL_Man
jmnbtslsQE:
man.freebsd.org/cgi/man.cgi?tmpfs <--that'll enable tmpfs and should solve my issue
-
jmnbtslsQE
yeah, if you want to take that approach. i think you can just kldload tmpfs if it's not already in the kernel
-
jmnbtslsQE
or use md + newfs
-
pwrsurge
jmbtslsQE so like this: ipfw add fwd InternalLANIP ip from fib1GW to any ?
-
jmnbtslsQE
pwrsurge: no, ipfw add fwd $gateway ip from $internal_ip to any
-
jmnbtslsQE
this is just syntax. you can check the manpage
-
jmnbtslsQE
the item after fwd is the argument to fwd (action to take). everything including and after ip is selecting packets to match the rule
-
pwrsurge
ok i see the fwd rule being triggered but traffic still going to default route
-
CCFL_Man
bpa.st/ZOMDE <--is there a way to recover from this?
-
CCFL_Man
it locks up the system after this read error and it's an SSD
-
pwrsurge
the fwd rule does have an impact as i tried setting fwd to public ip instead of next hop and all traffic goes to the local gateway only
-
pwrsurge
perhaps setfib is needed on it