RE: FreeBSD 10.4-BETA1 Now Available

2017-08-20 Thread vermaden
wcomer can tell the difference? Regards, vermaden ___ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

sdhci_pci0-slot0: Got data interrupt 0x00600000, but there is no active command.

2015-07-07 Thread vermaden
indicated: 1 Timeout Regards, vermaden ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

Re: devd(8) based AUTOMOUNTER (version 1.3)

2012-03-12 Thread vermaden
Welcome ;) "army.of.root" pisze: > Thanks for sharing ! > > Reads awesome. > Even with exFAT integration, my new goto "external disk fs" :) > > best regards > > On Sun, Mar 4, 2012 at 10:49 AM, vermaden wrote: > > Already at 1.3.1 ... > &

Re: devd(8) based AUTOMOUNTER (version 1.3)

2012-03-04 Thread vermaden
Already at 1.3.1 ... Fixed the 'detach' section (s/PREFIX/MNTPREFIX/g). Fixed removing directories of manually (properly) unmounted filesystems. "vermaden" pisze: > Hi, > > after some 'fun' with MP3 players I have made some modifications and fixe

devd(8) based AUTOMOUNTER (version 1.3)

2012-03-04 Thread vermaden
h' section, now removes only directory that is unmounted (if enabled of course). Simplified FAT/NTFS sections, removed additional check as it break some MP3 players default filesystems automount. The latest 1.3 version can be found here as usual: https://github.com/vermaden/automount

Re: devd based AUTOMOUNTER

2012-02-29 Thread vermaden
ng. but if you > make some changes in the cam/scsi|ata/atapi - it will work ... I would love to, but I have absolutely no idea how to do that ;) Regards, vermaden ... ___ freebsd-stable@freebsd.org mailing list

Re: devd based AUTOMOUNTER

2012-02-29 Thread vermaden
"Ian Smith" pisze: > On Tue, 28 Feb 2012, vermaden wrote: > > "Andriy Gapon" pisze: > > > on 29/02/2012 00:04 vermaden said the following: > > > > "Andriy Gapon" said: > > > >> on 28/02/2012 17:26 Alexander Leidi

Re: devd based AUTOMOUNTER

2012-02-28 Thread vermaden
"Andriy Gapon" pisze: > on 29/02/2012 00:04 vermaden said the following: > > "Andriy Gapon" said: > >> on 28/02/2012 17:26 Alexander Leidinger said the following: > >>> The kernel does not poll for CD changes, and the people guarding the > &g

Re: devd based AUTOMOUNTER

2012-02-28 Thread vermaden
thing changes that ... so adding appreciate events like "MEDIA INSERTED" and "MEDIA REMOVED" to cd* class should be enought to handle them and mount/umount the medium with script like mine with appreciate devd(8) config. Regards, vermaden

Re: devd based AUTOMOUNTER

2012-02-27 Thread vermaden
tired to figure that out yesterday :( > Thanks for you work on this. I'm looking forward to seeing it as a port. Welcome, I finally submited the port, here is the PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/16

Re: devd based AUTOMOUNTER

2012-02-27 Thread vermaden
;; (0 DISK cd0 * * hd 0 sc 0) echo "We have CD here!" # do something about it lile mount_cd9660 ;; esac done But a devd(8) event would be far better, maybe some somple commit to devd(8) would help here? My knowledge does not allow me to add these bits to devd(8).

Re: devd based AUTOMOUNTER

2012-02-27 Thread vermaden
on is available here: https://github.com/vermaden/automount/ An example usage display: % automount --help AUTOMOUNT is a devd(8) based automounter for FreeBSD. It supports following file systems: UFS/FAT/exFAT/NTFS/EXT2/EXT3/EXT4 It needs these

Re: devd based AUTOMOUNTER

2012-02-21 Thread vermaden
Hi, I have created a PORT at last, its in the 'port' directory in the usual place: https://github.com/vermaden/automount/ Its my first PORT so feel free to bash me about my mistakes ;) After latest 'commits' I think that its ready for day-to-day use. To make 'full

Re: devd based AUTOMOUNTER

2012-02-20 Thread vermaden
-up in config file manager (Yes, like in Windows ;p). These are options that I currently successfully use for NAUTILUS file manager, You need to set-up all three of them to make it work. | POPUP=YES | FM="nautilus --browser --no-desktop" | USER=vermaden My whole config looks like that

Re: devd based AUTOMOUNTER

2012-02-20 Thread vermaden
. Currently there is no knows bugs, but the prepared earlier 'workaround functions' remain just in case. As I written before its now available here: https://github.com/vermaden/automount Regards, vermaden --- ___ freebsd-st

Re: devd based AUTOMOUNTER

2012-02-20 Thread vermaden
written by Andriy Gapon ... > Hey, this seems like a quite nice tool. > Can you create a web-page and/or port for it? > It would be more convenient to follow its development that way. > Thank you! Sure, its now available here, I will try to create port later: https://github.

Re: devd based AUTOMOUNTER

2012-02-20 Thread vermaden
X="/media" LOG="/var/log/automount.log" STATE="/var/run/automount.state" ENCODING="en_US.ISO8859-1" CODEPAGE="cp437" DATEFMT="%Y-%m-%d %H:%M:%S" USERUMOUNT="NO" --- /usr/local/sbin/automount.sh

Re: devd based AUTOMOUNTER

2012-02-19 Thread vermaden
ks for working on it. It works great for me, thanks! Thanks, good to know ;) > I have a question, could you export a fusefs-exfat or > fusefs-ntfs share directory over NFS? I can't get it work. > If you have a solution, please let me know, thanks. I will try to do that tomorrow ane l

Re: devd based AUTOMOUNTER

2012-02-18 Thread vermaden
ARGET=$( echo "${MOUNT}" | grep -E "^${PROVIDER} " | awk '{print $3}' ) [ -z ${TARGET} ] && { __state_remove ${MNT} ${STATE} ${LINE} continue } umount -f ${TARGET} & unset TARGET

Re: devd based AUTOMOUNTER

2012-02-17 Thread vermaden
Latest version with additional checks for NTFS and FAT32, to be precise, for NTFS filesystem with label "FAT" and for FAT filesystem with label "NTFS" ;) #! /bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin LOG="/var/log/automount.log" STATE="/var/run/automount.state" DATE

Re: devd based AUTOMOUNTER

2012-02-17 Thread vermaden
... even newer version, seems to have all 'problems' fixed now ;) #! /bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin LOG="/var/log/automount.log" STATE="/var/run/automount.state" DATEFMT="%Y-%m-%d %H:%M:%S" __create_mount_point() { # /* 1=DEV */ MNT="/mnt/$( basename

Re: devd based AUTOMOUNTER

2012-02-17 Thread vermaden
es? The filesystem label is not used at all, I just use device names, which are reported by FreeBSD, so quite bulletproof here and then create appreciate /mnt/da0s1 directories. > Can I use the automounter to either mount over another mount to > impersonate it, or can I overwrite arbitrar

devd based AUTOMOUNTER

2012-02-17 Thread vermaden
ER} " | awk '{print $3}' ) [ -z ${TARGET} ] && { __state_remove ${MNT} ${STATE} ${LINE} continue } umount -f ${TARGET} & unset TARGET __state_remove ${MNT} ${STATE} ${LINE} __log "${DEV}:umount" done < ${

8.2-STABLE: /dev/da* device is not created after attaching digital camera SONY DSC-S60

2011-07-21 Thread vermaden
T 2011 root@e6400:/usr/obj/usr/src/sys/GENERIC amd64 The hardware is Dell Latitude E6400 if that helps. Regards and thanks in advance, vermaden Najwieksza baza samochodow nowych i uzywanych Sprawdz >> http://link

Re: 8.2-STABLE: audio stopped working properly after upgrade to today's sources

2011-07-04 Thread vermaden
I have found a sollution, here: http://forums.freebsd.org/showpost.php?p=73828&postcount=3 To be precise, this solved my problem: # sysctl hw.snd.default_unit=1 Sorry for needless CC's. Regards, vermaden Regards and sorry for "Jeremy Chadwick" pisze: > On Mon, Jul

dell latitude 13

2011-07-04 Thread vermaden
aht hardware works like a charm, with i915.ko driver for GMA 4500 and if_iwn.ko for the wireless 5100 chip. Regards, vermaden -- Kredyt gotowkowy nr 1! Teraz do 150 000zl bez zaswiadczen! http://link

8.2-STABLE: audio stopped working properly after upgrade to today's sources

2011-07-04 Thread vermaden
hardware. I did not done any modifications to GENERIC config, just build it 'as is'. Thanks in advance for any help, vermaden Generally: Dell Latitude E6400 (laptop) % uname -a FreeBSD e6400 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Jul 4 09:34:04 CEST 2011 root@e6400:/usr/obj/usr/src/s

OpenIndiana code improovements that may be used in FreeBSD

2010-12-08 Thread vermaden
Hi, If you know about these, the forge These include for example improoved printf command: http://gdamore.blogspot.com/2010/12/zfs-should-not-depend-on-python-and.html ... and python-free ZFS commands: http://gdamore.blogspot.com/2010/10/new-implementation-of-printf.html "FreeBSD folks, you migh

OpenIndiana code improovements that may be used in FreeBSD

2010-12-08 Thread vermaden
vements if they like." Regards, vermaden ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

Re: ports/139483: x11-fm/thunar name is in lowercase while package name is in uppercase

2010-06-08 Thread vermaden
kind of annoucement). 2. Create BOTH lowercase/UPPERCASE/Various packages names both in ports (metaports) and packages (will take disk space), for some time and ANNOUNCE in RELEASE NOTES, that these 'other then

Re: sysctl debug.cpufreq.highest

2008-11-09 Thread vermaden
Thank You mate. Works like a charm, why not merge it into STABLE and CURRENT branches? I assume that STABLE is currently frozen 'cause of the RELEASE process, but such a small (and tested as 'lowest') change should fit into RELEASE. Regards vermaden > I've rolled a patc

sysctl debug.cpufreq.highest

2008-11-07 Thread vermaden
of cpu. Regards vermaden -- Dzwon taniej na zagraniczne komorki! Sprawdz >> http://link.interia.pl/f1f6a ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/m

Intel G965 / x3000 does not work

2008-02-02 Thread vermaden
with errors /var/log/Xorg.0.log --> http://pastebin.com/m2223621f %cat /etc/hosts ::1 localhost vermaden vermaden.go.pl 128.0.0.1 localhost vermaden vermaden.go.pl %cat /etc/rc.conf font8x14="iso02-8x14" font8x16="iso02-8x16" font8x8="iso02-8x8"

FreeBSD 7 on old SMP server?

2007-12-14 Thread vermaden
people.freebsd.org/~kris/scaling/p3.png Regards vermaden -- Graj za darmo! Wejdz do swiata wojny wampirow! http://link.interia.pl/f1cb6 ___ freebsd-stable@freebsd.org mailing list h

ASUS P5B-MX [946GZ/GMA 3000] does not work with Intel driver

2007-09-27 Thread vermaden
Identifier "Monitor0" HorizSync30.0 - 83.0 VertRefresh 55.0 - 75.0 Option "DPMS" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor"Monitor0" DefaultDepth 24

6.2-STABLE does not lauch 2nd core of Pentium e2160 CPU

2007-09-26 Thread vermaden
nfig is just include GENERIC + options SMP and I copied it to /root/CUSTOM, then links to ../conf and build. SOLVED in short words. Thanks and regards vermaden -- Jak nasze "Zlotka" wygraly

6.2-STABLE does not lauch 2nd core of Pentium e2160 CPU

2007-09-25 Thread vermaden
a0: at port 0x3c0-0x3df iomem 0xa-0xb on isa0 Timecounter "TSC" frequency 1800011043 Hz quality 800 Timecounters tick every 1.000 msec acd0: CDROM at ata2-slave PIO4 ad8: 152627MB at ata4-master SATA150 Trying to mount root from ufs:/dev/ad8s1a Regards vermaden ---