-
redlegion
I did it with infocmp
-
RhodiumToad
what command exactly
-
redlegion
I honestly don't remember
-
redlegion
but the weird thing is that it says `alacritty` if I run `toe`
-
redlegion
like I need to restart sshd or something
-
RhodiumToad
this is nothing to do with sshd
-
RhodiumToad
are you using ssh within a terminal session in alacritty?
-
redlegion
yes
-
RhodiumToad
and you're working with the termcap on the local system or the remote one?
-
redlegion
remote one
-
redlegion
local is macos
-
RhodiumToad
and you're not using screen on either end?
-
redlegion
well, I'm not at that point yet, the remote system complains about the terminfo
-
RhodiumToad
complains how exactly?
-
redlegion
`can't find terminfo database`
-
redlegion
if I go to run tmux it just spits that out
-
RhodiumToad
what you want to do is to run infotocap alacritty.info >~/.termcap
-
RhodiumToad
er no
-
RhodiumToad
what you want to do is to run infotocap alacritty.info >>~/.termcap
-
redlegion
okay, I'll give that a shot. thanks!
-
RhodiumToad
the output of that could use some further work but it'll do as a start
-
RhodiumToad
one thing to bear in mind is that removing the linebreaks in a termcap helps with the length limit
-
redlegion
weird, it still complains that it isn't found
-
redlegion
I actually did take the extra step of adding $TERMCAP to my ~/.zshrc, just in case
-
RhodiumToad
don't do that
-
redlegion
okay
-
RhodiumToad
what value did you put there?
-
redlegion
~/.termcap
-
RhodiumToad
that's wrong, TERMCAP is set to the entire termcap entry, not to a filename
-
RhodiumToad
so unset it to use the file
-
redlegion
ah
-
redlegion
alright, thanks
-
klu123
On freebsd, is there something similar to Linux overlayfs, where with COW, I can modify/delete a lower-layer file in the upper/merged layer fs? I am aware of nullfs, not sure if it supports it. Thanks!
-
RhodiumToad
there is, but it's regarded as a bit buggy
-
RhodiumToad
(unionfs)
-
klu123
oh yah, read about it
-
kenrap
-
VimDiesel
Title: FreshPorts -- sysutils/fusefs-bindfs: FUSE based bindfs implementation way more powerful than nullfs
-
klu123
kenrap: it might. thanks for the pointer!
-
kenrap
Good luck!
-
_xor
Hmm, are all sendmail_*_enable="NO" flags required or is sendmail_enable="NO" enough? I think I remember the latter being true for a long while and then at some point it got broken out into individual knobs.
-
» _xor is grepping /etc/defaults currently
-
klu123
probably I can explan my goal a bit clearer, just in case there's a solution without need to install anything: I've an folder containing subfolders D1, D2, ..D99. I would like to somehow "mask out" folders D1 to D50. So in a mounted parent folder, only D51 ~ D99 are present. Is this doable?
-
RhodiumToad
sendmail_enable="NO" is not enough, you can do sendmail_enable="NONE" but I think it's preferred to turn them off individually
-
_xor
Doing this for jails, which have their own logging/metrics/etc services, so don't really need sendmail.
-
_xor
Ah yeah that's right, I used to use NONE instead of NO, but screw it, I'm going to go ahead and individually disable them.
-
RhodiumToad
klu123: where's the mountpoint relative to these folders?
-
_xor
Though interestingly enough, /etc/defaults/rc.conf@607 says: "sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO)."
-
_xor
Kind of confusing, as it doesn't explicitly list NONE as being another potential value.
-
_xor
Hmm, nothing shows up at all under /etc for sendmail_enable="NONE", wonder if that was removed.
-
RhodiumToad
see rc.d/sendmail
-
_xor
Oh
-
RhodiumToad
it does a case match against [Nn][Oo][Nn][Ee] so it's not very greppable
-
klu123
RhodiumToad: /data. I've root access btw
-
» _xor sees the case statmenet
-
_xor
yup
-
RhodiumToad
klu123: I mean, where are the dirs you want to hide relative to the mountpoint
-
klu123
RhodiumToad: like /data/D1~D99. I want to maybe mount them to /data_new, and under /data_new, I only want to see D51~D99
-
_xor
Is there a specific reason that type of match expression is used? I've seen that scattered about in base shell scripts. I mean is it an official style or technical reason or something? My first instinct would be to do something like: `case "${sendmail_enable,,}`; none) ... ;;`
-
RhodiumToad
klu123: there may be a way, let me try something
-
RhodiumToad
_xor: what do you think that would do?
-
klu123
RhodiumToad: thanks!
-
_xor
Make it shorter, clearer, and most importantly...easier to grep and thus making it easier for me :P
-
_xor
oh
-
_xor
Wait, are ,, and ^^ not posix?
-
RhodiumToad
not at all
-
_xor
oh nevermind then
-
RhodiumToad
there's no way in freebsd's /bin/sh to do case conversions without an external command
-
» _xor just whipped up a quick shell script to test and noticed when it errored out with a bad substitution
-
_xor
Yeah, ah well.
-
RhodiumToad
hence, the idiom of using case and [Nn][Oo][Nn][Ee]
-
_xor
Was just looking up if posix case supports regex and if so would /i work, but apparently not, only supports glob-like patterns. Which is understandable, regex would bloat the implementation I'd imagine.
-
redlegion
I sorta got it to kinda work using cap_mkdb to generate a ~/.termcap.db file. sorta.
-
_xor
Does ~/.termcap.db need to be compiled or is it like .login_conf?
-
RhodiumToad
it does not need to be compiled
-
RhodiumToad
i.e. it should work just as well if you remove .termcap.db, but if both exist it probably uses the .db one
-
RhodiumToad
klu123: so there is a way but it's a bit weird? and may require writing a tiny program
-
RhodiumToad
klu123: do you expect new directories to be created in the new location, or not?
-
klu123
RhodiumToad: I expect new dirs to appear in the old location, and expect them to show up in the new location. e.g., /data/D101 is created. Then it'll show up as /data_new/D101
-
RhodiumToad
ok
-
RhodiumToad
so what you can do is this: nullmount /data to /data_new, and then nullmount a tiny filesystem on top of that using -o union (which is not the same thing as unionfs so doesn't have the bugs),
-
RhodiumToad
and then create whiteouts on the upper filesystem to hide the dirs that you don't want to be visible
-
RhodiumToad
however, for uncertain reasons there seems to be no standard tool to create those
-
RhodiumToad
(some scripting languages can do it)
-
RhodiumToad
actually you can use another nullmount for the whiteouts, that works too
-
klu123
RhodiumToad: thanks. how do I do whiteouts on the upper layer?
-
RhodiumToad
making a whiteout outside of unionfs operations requires root privs, and is done by calling mknod("path",S_IFWHT,0); from C or the equivalent
-
RhodiumToad
but the mknod utility doesn't support it
-
klu123
Oh I see. that's why you said no standard tools
-
RhodiumToad
scripting languages that have an FFI can do it, I used guile for testing
-
klu123
Got it
-
klu123
Interesting! Yeah I think I can give it a try :)
-
klu123
can I just have one nullmount /data -> /data_new, and do the whiteout there?
-
RhodiumToad
no, because the whiteout has to be stored somewhere
-
RhodiumToad
and the nullmount has no storage of its own
-
RhodiumToad
I can show you my test if you like
-
klu123
yeah that'd be great! thanks RhodiumToad
-
RhodiumToad
are you using zfs, btw, or ufs? my test was on ufs
-
klu123
zfs
-
RhodiumToad
as far as I know it should work with the lower filesystem being zfs, but I don't know if zfs supports whiteouts
-
RhodiumToad
so the upper filesystem might have to be ufs, but it could be a tiny ufs filesystem backed by a file or vdev
-
RhodiumToad
dpaste.org/JmDS5 # that's a transcript of what I did; the guile script thing is just how I created whiteouts for D01 and D02
-
VimDiesel
Title: dpaste/JmDS5 (Plain Code)
-
RhodiumToad
(unfortunately -o union doesn't have an equivalent of unionfs's -o below, so the new mountpoint dir can't be used to store the whiteouts)
-
klu123
RhodiumToad: great! thanks for the example!
-
klu123
RhodiumToad: also thinking of an alternative using unionfs - does it support whiteout? also if I used a RO nullfs as unionfs lower layer, will unionfs be buggy enough to corrupt my filesystem?
-
RhodiumToad
most likely bugs with unionfs would be locking issues
-
klu123
I don't care much about the upper layer being corrupted
-
RhodiumToad
I've heard reports of people using it with success, but the warning in the manpage is there for good reason
-
RhodiumToad
I think corruption would be unlikely if the lower layer is readonly
-
klu123
yeah man page section is quite scary
-
klu123
ok
-
RhodiumToad
whiteouts are fundamental to how unionfs works; it creates a whiteout automatically in the upper layer when you delete something that exists in the lower layer only
-
klu123
I might not use it correctly, but when I do `touch test1/foo; mount -t unionfs test2 test1`. Then `rm test1/foo` I got "rm: foo: Operation not supoprted".
-
RhodiumToad
what fbsd version?
-
RhodiumToad
oh, and is test2 on zfs? because as I said before, zfs might not support whiteouts
-
klu123
That's a bit embarassed to say lol, but I got 11.4 RELEASE lol
-
klu123
yeah the whole system is on zfs
-
RhodiumToad
for testing, you can make a small ufs filesystem using e.g. mdconfig -t swap -s 128MB and then newfs -O2 /dev/mdN where the device is whatever mdconfig said
-
RhodiumToad
then mount /dev/mdN somewhere
-
RhodiumToad
to keep it around permanently, you'd probably want to create a zvol and use that instead of the md
-
klu123
RhodiumToad: yeah that makes sense! Thanks for the pointer. Let me try...
-
klu123
yeah having a ufs upper layer seems to work
-
RhodiumToad
apparently there's an undelete() syscall that can remove a whiteout, but I don't think any tool exists to issue it
-
RhodiumToad
oh wait, there's rm -W
-
klu123
sorry, how does that help in my case?
-
RhodiumToad
just in case you need to undo the effect of an rm command that hid a lower-layer file
-
klu123
ah, I see! Makes sense :)
-
klu123
OK, lol, just tried rm -W it works :)
-
klu123
quite useful when testing it out, otherwise I'll need to pave the partition somehow
-
justmike80386
I'm trying to setup an ipv6 router. I have a 2600:* IP for my WAN interface. Should the LAN interface have a global IPv6 address too?
-
klu123
RhodiumToad: btw, is there a way to list all the whited out inodes ?
-
klu123
oh OK, ls -W can display whiteouts
-
eoli3n
hi
-
eoli3n
i can't load a fusefs
-
eoli3n
when I : kldload fuse, i get "kldload: can't load fuse: No such file or directory"
-
Erhard
kldload fusefs
-
eoli3n
-
VimDiesel
Title: Veracrypt, FreeBSD 13 and FuseFS: can't load fuse – Luca Ferrari – Open Source advocate, human being
-
Erhard
You need to access lvm ?
-
Erhard
Cuz then you also need kldload /boot/kernel/geom_linux_lvm.ko # This will make /dev/linux_vm appear
-
eoli3n
fixed
-
eoli3n
nop a borg backup
-
Erhard
Cool
-
eoli3n
repositoy
-
eoli3n
borg backup repository
-
Erhard
Cheers
-
klu123
One more issue after making unionfs with whiteout works: now I want to mount the unionfs to be available inside a jail "X". So in /etc/fstab.X, I added the unionfs mountpoint /data_new to /usr/jails/X/data_new, as nullfs ro. However, when listing /usr/jails/X/data_new with ls, it tries to list all the whiteout items, and complain aobut "no such file or directory"
-
klu123
This has nothing to do with jail, but something to do with mounting a nullfs on top of a unionfs. To repro, first, create a unionfs with whiteouts at /data_new. Then `mount -t nullfs /data_new /data_new2`. Then `ls /data_new2`.
-
klu123
RhodiumToad: wondering if you have any insight on above issue? Thanks!
-
RhodiumToad
uh. haven't tried mounting nullfs over unionfs.
-
klu123
RhodiumToad: ok thanks! It seems that I worked it around by stacking another unionfs on top unionfs, instaed of nullfs on top of unionfs.
-
RhodiumToad
oooookay
-
RhodiumToad
at this point you're way beyond the "beware of dog" sign, so I'm curious whether this ends up working or whether it locks up under load
-
klu123
lol
-
klu123
yeah I seem to have gotten a kernel panic with nullfs lock blah blah
-
RhodiumToad
(some humourless person edited that part of the warning out of the manpage at some point, but it's still there in older versions)
-
klu123
I read the flashing warnings in the man page somwhere. I did enjoy it ;)
-
RhodiumToad
this is why in my tests I used -o union :-)
-
RhodiumToad
it would be really nice if unionfs could be fixed, though.
-
klu123
RhodiumToad: yes, that would be highly desirable!
-
meena
klu123: oh? What kind of kernel panic?
-
nerozero
Hello there
-
nerozero
I have an issue with mysql and radius...
-
nerozero
while restarting mysql-server takes some time to do its internal maintenance ( idk but it takes ~1-2 minutes to finish )
-
nerozero
the radiusd rc contain string : # REQUIRE: NETWORKING SERVERS mysql
-
nerozero
but in my guess service listed as started while mysql still not provide a listening socket ...
-
nerozero
which makes radiusd service to fail at startup
-
nerozero
is there a workaround to this issue ?
-
RhodiumToad
right, rc considers REQUIRE to be satisfied as soon as the providing rc script finishes, which usually just means whatever daemon is started, not that it's ready to provide service
-
nerozero
RhodiumToad, is there a way to make startup delayed somehow ?
-
nerozero
I don't like the idea of polling each minute or so radius service status and restart then
-
RhodiumToad
delaying rc scripts by a long time is a very bad idea
-
nerozero
I have no other ideas
-
nerozero
polling every 10 sec if port / socket is available and then restart service
-
qmr
all my da* disappeared?
-
qmr
ls: /dev/da*: No such file or directory
-
qmr
rsync over ssh too slow. and I can't quickly figure out rsyncd though I did it in past. and arcfour not installed. and -c 0 or no not helping much. so trying to mount sd card w photos on server directly
-
qmr
mac doesn't want to rsync to the locally mounted samba gives a bunch of errors
-
qmr
tried two different card readers
-
qmr
(probe0:umass-sim0:0:0:0): CAM status: Auto-Sense Retrieval Failed (probe0:umass-sim0:0:0:0): Error 5, Unretryable error (da0:umass-sim0:0:0:0): fatal error, failed to attach to device
-
qmr
that's on the newer one. seems bad
-
qmr
usb_msc_auto_quirk: UQ_MSC_NO_TEST_UNIT_READY set for USB mass storage device Norelsys NS1081 (0x2537:0x1081)
-
_xor
nerozero: I haven't used MySQL/MariaDB in a long time (aside from services that require them), but I think I remember there being an event hook that is triggered when the server is ready to respond to queries. I'd imagine you could use that to start radiusd (or restart it).
-
_xor
or send SIGHUP, etc.
-
qmr
da0: <Kingston FCR-HS219/1 9722> Removable Direct Access SCSI device is the other one, older usb2 reader. doesn't want to mount
-
nerozero
_xor, thanks
-
RhodiumToad
qmr: do they show up in usbconfig?
-
nerozero
qmr, rsync slow ???
-
qmr
nerozero: yes. like 12-13mbyte/s. the wifi is much faster.
-
nerozero
qmr, I have a gigabit network and somehow it can utilize its fully
-
qmr
RhodiumToad: stil have the newer one plugged in yes it's there. tha'ts cute it shows current for each port nifty
-
nerozero
its highly dependent to a file size
-
nerozero
large files - works faster
-
qmr
nerozero: mostly video files
-
_xor
What file system is the card formatted with?
-
nerozero
you can also use sshfs
-
qmr
fat32
-
RhodiumToad
are you sure it's fat32 and not exfat?
-
qmr
would be nice if mac and samba would get along. my next try was going to be nfs maybe
-
qmr
I think so? camera splits at 4gb. but I can check
-
nerozero
sshfs / scp
-
RhodiumToad
and how did you try to mount it?
-
qmr
not sure why that would be faster than rsync over ssh but I could try. I prefer rsync to know for sure transfer was complete too
-
nerozero
12mb is OK speed for a usb thumb drive
-
RhodiumToad
not on usb3 it's not
-
nerozero
qmr it would be the same speed
-
_xor
What error are you getting with rsync? I've found that flags like --no-owner --no-group --noperms helps when there's a feature mis-match between the src and dst file systems (that's assuming you don't need those to be set though).
-
nerozero
use a gstat to see which drive is fully used
-
nerozero
in case of high fragmentation and low space ZFS can become very slow
-
qmr
RhodiumToad: mount with a bunch of args. got not ready or read only
-
nerozero
low free space
-
nerozero
and test destination drive is not a SMR drive
-
_xor
RhodiumToad: I was reading recently that, practically speaking, USB2 is going to be way more reliable than USB3 due to real-world implementation differences between hardware (couldn't follow the full article/comments as it was beyond my USB-specific knowledge). Not saying it applies in this case here being discussed, but that sticks in the back of
-
_xor
my head now as something to consider. Not sure how true it is though.
-
RhodiumToad
qmr: if the device is read-only, did you include the -o ro or -o autoro option?
-
qmr
_xor: something about extended permissions or something? rsync: failed to set permissions on "/Volumes/media/incoming/Downloads/20190817_130032.jpg": Invalid argument (22)
-
qmr
RhodiumToad: -o ro yes
-
RhodiumToad
the usb card readers I have present two separate da* devices, one for each slot (sd and microsd)
-
_xor
qmr: If you don't need or care about the permissions, then try --no-perms --no-owner --no-group.
-
nerozero
qmr this is on in case of fat
-
RhodiumToad
qmr: can you show the exact mount command and the exact error please
-
nerozero
and also consider that in heavy use Flash memory become unusable and slow
-
qmr
it's not an issue with the card, it transfers quickly fine
-
qmr
RhodiumToad: shouldn't there be /dev/da something?
-
qmr
(da0:umass-sim0:0:0:1): fatal error, failed to attach to device
-
nerozero
qmr, this is obviously a hardware issue
-
nerozero
somehow USB cannot be properly attached
-
RhodiumToad
try resetting the device with usbconfig
-
qmr
went back to the usb2 reader this time I put the reader in for a moment, then put the card in some moments after. it shows a bunch of da*, one of which has a 119G storage
-
qmr
[root@frisbee /media]# mount -t msdosfs /dev/da1s1 sd/ | mount_msdosfs: /dev/da1s1: Invalid argument
-
RhodiumToad
fstyp /dev/da1s1
-
qmr
ooh it's exfat
-
nerozero
:)
-
qmr
dunno why camera splits files then
-
qmr
fusefs-exfat-1.4.0 <- ? -t exfat doesn't work
-
RhodiumToad
yes, you need that package
-
RhodiumToad
(and use mount.exfat-fuse)
-
qmr
oh I did mount.exfat
-
RhodiumToad
same thing, just a symlink
-
qmr
waiting for this to hit a video file to see what kind of throughput I'm getting. I have a small usb3 card from a dumpster PC to put in server I could use the usb3 reader then maybe
-
qmr
30-35mbyte/s. but getting a lot of scary warning messages
-
RhodiumToad
what messages?
-
qmr
seems it's choking on any video file
bsd.to/v3NT
-
VimDiesel
Title: dpaste/v3NT (Plain Text)
-
_xor
omg, host doesn't support a port argument?
-
» _xor sighs
-
node1
hi
-
node1
I am new to freebsd. Which iso is best for laptop
-
nerozero
whioch USB3 are you using, try the one located directly on motherboard
-
node1
I meant is there any stable version of beta version exist?
-
V_PauAmma_V
node1, 13.2. 12.4 won't be supported past the end of 2023.
-
node1
So which is good for me? i am planning to switch from linux to freebsd.
-
nerozero
qmr, I recall I had some issues with USB3 ~ a year ago, USB3 doesn't recognized any devices while some other usb ports has been plugged in ...
-
nerozero
it was on a Asus motherboard
-
nerozero
just in case
-
V_PauAmma_V
node1, what CPU does your laptop have?
-
node1
It's AMD
-
V_PauAmma_V
-
RhodiumToad
I'd use the memstick or mini-memstick image myself
-
nerozero
Write to memstick, Change volume mount option to RW, and now you have full functional live system :)
-
RhodiumToad
for small values of "functional"
-
nerozero
ok ok :)
-
nerozero
Quite useful when system fails, can contain OpenVPN which allows to connect directly to remote server automatically
-
nerozero
then it is possible to ask someone to just boot from a stick - and suddenly you have full access to a remote machine
-
nerozero
A dead machine
-
V_PauAmma_V
RhodiumToad, so would I, if it were me doing the install.
-
_xor
Given a command pipeline, what would be the "correct" way to format stdin for one of those commands and pass it on to stdout? I'm looking at possible ways to do it with print, sed, awk, etc.
-
_xor
Basically, I'm doing a DNS lookup and the command outputs JSON, but it's loosely valid. It's not wrapped in an array, just newline delimited objects. I need to wrap the whole thing into an array.
-
V_PauAmma_V
So you'd need to start the array, maybe add a separator like ',' after each element, and end the array?
-
V_PauAmma_V
I'd use awk if so. BEGIN {...} and END {...} for the array start and end, and a patternless action for the added element delimiter if any.
-
V_PauAmma_V
Or perl, if that's in your "etc".
-
nerozero
_xor, python dns lookup and then serialize to json ?
-
nerozero
or maybe even php if already installed
-
nerozero
in python: socket.getaddrinfo
-
nerozero
or socket.gethostbyname / socket.gethostbyname_ex
-
meena
_xor: i think libucl, and by extension uclcmd, might be able to deal with that
-
meena
uclcmd is like jq for ucl. ucl can read things that are json, but also things that are *like* json (which UCL is.
-
Demosthenex
hrm. so "ifconfig wlan0 list scan" says that my AP has a -79 signal, and -96 noise... which doesn't sound great. but wifianalyzer on my android phone right next to my laptop says -60 dbm
-
Ronis_BR
Hi! I managed to pass my GPU card to a bhyve machine. I installed the drivers and have video output. However, I also need a mouse and keyboard. Can Bhyve pass a single USB device to the virtual machine? I cannot pass my entire controller because when I do this, the machine freezes.
-
davisr
Ronis_BR, I found it easier to get a dedicated PCI USB card for passthrough.
-
Ronis_BR
davisr: hum, thanks! Unfortunately this is not an option for me. The server is under warranty period and we cannot open it :(
-
davisr
Ronis_BR, oof. Maybe just VNC into the virtualized guest?
-
Ronis_BR
davisr: but if I VNC, how can I see the video output by the GPU?
-
Ronis_BR
oh, maybe RDP!
-
davisr
Ronis_BR, I guess that would depend on your guest OS. Usually, one can configure a VNC server to attach to an existing display. But since you said RDP, I'm guessing your guest is Windows?
-
Ronis_BR
davisr: yes, it is!
-
davisr
Ronis_BR, I'm not familiar with Windows (yuck) but I'm pretty sure it wouldn't render a separate desktop. You could just RDP or VNC into it, and it would render the screen via GPU and mirror its output.
-
Ronis_BR
davisr: the problem is that now I have two video cards. I need to disable the one created by bhyve
-
davisr
Ronis_BR, but I would recommend against wasting your time with passing through a specific USB device.
-
Ronis_BR
davisr: yes, I see this will be bad. I really prefer to use remote desktop if I managed to do this
-
Ronis_BR
davisr: do you know if there is plans to support individual USB pass to the VM?
-
Ronis_BR
davisr: will this work:
-
Ronis_BR
-
VimDiesel
Title: Placa Usb 3.0 Pci Express 1x Pc Computador 4 Portas Saidas | MercadoLivre
-
davisr
Ronis_BR, I don't think bhyve is designed to do individual USB passthru, only PCI. I will advise that not all USB cards work! I had to try a few different ones. Mine uses the ASM1142 chipset.
-
Ronis_BR
thanks!
-
redlegion
Someone in #alacritty told me my terminfo problem is an issue with ncurses dependency (base versus port) and I'm sad about it because he was right.
-
redlegion
installed zsh/tmux/ncurses from pkg and nothing really behaved as expected. installed zsh/tmux/ncurses from ports and everything works great.
-
nero
ncurses or terminfo data?
-
redlegion
nero: no amount of invoking `tic` would convince my terminal that `alacritty` was a valid configuration until I installed everything from the ports tree.
-
Ronis_BR
davisr: the RDP is working perfectly! I just needed to change graphics option to NO in vm-bhyve after the installation.
-
Ronis_BR
davisr: thanks for the help!
-
Demosthenex
so i'm familiar with file reporting tools for deduplication like fdupes, or just manual md5 comparisons. anyone know a tool to compare two directory trees and identify the duplicates/differences?
-
Demosthenex
i really think several whole directory trees are duplicates, so telling me 10k files in each are dupes doesn't help, i need to summarize by parent dir
-
V_PauAmma_V
Do duplicates in your use case have the same filenames (even if different parent directories)? Or do you also need to spot that foo/bar and baz/quux are duplicates?
-
Demosthenex
V_PauAmma_V: frequently yes
-
V_PauAmma_V
Frequently the latter, you mean?
-
Demosthenex
most of the filenames are similar, yes
-
Demosthenex
i have 3-4 copies that diverged of a directory tree of a few gb and 10k files each
-
Demosthenex
trying to merge
-
V_PauAmma_V
I'd start by postprocessing "diff -Nqrs", then.
-
_xor
"You can not have the same branch checked out in multiple worktrees." - gah, is that still true about git?
-
Beladona
Hard luck doing a simple thing. There is no "working way". How exactly do I change mouse pointer to be bigger in size in freebsd + awesomwm?
-
qmr
so, the reason for shit rsync over ssh was actually because I went to wpa1 + 2 and I guess that disables channel steering? so I was connecting at 2.4ghz instead of 5ghz. I think I will switch to 2 ssids
-
qmr
~40mbyte/s now which is ... acceptable I guess
-
qmr
discovered something else funny though iperf to local server is worse than internet speed test by a lot. going to need to look into that
-
qmr
be nice if I could get that card reader to work properly and do an auto ingest setup. plug card reader in then get an alert when ingest is complete then sort the files
-
qmr
regading the usb3 card reader saw some issues about usb "quirks" on bugzila with that model