-
demido
i've put a zfs mirror on a couple of external usb drives. i wanna start over so what's the right way to clear the drives? do i even need to do anything (like gpart destroy -F ...) or can i just gpart create... zpool create...?
-
voy4g3r2
demido: as long as the data is backed up, unmount all the drives, in the zpool.. execute zpool destroy <poolname>, then rebuild
-
demido
ok ty
-
demido
ok got external usb nvme drive setup with gpt partition and zfs! i ran gpart create -s GPT da1, then gpart add -l foo -t freebsd-zfs -a 1M da1, then sudo zpool create extrn gpt/foo, then chown -R demido:operator /extrn, then copy files into /extrn, then zpool export extrn. do i also need to umount da1 for clean unplugging, or is zfs export enough?
-
demido
anyone reply after i got d/c?
-
crb
does cut an paste work from any of the vnc server/clients to the client host? Ie I have a vncviewer on a Mac can cut and paste be made to work between the vnc session and the Mac?
-
paulf
I must pull my finger out and write a report for the next quarterly
-
demido
where was your finger dare i ask?
-
paulf
figuratively not doing any useful work
-
demido
so it wasn't in ur bhole right?
-
cyric
demido: there's nothing to unmount after zpool export as it obviously unmount all fs before exporting the pool
-
demido
ok ty. i just thought maybe there were 2 layers since i put gpt partition on disk before adding zpool create. but now i know, tyvm!
-
dch
crb: its possible with some combinations, but likely you'll need to experiment to find a working one depending on client & target OS.
-
dch
crb: look through e.g. tigervnc
tigervnc.org/doc/vncviewer.html IIRC its enabled by default there
-
Macer
having a time trying to find a 1 pcie x16 to 2 x8 riser with notches open in the back so i can put an x16 card in an x8 slot
-
Macer
notches on the back of pcie slots should be the standard
-
nwe
when I running freebsd-version -k -r -u I get this
pastebin.com/Fz2GcD3S , but when I running freebsd-update fetch install it says No updates needed to update system to 14.2-RELEASE-p3. , No updates are available to install.
-
Schamschula
I just updated a infrequently used FreeBSD desktop system to Plasma6, via pkg upgrade. After typing in my password the login screen goes black (with mouse cursor) for a moment and cycles back to the same login screen. I'm using the same password that worked just fine under Plasma5 earlier today.
-
cyric
nwe: most likely, -p2 and -p3 didn't touch kernel code so it was not rebuilt for these patch levels
-
cyric
-
CrtxReavr
Schamschula, anything logged?
-
CrtxReavr
I'm guessing something's crashing and kicking you back to the login screen.
-
nwe
cyric: aha, then I understand. Thanks for the help and the link :) will look there too.
-
Schamschula
CrtxReavr: Any particular log I should be looking for?
-
CrtxReavr
Start with just running 'dmesg'
-
CrtxReavr
Then /var/log/message I suppose.
-
CrtxReavr
Maybe look for core files?
-
Schamschula
Strange, but I only see one file in /var/log: utx.log
-
Schamschula
I've disabled sddm. I'll see if I can manually start the desktop
-
CrtxReavr
How are you launching ssdm?
-
Schamschula
Via /etc/rc.conf
-
CrtxReavr
Hmm
-
CrtxReavr
Honestly, it's been a while since I ran a FreeBSD workstation.
-
Schamschula
If I don't disable it there, my only option is to boot int single user mode.
-
Schamschula
s/int/into/
-
CrtxReavr
The prescribed method back the, was to launch it via /etc/ttys on the ttyv8 line.
-
SponiX
-
SponiX
seems broken
-
xaltsc
Hey, I'm completely new to (Free)BSD, I want to try it out for a personal server with only one user. What are some benefits over a Linux install ? I've been curious as I moved most services to podman recently, and BSD provides jails which some argue are better.
-
getz
xaltsc: you can run podman on freebsd with jails as its backbone
-
xaltsc
getz: You mean as the container runner ?
-
regis
A bit work to run podman pods created on
-
regis
Linux, but you can easily recreate them for FreeBSD
-
getz
i used linuxulator and it worked fine
-
regis
xaltsc: To simplify: you can run jails or you can use podman which uses jails underneath. But out-of-the-box existing podman images created on Linux won't work
-
regis
getz: first time I hear this name. "Linux binary compatibility" - how is it different than linux.ko, linux64.ko etc?
-
getz
to run linux stuff just append --os=linux to podman
-
regis
getz: Asking out of curiosity. I run linux VMs under bhyve and have no need to change this approach.
-
xaltsc
Do the memstick images come with ssh running btw ?
-
regis
getz: ok, as I understand this software loads the modules that I mentioned.
-
regis
xaltsc: iirc no and you need sysrc sshd_enable="YES"
-
getz
regis: yeah i think we're talking about the same stuff, theres also linuxkpi for drivers but thats something else
-
regis
getz: Yup, I'm running AMD GPU drivers via linuxkpi and can't wait for proper 5/6GHz WiFi support through linuxkpi ;)
-
xaltsc
regis: Actually, I meant the RPI images. Can I just edit a file on the sdcard to enable sshd before booting it ?
-
regis
xaltsc: Souinds doable but you need to stick this card into system capable of mounting UFS or ZFS (unsure if RPi images have ZFS nowadays)
-
xaltsc
I have ZFS on root on my Laptop, but UFS is definitely foreign to me. Why does BSD use this ?
-
regis
It works and not every use case calls for using ZFS.
-
xaltsc
My question may then be rephrased as: why was ext2/extN created (since it seems to be derived from UFS) ?
-
regis
EXT2 is based on ideas taken from UFS. It's a simple filesystem that just works. UFS2 later added some features like journaling but overall it's rather poor where it comes to configurability. ZFS however may not be ideal on machines with low amount of RAM like RPi and behaves differently in many scenarios. UFS is simple, ZFS is a heavily configurable, completely different filesystem which not
-
regis
every use-case need. It may for example become memory hungry. As I said: not every use-case calls for using ZFS.
-
ivy
extfs was created because the purpose of Linux was to create a new kernel from scratch. if they just copied everything from existing Unix systems, there would be no point to it
-
ivy
(also, the licensing state of the BSD source code was much less clear back when Linux was created, and the original 4-clause BSD license isn't GPL compatible)
-
regis
License-wise they likely couldn't slap GPL on code copied from BSD.
-
Schamschula
Update on my desktop issue: I followed the suggestion from
forums.freebsd.org/threads/is-it-po…le-to-upgrade-plasma5-plasma6.97141 and completely removed plasma[56] qt[56] and kf[56] and reinstalled plasma6-plasma and sddm. I can now log in to the GUI, but only if I first choose the Plasma (X11) desktop session in the login in screen.
-
Schamschula
Is there a way to default to that? It seems to default to Plasma (Wayland), which is rather broken.
-
WoC
wayland is default
-
WoC
on some gpu's it's almost ok
-
Schamschula
man sddm.conf does give a hint! DisplayServer!
-
WoC
But there would need at leat a decade for wayland to become stable
-
WoC
DisplayServer is X11, not so much WayLand
-
WoC
Probably never will work with wl
-
SponiX
From my understanding the KDE Plasma team is likely to "start" work on possible Wayland support after 6.4 is a thing
-
SponiX
I'm new to FreeBSD and just listen in on what that team has to say. So consider this more a rumor than a fact