Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
On Saturday 30 May 2009 17:01:17 Prokofyev Vladislav wrote: > > The named running chrooted has no clue about /var/named. You can either > > use ducttape: > > cd /var/named/var && sudo ln -s .. named > > > > or just strip /var/named from your config file, hence use > > /var/log/xfer.log. > > > > -- > > Mel > > This helped, thank you a lot. > So, if I think in a right way, /usr/sbin/named with -t start option don't > effect on any symlinks etc. Erm, yes or ... no. I suggest you read up on chroot. The short answer is that relative symlinks within the chroot environment work while absolute ones should take into the account the new filesystem root. > I didn't pay attention to this cause named(8) > says: > > -t directory > Chroot to directory after processing the command line arguments, > but before reading the configuration file. and have a look at what /etc/namedb really is: # ls -l /etc/namedb lrwxr-xr-x 1 root wheel 21 May 21 06:24 /etc/namedb -> /var/named/etc/namedb And this demonstrates chroot a bit: # cp /rescue/ls /var/named/ # chroot /var/named /ls -l /etc/namedb total 1 drwxr-xr-x 2 53 0512 Feb 28 05:57 dynamic drwxr-xr-x 2 0 0512 May 15 13:42 master -rw-r--r-- 1 0 0 11714 May 15 14:40 named.conf -rw-r--r-- 1 0 0 2956 May 15 13:42 named.root -rw--- 1 53 0 97 Apr 18 10:29 rndc.key drwxr-xr-x 2 53 0512 May 30 11:21 slave > Warning: This option should be used in conjunction with the > -u option, as chrooting a process running as root doesn't > enhance security on most systems; the way chroot(2) is > defined allows a process with root privileges to escape a > chroot jail. > > And I thought that all actions for proper work are made by named :) They are, you just need reference the right path, the one without /var/named, or use relative paths where the working directory is /etc/namedb. So one would get to /var/log using: file "../../var/log/xfer"; -- Mel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
> > named_enable="YES" > named_program="/usr/sbin/named" > named_chrootdir="/var/named" > > -Mike > > After adding these options on my system, named didn't start at boot. Manully attempt to start it via '/etc/rc.d/named start' brought to the following error: /etc/rc.d/named: WARNING: run_rc_command: cannot run /usr/sbin/named Anyway, thank you for time you've spent to write an answer. Hope this thread will help somebody who is stuck with the same problem. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
Prokofyev Vladislav wrote: > Hello, > > I have setup FreeBSD recently, can somebody help me with one interesting > thing - Bind9 slave DNS server, everything is works great, but I got a > problem with extended logging of xfer, etc. > Bind9 started in chroot: > > root 7880.0 0.1 3156 1004 ?? Ss Fri01AM 0:02.10 > /usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -s > bind30792 0.0 1.2 16212 12864 ?? Is4:10PM 0:00.23 > /usr/sbin/named -t /var/named -u bind > > [snip] > > > Changing permissions and putting log-files in different places (with > changing paths in named.conf of course) has no effect. I see that problem > is pretty silly but searching info about this doesn't say something > special - I still got "file not found" in /var/messages. > Maybe Iam don't understand where files must be placed, so, thanks in > advance for everybody who can explain how it works :) > Don't know if this will help, but took a quick look at my box here at home and have the following in my rc.conf - but I don't have logging turned on with this machine. Note the last line. So the logs should be in /var/named/var/log named_enable="YES" named_program="/usr/sbin/named" named_chrootdir="/var/named" -Mike ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
On Saturday 30 May 2009 14:50:31 Prokofyev Vladislav wrote: > Bind9 started in chroot: > > root 7880.0 0.1 3156 1004 ?? Ss Fri01AM 0:02.10 > /usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -s > bind30792 0.0 1.2 16212 12864 ?? Is4:10PM 0:00.23 > /usr/sbin/named -t /var/named -u bind > > > Configuration of logging channels from named.conf: > > logging > { > > channel "xfer" > { > > file "/var/named/var/log/xfer.log" versions 3 size > 10m; The named running chrooted has no clue about /var/named. You can either use ducttape: cd /var/named/var && sudo ln -s .. named or just strip /var/named from your config file, hence use /var/log/xfer.log. -- Mel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
FreeBSD 7.0-RELEASE-p12 bind9 log files not found
Hello, I have setup FreeBSD recently, can somebody help me with one interesting thing - Bind9 slave DNS server, everything is works great, but I got a problem with extended logging of xfer, etc. Bind9 started in chroot: root 7880.0 0.1 3156 1004 ?? Ss Fri01AM 0:02.10 /usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -s bind30792 0.0 1.2 16212 12864 ?? Is4:10PM 0:00.23 /usr/sbin/named -t /var/named -u bind Configuration of logging channels from named.conf: logging { channel "xfer" { file "/var/named/var/log/xfer.log" versions 3 size 10m; print-time yes; print-severity yes; severity info; }; channel "lame" { file "/var/named/var/log/lame.log" versions 2 size 10m; print-time yes; print-severity yes; severity info; }; channel "config" { file "/var/named/var/log/conf.log" versions 3 size 10m; print-time yes; print-severity yes; severity info; }; channel "security" { file "/var/named/var/log/security.log" versions 3 size 10m; print-time yes; print-severity yes; severity info; }; category "xfer-in" { "xfer"; }; category "xfer-out" { "xfer"; }; category "notify" { "xfer"; }; category "lame-servers" { "lame"; }; category "config" { "config"; }; category "security" { "security"; }; category "default" { "default_syslog"; "default_debug"; }; }; Next, I've create files in /var/named/var/log and chown them to bind:wheel (cause of -u bind is defined above): [po...@mgork23-gw /var/named/var/log]$ ls -la total 4 drwxr-xr-x 2 bind wheel 512 May 30 16:09 . drwxr-xr-x 6 root wheel 512 May 21 19:16 .. -rw-r--r-- 1 bind wheel0 May 30 14:54 conf.log -rw-r--r-- 1 bind wheel0 May 30 14:55 lame.log -rw-r--r-- 1 bind wheel0 May 30 14:55 security.log -rw-r--r-- 1 bind wheel0 May 30 14:54 xfer.log But I get following messages in /var/log/messages: May 30 16:27:42 srv named[31139]: starting BIND 9.4.2 -t /var/named -u bind May 30 16:27:42 srv named[31139]: command channel listening on 127.0.0.1#953 May 30 16:27:42 srv named[31139]: command channel listening on ::1#953 May 30 16:27:42 srv named[31139]: logging channel 'xfer' file '/var/named/var/log/xfer.log': file not found May 30 16:27:42 srv named[31139]: logging channel 'lame' file '/var/named/var/log/lame.log': file not found May 30 16:27:42 srv named[31139]: logging channel 'config' file '/var/named/var/log/conf.log': file not found May 30 16:27:42 srv named[31139]: logging channel 'security' file '/var/named/log/security.log': file not found May 30 16:27:42 srv named[31139]: running May 30 16:27:42 srv named[31139]: isc_log_open '/var/named/var/log/xfer.log' failed: file not found Changing permissions and putting log-files in different places (with changing paths in named.conf of course) has no effect. I see that problem is pretty silly but searching info about this doesn't say something special - I still got "file not found" in /var/messages. Maybe Iam don't understand where files must be placed, so, thanks in advance for everybody who can explain how it works :) VP v.prokof...@gmail.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
nomachine on Freebsd 7.0-release 64-bit & in a jail
It appears that the both the FreeNX port and the binary nomachine nxserver ports are both broken and fail to compile. I'm still trying to get nxserver 3 "free forever" edition to work. So far I've made some mods to it's install scripts but I'm bumping up against a strange licensing error (there is no license for the free edition). Before I bang my head on this much longer, has anyone else gotten Nomachine's version 3 server working on FreeBSD 7? How about in a jail? How does one mount linprocfs in a jail? Mark ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Closure: Vetting motherboard Gigabyte GA-MA78G-DS3H for FreeBSD 7.0-RELEASE
Frank Shute-2 wrote: > > I've had good luck with anything by Asus and Gigabyte. I tend to avoid > boards with bleeding edge hardware/features as these will not have > received so much testing (and may not even be supported) on FreeBSD. > This in practice means get a board that's been on sale for a bit. > In my research and unwitting trials with this particular motherboard (Gigabyte GA-MA78G-DS3H), I found that, while it is generally well tolerated by FreeBSD 7.1-RELEASE, the onboard RAID is completely incompatible. Even when a RocketRAID 3120 card was used, the RAID could be built, but the ar0 device thus created, did not survive a reboot. Also, a software RAID was attempted -- after a minimal install from CD, the atacontrol command was used to create RAID ar0, then (without rebooting) exiting back to the installer, the OS was loaded onto it; however, upon reboot, ar0 could not be found. In other words, it could not boot from any RAID, whether by software in FreeBSD or by hardware on RocketRAID. The problem stems from the board's Southbridge SB700 chipset (the infamous 700 series). This chipset is not (yet?) supported in FreeBSD. Other notes on this board include the following: -Generic VGA worked. -The onboard LAN (chipset 8111C) worked in 7.1-RELEASE, but not 7.0. -If the SATA ports are put into AHCI or Native IDE modes, individual disks were recognized, but in RAID mode, neither the RAID nor individual disks could be seen. -- View this message in context: http://www.nabble.com/Re%3A-Vetting-motherboard-Gigabyte-GA-MA78G-DS3H-for-FreeBSD-7.0-RELEASE-tp21100783p21591458.html Sent from the freebsd-questions mailing list archive at Nabble.com. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
"David Christensen" writes: > freebsd-questions: > > I'm building a fresh Amanda server using FreeBSD 7.0-RELEASE-i386: > > > http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amand > a-server > > > Most of my software background is GNU/Linux. I would prefer using the > Bash shell, but the default FreeBSD shell for root appears to be the C > shell: > > p3450# echo $SHELL > /bin/csh > > > I have changed the root shell to Bash on another machine I use as a CVS > server and haven't noticed any issues yet, but I've been wondering if > I'm setting myself up for problems by doing so. > > > Does anybody know if it's okay to change the root shell on FreeBSD > 7.0-RELEASE-i386? Assuming you build the shell statically linked, and put it in the root partition, you're unlikely to have any trouble. However: - that is what the "toor" user is for - in my own opinion, anyone who cares what shell root runs is probably spending too much time running as root -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
On Fri, Jan 09, 2009 at 08:46:54PM -0500, Garance A Drosihn wrote: > At 2:09 PM -0800 1/4/09, David Christensen wrote: > > > >I have changed the root shell to Bash on another machine I use as a CVS > >server and haven't noticed any issues yet, but I've been wondering if > >I'm setting myself up for problems by doing so. > > > > > >Does anybody know if it's okay to change the root shell on FreeBSD > >7.0-RELEASE-i386? Why do that? Just create your own root account, put what you want for a shell on that account and use it. Use vipw. Copy the root line and then change the _second_ one to be your own root id- say, Rgad - and make a loging in directory for it. Change the directory part of the pw entry to be that and the the shell to be what you want. Then change the password to be what you want or use some pwvault utility or whatever. Just make sure you specify the second root account (Rgad) when doing so or it will change the real root's password. jerry > > What I do is add the following lines to /root/.login : > > if ($?prompt) then >if ( -x /usr/local/bin/bash ) then > # echo "Switching to bash" > setenv SHELL /usr/local/bin/bash > exec /usr/local/bin/bash -login >endif > endif > > I've been doing this for at least 10 years. I haven't had any > problems with it, but Your Mileage Might Vary. > > -- > Garance Alistair Drosehn= g...@gilead.netel.rpi.edu > Senior Systems Programmer or g...@freebsd.org > Rensselaer Polytechnic Instituteor dro...@rpi.edu > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
At 2:09 PM -0800 1/4/09, David Christensen wrote: I have changed the root shell to Bash on another machine I use as a CVS server and haven't noticed any issues yet, but I've been wondering if I'm setting myself up for problems by doing so. Does anybody know if it's okay to change the root shell on FreeBSD 7.0-RELEASE-i386? What I do is add the following lines to /root/.login : if ($?prompt) then if ( -x /usr/local/bin/bash ) then # echo "Switching to bash" setenv SHELL /usr/local/bin/bash exec /usr/local/bin/bash -login endif endif I've been doing this for at least 10 years. I haven't had any problems with it, but Your Mileage Might Vary. -- Garance Alistair Drosehn= g...@gilead.netel.rpi.edu Senior Systems Programmer or g...@freebsd.org Rensselaer Polytechnic Instituteor dro...@rpi.edu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
On Sun, Jan 04, 2009 at 02:09:03PM -0800, David Christensen wrote: > > freebsd-questions: > > I'm building a fresh Amanda server using FreeBSD 7.0-RELEASE-i386: > > > http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amand > a-server > > > Most of my software background is GNU/Linux. I would prefer using the > Bash shell, but the default FreeBSD shell for root appears to be the C > shell: > > p3450# echo $SHELL > /bin/csh > > > I have changed the root shell to Bash on another machine I use as a CVS > server and haven't noticed any issues yet, but I've been wondering if > I'm setting myself up for problems by doing so. > > > Does anybody know if it's okay to change the root shell on FreeBSD > 7.0-RELEASE-i386? I change my root shell to pdksh. It's statically linked and I copy it from /usr/local/bin to /bin. In single user mode you're prompted for a shell (/bin/sh is the default) so I usually use that. I've never had any problems (famous last words ;) Just have to remember to copy the executable to the root filesystem if your shell gets upgraded. What you don't want to do is overwrite /bin/sh with /bin/bash or anything like that. The boot up scripts depend on /bin/sh and although bash is meant to be Bourne compatible, I wouldn't trust it myself to bring up the system without problems. > > > TIA, > > David Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
On Sun, Jan 4, 2009 at 5:09 PM, David Christensen wrote: > freebsd-questions: > > I'm building a fresh Amanda server using FreeBSD 7.0-RELEASE-i386: > > > http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amand > a-server<http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amanda-server> > > > Most of my software background is GNU/Linux. I would prefer using the > Bash shell, but the default FreeBSD shell for root appears to be the C > shell: > >p3450# echo $SHELL >/bin/csh > > > I have changed the root shell to Bash on another machine I use as a CVS > server and haven't noticed any issues yet, but I've been wondering if > I'm setting myself up for problems by doing so. > > > Does anybody know if it's okay to change the root shell on FreeBSD > 7.0-RELEASE-i386? > > > TIA, > > David > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscr...@freebsd.org" well you will lock yourself out of the system if you uninstall bash or bash breaks. I would enable toor just in case ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
> Does anybody know if it's okay to change the root shell? A topic of debate, but yes it is okay to change the root shell, but there are some things to know... Some people fret about the idea that shells like bash are not on the root partition and are usually dynamically linked to libraries which reside on /usr and are therefore not available in single-user mode. (One could install a static version of bash to avoid this.) Additionally, FreeBSD prompts the user for the path to the desired shell when going into single-user mode. Shells like sh and tcsh, while dynamically linked, their libs reside on the root partition. If that isn't enough, statically linked shells exist in /rescue and therefore should always be available. Furthermore, the installation CD can be booted from and can provide an emergency repair shell. So yes, there is no technical reason you cannot change the root shell. Just be aware that a default bash install will not be available in single-user mode. But... best security practices dictate that you should not be using the root shell. If you're using the root shell often enough to find the default shell inconvenient, you should consider using something like sudo and a regular user account instead. You can use the builtin 'su' command with the '-m' flag to preserve the environment of the current user, while elevating your privileges. The shell used will be the login shell of the user issuing the 'su' command. Only members of the group 'wheel' may issue the 'su' command. -Modulok- On 1/4/09, David Christensen wrote: > freebsd-questions: > > I'm building a fresh Amanda server using FreeBSD 7.0-RELEASE-i386: > > > http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amand > a-server > > > Most of my software background is GNU/Linux. I would prefer using the > Bash shell, but the default FreeBSD shell for root appears to be the C > shell: > > p3450# echo $SHELL > /bin/csh > > > I have changed the root shell to Bash on another machine I use as a CVS > server and haven't noticed any issues yet, but I've been wondering if > I'm setting myself up for problems by doing so. > > > Does anybody know if it's okay to change the root shell on FreeBSD > 7.0-RELEASE-i386? > > > TIA, > > David > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
FreeBSD 7.0-RELEASE-i386 will changing root shell break anything?
freebsd-questions: I'm building a fresh Amanda server using FreeBSD 7.0-RELEASE-i386: http://portsmon.freebsd.org/portoverview.py?category=misc&portname=amand a-server Most of my software background is GNU/Linux. I would prefer using the Bash shell, but the default FreeBSD shell for root appears to be the C shell: p3450# echo $SHELL /bin/csh I have changed the root shell to Bash on another machine I use as a CVS server and haven't noticed any issues yet, but I've been wondering if I'm setting myself up for problems by doing so. Does anybody know if it's okay to change the root shell on FreeBSD 7.0-RELEASE-i386? TIA, David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Vetting motherboard Gigabyte GA-MA78G-DS3H for FreeBSD 7.0-RELEASE
On Thu, Dec 18, 2008 at 09:15:33AM -0800, ThinkDifferently wrote: > > > I'm currently looking for an ATX motherboard that supports the AM2+ socket, > Phenom Quad-Core processor, 4 DDR2 RAM slots (800 MHz is fine), 6 SATA ports > with RAID, and Gigabit LAN. Onboard VGA would be nice. > > It needs to work well with FreeBSD 7.0-RELEASE, using a 2-disk SATA RAID1. > > I'm currently looking at the Gigabyte GA-MA78G-DS3H. > > Has anyone successfully operated 7.0 on this board? > Any booting issues? Did you need to modify the ISO to get it to boot (if so > how)? > Did RAID work? Did it require a special driver to be loaded (if so how)? > > Do any other motherboards fit the bill, given the specifications I give > above? > > I recently got a black eye &-( with the MSI K9N2G Neo-FD, using the GeForce > 8200 (MCP78) chipset. FreeBSD 7.0-RELEASE and CentOS 5.2 wouldn't even boot > on it, no matter what the BIOS config was. Also, Vista wouldn't even > recognize the SATA disks, even if the SATA ports were in IDE, RAID or AHCI > modes (it requires a driver, even if you aren't doing RAID). > -- I haven't used that MB but I am using a Gigabyte GA-P35-DS3L (core2) so I'll offer some general advice since no one else seems to want to! ;) I've had good luck with anything by Asus and Gigabyte. I tend to avoid boards with bleeding edge hardware/features as these will not have received so much testing (and may not even be supported) on FreeBSD. This in practice means get a board that's been on sale for a bit. None of my machines are configured for RAID but as a general point, most on this list use software RAID in the form of geom/geli/gmirror etc. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/geom.html The consensus seems to be that it's just as good as hardware raid performance-wise. There was a thread on this list about it a few months ago. I'd use FreeBSD 7.1-RC1 if I was building a FreeBSD machine today for production purposes as it will be more uptodate with respect drivers for newer hardware and most bugs will have been shaken out this close to release. My compatibilty check for hardware usually consists of going to Google and punching in FreeBSD and the name of the hardware. This usually brings up hits which indicate the level of support. HTH. Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Re: Vetting motherboard Gigabyte GA-MA78G-DS3H for FreeBSD 7.0-RELEASE
ThinkDifferently wrote: > > I'm currently looking for an ATX motherboard... > Sorry, I forgot to mention that I do not need HTPC quality video and sound from this thing. I know the mobo I mentioned has HTPC written all over it, but it's the base qualities (processor, chipset, SATA, etc.) that really count. All I need is basic VGA, and some stereo sound wouldn't be too bad. I don't really care if accelerated video or theater-quality sound output was bad or flaky. I'm going to operate it as a server and plug it into a VGA KVM that has a max resolution of 1024x768. -- View this message in context: http://www.nabble.com/Vetting-motherboard-Gigabyte-GA-MA78G-DS3H-for-FreeBSD-7.0-RELEASE-tp21077043p21077407.html Sent from the freebsd-questions mailing list archive at Nabble.com. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
Vetting motherboard Gigabyte GA-MA78G-DS3H for FreeBSD 7.0-RELEASE
I'm currently looking for an ATX motherboard that supports the AM2+ socket, Phenom Quad-Core processor, 4 DDR2 RAM slots (800 MHz is fine), 6 SATA ports with RAID, and Gigabit LAN. Onboard VGA would be nice. It needs to work well with FreeBSD 7.0-RELEASE, using a 2-disk SATA RAID1. I'm currently looking at the Gigabyte GA-MA78G-DS3H. Has anyone successfully operated 7.0 on this board? Any booting issues? Did you need to modify the ISO to get it to boot (if so how)? Did RAID work? Did it require a special driver to be loaded (if so how)? Do any other motherboards fit the bill, given the specifications I give above? I recently got a black eye &-( with the MSI K9N2G Neo-FD, using the GeForce 8200 (MCP78) chipset. FreeBSD 7.0-RELEASE and CentOS 5.2 wouldn't even boot on it, no matter what the BIOS config was. Also, Vista wouldn't even recognize the SATA disks, even if the SATA ports were in IDE, RAID or AHCI modes (it requires a driver, even if you aren't doing RAID). -- View this message in context: http://www.nabble.com/Vetting-motherboard-Gigabyte-GA-MA78G-DS3H-for-FreeBSD-7.0-RELEASE-tp21077043p21077043.html Sent from the freebsd-questions mailing list archive at Nabble.com. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
problem with IPCS on (FreeBSD 7.0-RELEASE-p5)
FreeBSD 7.0-RELEASE-p5 amd64 Programming C/C++. The down Queues (msgid = msgget ) after message reception (msgrcv) # ipcs Message Queues: T ID KEY MODEOWNERGROUP q 327680 1174 --rw-rw-rw- rootwheel . Example: msgserv.c --- #include #include #include #include #include #include #include #include "msgtypes.h" int main(int argc, char * argv[]) { struct msg_t message; int msgid; char * response = "Ok!"; msgid = msgget(KEY, 0666 | IPC_CREAT); msgrcv(msgid, &message, sizeof(message), 2, 0); /* ATTENTION!!! After "msgrcv(msgid, &message, sizeof(message), 2, 0);" - Queues(msgid) DOWN Helps only to create anew "msgid = msgget(KEY, 0666 | IPC_CREAT);" */ printf("Client (pid = %i) sent: %s", message.snd_pid, message.body); message.mtype = 1; message.snd_pid = getpid(); strcpy(message.body, response); msgsnd(msgid, &message, sizeof(message), 0); // errno = 22 (bad msgid) msgrcv(msgid, &message, sizeof(message), 2, 0); msgctl(msgid, IPC_RMID, 0); return EXIT_SUCCESS; } --- msgtypes.h --- #ifndef MSG_TYPES #define MSG_TYPES #define KEY 1174 #define MAXLEN 512 struct msg_t { long mtype; int snd_pid; char body[MAXLEN]; }; #endif --- msgcli.c --- #include #include #include #include #include #include #include "msgtypes.h" int main(int argc, char * argv[]) { int msgid; int i; struct msg_t message; char buf[MAXLEN]; msgid = msgget(KEY, 0666); if (msgid == -1) { printf("Server is not running!\n", msgid); return EXIT_FAILURE; } i = 0; while ( (i < (MAXLEN - 1)) && ((message.body[i++] = getchar()) != '\n') ); message.body[i] = '\0'; message.mtype = 2; message.snd_pid = getpid (); msgsnd(msgid, &message, sizeof(message), 0); msgrcv(msgid, &message, sizeof(message), 1, 0); printf("Server (pid= %i) responded: %s\n", message.snd_pid, message.body); message.mtype = 2; msgsnd(msgid, &message, sizeof(message), 0); return EXIT_SUCCESS; } --- Tested on FreeBSD 6.2 i386 - All has passed remarkably, errors were not ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
On Tue, 4 Nov 2008 15:45:28 +0800, "joeb" <[EMAIL PROTECTED]> wrote: > How do I get back to the xorg/xfce desktop running in the virtual console I > left from? You could try to press the Pause / SysRq key as many times as needed until you're on your X screen again. Have a look into /etc/ttys where the correct terminal should be specified, e. g. ttyv8 "/usr/local/bin/xdm -nodaemon" xterm off secure ^^ So X will be on ttyv8 which is number 9 (Alt+PF9). May I ask how you initiate your X (XFCE) session? This could give a hint why console switching doesn't work as intended. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
On Tue, 04 Nov 2008 04:17:35 +0300, The Ghost <[EMAIL PROTECTED]> wrote: > Hello, > > > I migrated to freensd-7.0-release and noticed that I can't switch > to the virtual consoles by pressing Alt+Fx once I've started X ! > I guess the key combination has changed in the nre version of > Xorg implemented in FreeBSD 7.0, so I took a look at the online > handbook, but I haven't found anything about the new way to switch > to the virtual consoles... Could anyone please point me at what do I miss?.. Well, this hasn't something to do with FreeBSD 7. From my own experience, virtual console switching has always been the same since 4.0 with XFree86. When you're inside X, you need to add the Control key to the key combination, e. g. Ctrl-Alt-PF1. So you leave X (on its VT, usually PF9, see /etc/ttys) and get to the 1st virtual console. As long as you're in text mode, you can switch around with Alt+PF1 ... Alt+PF9 as you mentioned correctly. The functions of Alt+PF1 ... Alt+PF12 inside X depends on the window manager / desktop environment you're running, it can, for example, be used to switch virtual desktops. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
On Tue, 4 Nov 2008 21:45:12 +0800, "joeb" <[EMAIL PROTECTED]> wrote: > I logon from F2 as root and then startx. As root? No good idea. You should run from a !root user account. > I believe F9 only works if you use the xorg logon session control. No, it works when you startx from after a "normal" login, too. I do know that, it's my setting at the moment. :-) So if you would create a normal user account and add these files: 1. ~/.xsession #!/bin/csh source ~/.cshrc exec ~/.xinitrc 2. ~/.xinitc #!/bin/sh exec xfwm Give them +x permissions. The first file allows you to inherit your settings from the C shell (~/.cshrc) into your X session when started from XDM or another display manager. After login, you can use the % startx command to run your XFCE session. But in fact, running as root can't be the reason why console switching doesn't seem to work correctly, I believe... -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: virtual consoles on freebsd-7.0-release
I logon from F2 as root and then startx. I believe F9 only works if you use the xorg logon session control. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Yuri Pankov Sent: Tuesday, November 04, 2008 7:49 PM To: Steven Susbauer Cc: [EMAIL PROTECTED]; freebsd-questions@freebsd.org Subject: Re: virtual consoles on freebsd-7.0-release On Tue, Nov 04, 2008 at 05:45:12AM -0600, Steven Susbauer wrote: > joeb wrote: >> When I am in xorg/xfce and do Ctrl+Alt+Fx it does in fact open the >> selected >> virtual console. >> But I can not find any way to return to the xorg/xfce desktop running >> in the >> virtual console I left from. >> Alt+Fx does take me to the virtual console where x11/xfce is suppose >> to be, >> but puts me in command line mode. >> The command ps ax shows xorg/xfce is still running. >> >> How do I get back to the xorg/xfce desktop running in the virtual console I >> left from? >> > You should be able to get back into Xorg with Alt F7 or F8. Does this > not work? > > Steve X usually runs on ttyv8, so it should be Alt+F9. HTH, Yuri ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
On Tue, Nov 04, 2008 at 05:45:12AM -0600, Steven Susbauer wrote: > joeb wrote: >> When I am in xorg/xfce and do Ctrl+Alt+Fx it does in fact open the >> selected >> virtual console. >> But I can not find any way to return to the xorg/xfce desktop running >> in the >> virtual console I left from. >> Alt+Fx does take me to the virtual console where x11/xfce is suppose >> to be, >> but puts me in command line mode. >> The command ps ax shows xorg/xfce is still running. >> >> How do I get back to the xorg/xfce desktop running in the virtual console I >> left from? >> > You should be able to get back into Xorg with Alt F7 or F8. Does this > not work? > > Steve X usually runs on ttyv8, so it should be Alt+F9. HTH, Yuri ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
joeb wrote: When I am in xorg/xfce and do Ctrl+Alt+Fx it does in fact open the selected virtual console. But I can not find any way to return to the xorg/xfce desktop running in the virtual console I left from. Alt+Fx does take me to the virtual console where x11/xfce is suppose to be, but puts me in command line mode. The command ps ax shows xorg/xfce is still running. How do I get back to the xorg/xfce desktop running in the virtual console I left from? You should be able to get back into Xorg with Alt F7 or F8. Does this not work? Steve ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: virtual consoles on freebsd-7.0-release
When I am in xorg/xfce and do Ctrl+Alt+Fx it does in fact open the selected virtual console. But I can not find any way to return to the xorg/xfce desktop running in the virtual console I left from. Alt+Fx does take me to the virtual console where x11/xfce is suppose to be, but puts me in command line mode. The command ps ax shows xorg/xfce is still running. How do I get back to the xorg/xfce desktop running in the virtual console I left from? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steven Susbauer Sent: Tuesday, November 04, 2008 1:21 PM To: [EMAIL PROTECTED] Cc: freebsd-questions@freebsd.org Subject: Re: virtual consoles on freebsd-7.0-release The Ghost wrote: >Hello, > > >I migrated to freensd-7.0-release and noticed that I can't switch to the >virtual consoles by pressing Alt+Fx once I've started X ! I guess the key >combination has changed in the nre version of Xorg implemented in FreeBSD >7.0, so I took a look at the online handbook, but I haven't found anything >about the new way to switch to the virtual consoles... Could anyone please >point me at what do I miss?.. > > > >The Ghost <[EMAIL PROTECTED]> > Have you tried Ctrl+Alt+Fx? Alt alone has never gone to a virtual console from X for me, on any system. -Steve ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: virtual consoles on freebsd-7.0-release
The Ghost wrote: Hello, I migrated to freensd-7.0-release and noticed that I can't switch to the virtual consoles by pressing Alt+Fx once I've started X ! I guess the key combination has changed in the nre version of Xorg implemented in FreeBSD 7.0, so I took a look at the online handbook, but I haven't found anything about the new way to switch to the virtual consoles... Could anyone please point me at what do I miss?.. The Ghost <[EMAIL PROTECTED]> Have you tried Ctrl+Alt+Fx? Alt alone has never gone to a virtual console from X for me, on any system. -Steve ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
virtual consoles on freebsd-7.0-release
Hello, I migrated to freensd-7.0-release and noticed that I can't switch to the virtual consoles by pressing Alt+Fx once I've started X ! I guess the key combination has changed in the nre version of Xorg implemented in FreeBSD 7.0, so I took a look at the online handbook, but I haven't found anything about the new way to switch to the virtual consoles... Could anyone please point me at what do I miss?.. The Ghost <[EMAIL PROTECTED]> ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
David Christensen wrote: [snip] > > > devel/glib20 and gio-fam-backend seemed to go okay. I think I got > further into firefox3, but it failed: checking for cairo >= 1.6.0 freetype2 fontconfig... Requested 'cairo >= 1.6.0' but version of cairo is 1.4.10 This is telling you the cairo you have installed is old and needs to be updated, probably freetype2 and fontconfig as well. Essentially you have out of date dependencies, with the most common reason for this is having installed packages straight from the release ISOs and subsequently not upgrading them. Many old time FreeBSD'ers only install the system from the ISO, update their ports tree, and then install software. This ensures everything is current and all dependencies are tracked. What you have is a jumble of outdated dependencies which require updating. > > configure: error: Library requirements (cairo >= 1.6.0 freetype2 > fontconfig) not met > > > What's next? > [snip] You can update things manually one or two at a time[1], as you did for the glib20 port. Or you can automate the process. I use portupgrade for this. Now portupgrade has it's own learning curve, but it can make it easier to keep large numbers of ports all up to date. You probably need to learn a little more about how the ports system works. Once you have a more in depth understanding of how to install and maintain software on a FreeBSD system you won't see this kind of situation again. So rather than fixate on just bouncing from dependency to dependency, ad infinitum ad nauseum, try going back and reading up on this subject some more until you understand the process. -Mike [1] Like you did with glib20: make && make deinstall && make reinstall ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
On Sun, Oct 26, 2008 at 11:01 PM, David Christensen < [EMAIL PROTECTED]> wrote: > Sahil Tandon wrote: > > Do these ellipses include a 'make install'? Otherwise, that is likely > > your problem; devel/glib20 is not actually installed. > > Michael Powell wrote: > >> If you previously had glib20-2.14.6 installed, you will need to do a 'make >> deinstall' prior to 'make reinstall'. >> > ... > >> then follow up by doing the gio-fam-backend port. >> > > Thank you both for your help. :-) > > > I didn't understand the need to do a make deinstall/ reinstall on glib20. > So I tried again: > >http://holgerdanske.com/node/392 > > > devel/glib20 and gio-fam-backend seemed to go okay. I think I got further > into firefox3, but it failed: > >configure: error: Library requirements (cairo >= 1.6.0 freetype2 > fontconfig) not met > > > What's next? > > > TIA, > > David > > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > [EMAIL PROTECTED]" > install these three cairo >= 1.6.0 freetype2 fontconfig make sure your ports tree is up to date as well with portsnap ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
Sahil Tandon wrote: > Do these ellipses include a 'make install'? Otherwise, that is likely > your problem; devel/glib20 is not actually installed. Michael Powell wrote: If you previously had glib20-2.14.6 installed, you will need to do a 'make deinstall' prior to 'make reinstall'. ... then follow up by doing the gio-fam-backend port. Thank you both for your help. :-) I didn't understand the need to do a make deinstall/ reinstall on glib20. So I tried again: http://holgerdanske.com/node/392 devel/glib20 and gio-fam-backend seemed to go okay. I think I got further into firefox3, but it failed: configure: error: Library requirements (cairo >= 1.6.0 freetype2 fontconfig) not met What's next? TIA, David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
David Christensen wrote: > mdh wrote: >> The answer is to upgrade your devel/glib20 port to the latest version, >> then try to install or upgrade libgiofam, then install the other >> software. > > Thank you for your response. :-) > > > Here's my attempt to carry out your suggestions: > > 20081026-122203 [EMAIL PROTECTED] ~ > # portsnap fetch update > Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. Since I use csup and have no experience with portsnap I can't speak to it's efficacy. > Building new INDEX files... done. > > 20081026-122344 [EMAIL PROTECTED] ~ > # cd /usr/ports/devel/glib20 > > 20081026-122615 [EMAIL PROTECTED] /usr/ports/devel/glib20 > # make If you previously had glib20-2.14.6 installed, you will need to do a 'make deinstall' prior to 'make reinstall'. > gmake[1]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.16.5' > > 20081026-125854 [EMAIL PROTECTED] /usr/ports/devel/glib20 > # cd ../gio-fam-backend This is wrong somehow. You should be able to make && make deinstall && make reinstall the glib20 port without it going anywhere else. > 20081026-125954 [EMAIL PROTECTED] /usr/ports/devel/gio-fam-backend > # make Also please note that both the glib20 port *and* the gio-fam-backend both utilize the same glib20 tarball. It's just you need to build/install the glib20 (current version == 2.16.5) port first, then follow up by doing the gio-fam-backend port. Something is wrong with your setup as I just successfully built the gio-fam-backend port on my test machine with no difficulties encountered. -Mike [snip] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
David Christensen <[EMAIL PROTECTED]> wrote: > mdh wrote: >> The answer is to upgrade your devel/glib20 port to the latest version, >> then try to install or upgrade libgiofam, then install the other software. >> > > Thank you for your response. :-) > > Here's my attempt to carry out your suggestions: > > 20081026-122203 [EMAIL PROTECTED] ~ > # portsnap fetch update > Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. > ... > Building new INDEX files... done. > > 20081026-122344 [EMAIL PROTECTED] ~ > # cd /usr/ports/devel/glib20 > > 20081026-122615 [EMAIL PROTECTED] /usr/ports/devel/glib20 > # make > ... Do these ellipses include a 'make install'? Otherwise, that is likely your problem; devel/glib20 is not actually installed. -- Sahil Tandon <[EMAIL PROTECTED]> ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
mdh wrote: The answer is to upgrade your devel/glib20 port to the latest version, then try to install or upgrade libgiofam, then install the other software. Thank you for your response. :-) Here's my attempt to carry out your suggestions: 20081026-122203 [EMAIL PROTECTED] ~ # portsnap fetch update Looking up portsnap.FreeBSD.org mirrors... 3 mirrors found. ... Building new INDEX files... done. 20081026-122344 [EMAIL PROTECTED] ~ # cd /usr/ports/devel/glib20 20081026-122615 [EMAIL PROTECTED] /usr/ports/devel/glib20 # make ... gmake[1]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.16.5' 20081026-125854 [EMAIL PROTECTED] /usr/ports/devel/glib20 # cd ../gio-fam-backend 20081026-125954 [EMAIL PROTECTED] /usr/ports/devel/gio-fam-backend # make ===> Building for gio-fam-backend-2.16.5 /bin/sh ../../libtool --tag=CC --mode=link cc -DG_LOG_DOMAIN=\"GLib-GIO\" -I.. /.. -I../../glib -I../../gmodule -I../../gio -DG_DISABLE_CAST_CHECKS -DGIO_MODUL E_DIR=\"/usr/local/lib/gio/modules\" -DGIO_COMPILATION -DG_DISABLE_DEPRECATED -O 2 -fno-strict-aliasing -pipe -Wall -export_dynamic -avoid-version -module -no-un defined -export-symbols-regex '^g_io_module_(load|unload)' -L/usr/local/lib -lin tl -o libgiofam.la -rpath /usr/local/lib/gio/modules libgiofam_la-fam-helper.lo libgiofam_la-fam-module.lo libgiofam_la-gfamdirectorymonitor.lo libgiofam_la-gfa mfilemonitor.lo -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lfam rm -fr .libs/libgiofam.exp generating symbol list for `libgiofam.la' /usr/bin/nm -B .libs/libgiofam_la-fam-helper.o .libs/libgiofam_la-fam-module.o .libs/libgiofam_la-gfamdirectorymonitor.o .libs/libgiofam_la-gfamfilemonitor.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A- Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /usr/bin/sed 's/.* //' | sort | uniq > .libs /libgiofam.exp /usr/bin/grep -E -e "^g_io_module_(load|unload)" ".libs/libgiofam.exp" > ".libs/ libgiofam.expT" mv -f ".libs/libgiofam.expT" ".libs/libgiofam.exp" cc -shared .libs/libgiofam_la-fam-helper.o .libs/libgiofam_la-fam-module.o .lib s/libgiofam_la-gfamdirectorymonitor.o .libs/libgiofam_la-gfamfilemonitor.o -Wl, --rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/ local/lib/libintl.so -lgio-2.0 /usr/local/lib/libgobject-2.0.so /usr/local/lib/l ibglib-2.0.so /usr/local/lib/libfam.so -Wl,-soname -Wl,libgiofam.so -Wl,-retain -symbols-file -Wl,.libs/libgiofam.exp -o .libs/libgiofam.so /usr/bin/ld: cannot find -lgio-2.0 gmake: *** [libgiofam.la] Error 1 *** Error code 2 Stop in /usr/ports/devel/gio-fam-backend. So, I'm back where I started -- /usr/bin/ld: cannot find -lgio-2.0 Any suggestions? David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
--- On Sun, 10/26/08, David Christensen <[EMAIL PROTECTED]> wrote: > From: David Christensen <[EMAIL PROTECTED]> > Subject: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find > -lgio-2.0 > To: "Freebsd-Questions" > Date: Sunday, October 26, 2008, 2:10 PM > freebsd-questions: > > If I understand the above, the linker is unable to find the > file > gio-2.0. STFW I found something similar: > The answer is to upgrade your devel/glib20 port to the latest version, then try to install or upgrade libgiofam, then install the other software. - mdh ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
On Sun, Oct 26, 2008 at 11:10:48AM -0700, David Christensen wrote: > freebsd-questions: Try freebsd-ports for this question, as your issue is with a port. :-) -- | Jeremy Chadwickjdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD 7.0-RELEASE (GENERIC) firefox3 /usr/bin/ld: cannot find -lgio-2.0
freebsd-questions: I am attempting to build a desktop machine using FreeBSD 7.0-RELEASE (GENERIC) and am having trouble building firefox3: 20081026-104652 [EMAIL PROTECTED] /usr/ports/www/firefox3 # make ===> firefox-3.0.3,1 depends on package: nspr>=4.7 - found ===> firefox-3.0.3,1 depends on executable: zip - found ===> firefox-3.0.3,1 depends on executable: gmake - found ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/printproto. pc - found ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/sm.pc - fou nd ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/xt.pc - fou nd ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/xi.pc - fou nd ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/xext.pc - f ound ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/x11.pc - fo und ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/xinerama.pc - found ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/ice.pc - fo und ===> firefox-3.0.3,1 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> firefox-3.0.3,1 depends on file: /usr/local/bin/perl5.8.8 - found ===> firefox-3.0.3,1 depends on file: /usr/local/bin/intltool-extract - found ===> firefox-3.0.3,1 depends on executable: pkg-config - found ===> firefox-3.0.3,1 depends on executable: update-desktop-database - not foun d ===>Verifying install for update-desktop-database in /usr/ports/devel/deskto p-file-utils ===> Installing for desktop-file-utils-0.15_1 ===> desktop-file-utils-0.15_1 depends on executable: pkg-config - found ===> desktop-file-utils-0.15_1 depends on file: /usr/local/lib/gio/modules/lib giofam.so - not found ===>Verifying install for /usr/local/lib/gio/modules/libgiofam.so in /usr/po rts/devel/gio-fam-backend ===> Building for gio-fam-backend-2.16.5 /bin/sh ../../libtool --tag=CC --mode=link cc -DG_LOG_DOMAIN=\"GLib-GIO\" -I.. /.. -I../../glib -I../../gmodule -I../../gio -DG_DISABLE_CAST_CHECKS -DGIO_MODUL E_DIR=\"/usr/local/lib/gio/modules\" -DGIO_COMPILATION -DG_DISABLE_DEPRECATED -O 2 -fno-strict-aliasing -pipe -Wall -export_dynamic -avoid-version -module -no-un defined -export-symbols-regex '^g_io_module_(load|unload)' -L/usr/local/lib -lin tl -o libgiofam.la -rpath /usr/local/lib/gio/modules libgiofam_la-fam-helper.lo libgiofam_la-fam-module.lo libgiofam_la-gfamdirectorymonitor.lo libgiofam_la-gfa mfilemonitor.lo -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lfam rm -fr .libs/libgiofam.exp generating symbol list for `libgiofam.la' /usr/bin/nm -B .libs/libgiofam_la-fam-helper.o .libs/libgiofam_la-fam-module.o .libs/libgiofam_la-gfamdirectorymonitor.o .libs/libgiofam_la-gfamfilemonitor.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A- Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /usr/bin/sed 's/.* //' | sort | uniq > .libs /libgiofam.exp /usr/bin/grep -E -e "^g_io_module_(load|unload)" ".libs/libgiofam.exp" > ".libs/ libgiofam.expT" mv -f ".libs/libgiofam.expT" ".libs/libgiofam.exp" cc -shared .libs/libgiofam_la-fam-helper.o .libs/libgiofam_la-fam-module.o .lib s/libgiofam_la-gfamdirectorymonitor.o .libs/libgiofam_la-gfamfilemonitor.o -Wl, --rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/ local/lib/libintl.so -lgio-2.0 /usr/local/lib/libgobject-2.0.so /usr/local/lib/l ibglib-2.0.so /usr/local/lib/libfam.so -Wl,-soname -Wl,libgiofam.so -Wl,-retain -symbols-file -Wl,.libs/libgiofam.exp -o .libs/libgiofam.so /usr/bin/ld: cannot find -lgio-2.0 gmake: *** [libgiofam.la] Error 1 *** Error code 2 Stop in /usr/ports/devel/gio-fam-backend. *** Error code 1 Stop in /usr/ports/devel/desktop-file-utils. *** Error code 1 Stop in /usr/ports/www/firefox3. *** Error code 1 Stop in /usr/ports/www/firefox3. If I understand the above, the linker is unable to find the file gio-2.0. STFW I found something similar: http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048813.html But I don't understand the answer: http://lists.freebsd.org/pipermail/freebsd-ports/2008-May/048814.html and I don't know if it is applicable -- I have been attempting KDE, not Gnome. But, I'll use any desktop that supports Firefox, Thunderbird, and Open Office. Any suggestions? David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: ScreenCapturing tool for FreeBSD-7.0 Release
On Wednesday 24 September 2008, dhaneshk k wrote: > HI all ; > > Can anyone recommend a working screencapturing tool such as XvidCap for > FreeBSD-7.0 graphics/scrot Cheers, ch -- Christian Hiris <[EMAIL PROTECTED]> | OpenPGP KeyID 0x1A9BE943 OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: ScreenCapturing tool for FreeBSD-7.0 Release
On Wed, Sep 24, 2008 at 09:09:23AM +, dhaneshk k wrote: > > > HI all ; > > Can anyone recommend a working screencapturing tool such as XvidCap > for FreeBSD-7.0 , > > I installed XvidCap but its not working any other tools OR > Solutions for doing screen Capturing .. > > It will be useful for demo presentations alot.. > > Thanks in advance Dhanesh > Others have mentioned other tools. One that will do what you want is graphics/xv Fire it up, right click on the splash screen and click "Grab". xv is also a bit more lightweight than Gimp or ImageMagik. Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: ScreenCapturing tool for FreeBSD-7.0 Release
Roland Smith wrote: On Wed, Sep 24, 2008 at 09:09:23AM +, dhaneshk k wrote: HI all ; Can anyone recommend a working screencapturing tool such as XvidCap for FreeBSD-7.0 , I installed XvidCap but its not working any other tools OR Solutions for doing screen Capturing .. It will be useful for demo presentations alot.. If you are using X11, try xwd(1) that comes with it. You'll need a tool like netpbm or ImageMagick to convert dump files to other formats. Or you can use the gimp to capture and process window images under X11. I'm not aware of any screen dump apps on the console. You can of course run console apps in an X terminal and capture that. Roland ImageMagick has the 'import' command which can directly capture screen to some sensible format such as jpg. You'll get a pointer from which you can drag a box on the screen which you want to capture. Alternively you can just click an application to take a screenshot of that application window. And probably you can make screenshots of the entire screen without having to drag a box too -- -Frank Staals ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: ScreenCapturing tool for FreeBSD-7.0 Release
dhaneshk k wrote: HI all ; Can anyone recommend a working screencapturing tool such as XvidCap for FreeBSD-7.0 , I installed XvidCap but its not working any other tools OR Solutions for doing screen Capturing .. It will be useful for demo presentations alot.. Thanks in advance I've used Ksnapshot (part of KDE) very successfully in X. On the console, vidcontrol is an option along with the various scr2txt, scr2png utilities. Vinny ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
how to get linux debugging compatibility on freebsd 7.0-release
FreeBSD xxx..com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 10:35:36 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC amd64 I am a little bit (ok, way) over my head here, but I have a 32bit linux binary that crashes on my amd64 system. If that isn't convoluted enough, it is also running in a jail. Specifically, if anyone cares, it seems to be the source metamod 3rd party add-on to valve software's source dedicated server. I have provided the developer(s) of the mod a jailed test environment to debug in with linux_base-fc4, but they are asking how to enable linux debugging compatibility, but I have no idea how to do so, and my googling attempts have only turned up old references to /usr/ports/devel/linux_devel which doesn't seem to exist any more. Here is exactly what he asked me: >I haven't used FreeBSD since 4.4 or so. I've installed gdb66 and i386-rtems-gdb >(whatever that is) in vain attempts to get Linux debugging compatibility but to >no avail. > >Do you know how to get that working or should I start going googling? :) If you really want, you can view all the gory details here: https://bugs.alliedmods.net/show_bug.cgi?id=3264 but my basic question is, what is the answer to his question of how to get linux debugging compatibility? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: ScreenCapturing tool for FreeBSD-7.0 Release
On Wed, Sep 24, 2008 at 09:09:23AM +, dhaneshk k wrote: > > > HI all ; > > Can anyone recommend a working screencapturing tool such as XvidCap > for FreeBSD-7.0 , > > I installed XvidCap but its not working any other tools OR Solutions > for doing screen Capturing .. > > It will be useful for demo presentations alot.. If you are using X11, try xwd(1) that comes with it. You'll need a tool like netpbm or ImageMagick to convert dump files to other formats. Or you can use the gimp to capture and process window images under X11. I'm not aware of any screen dump apps on the console. You can of course run console apps in an X terminal and capture that. Roland -- R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) pgp7vyUhfM7Zj.pgp Description: PGP signature
Re: ScreenCapturing tool for FreeBSD-7.0 Release
El dÃa Wednesday, September 24, 2008 a las 09:09:23AM +, dhaneshk k escribió: > > > HI all ; > > Can anyone recommend a working screencapturing tool such as XvidCap for > FreeBSD-7.0 , > > I installed XvidCap but its not working any other tools OR Solutions for > doing screen Capturing .. > > It will be useful for demo presentations alot.. > > Thanks in advance > Dhanesh check this: http://groups.google.com/group/lucky.freebsd.questions/msg/51c4bec19542621f?dmode=source hih matthias -- Matthias Apitz Manager Technical Support - OCLC GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e <[EMAIL PROTECTED]> - w http://www.oclc.org/ http://www.UnixArea.de/ b http://gurucubano.blogspot.com/ A computer is like an air conditioner, it stops working when you open Windows Una computadora es como aire acondicionado, deja de funcionar si abres Windows ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
ScreenCapturing tool for FreeBSD-7.0 Release
HI all ; Can anyone recommend a working screencapturing tool such as XvidCap for FreeBSD-7.0 , I installed XvidCap but its not working any other tools OR Solutions for doing screen Capturing .. It will be useful for demo presentations alot.. Thanks in advance Dhanesh _ Search for videos of Bollywood, Hollywood, Mollywood and every other wood, only on Live.com http://www.live.com/?scope=video&form=MICOAL___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
portupgrade / ruby18 is eating up all CPU [FreeBSD 7.0-RELEASE-p3 amd64]
Hi, Something seems to be wrong with my current 7.0/amd64 setup. # sudo portupgrade -Rra Sometimes portupgrade stops while "Updating the portsdb" [1]. OK, actually it doesn't really stop, with top I see that the ruby18 process is eating up the whole CPU[2]. In the current case it's about p5-Socket6 - but it seems that it isn't about the port, it's more about the portsdb. When I try to restart (CTRL-C) and run portupgrade again it hangs at the same point "Updating the portsdb". Only when I manually force an update of the portsdb it goes through: # sudo pkgdb -fu But than it will randomly hang again in the whole portupgrade run at one of the next updates of the portsdb... I'm able reproduce this problem within a jail and on a regular host system, with portupgrade and portupgrade-devel. At this moment I'm suffering an interrupt storm on that machine, but I already had the problem before. The machine works fine, no performance impact or something like that. All described here http://lists.freebsd.org/pipermail/freebsd-acpi/2008-September/005095.html % uname -a FreeBSD nemesis.charlie.mouhaha.de 7.0-RELEASE-p3 FreeBSD 7.0-RELEASE-p3 #7: Thu Aug 14 20:09:36 BST 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/CHARLIE amd64 % portupgrade --version portupgrade 2.4.6 % ruby18 --version ruby 1.8.6 (2008-08-11 patchlevel 287) [amd64-freebsd7] Cheers Ollie [1] sudo portupgrade -Rra ... [Updating the pkgdb in /var/db/pkg ... - 313 packages found (-0 +1) . done] ---> Upgrading 'p5-Socket6-0.20' to 'p5-Socket6-0.22' (net/p5-Socket6) ---> Building '/usr/ports/net/p5-Socket6' ===> Cleaning for p5-Socket6-0.22 => Socket6-0.22.tar.gz doesn't seem to exist in /var/ports/distfiles/. => Attempting to fetch from ftp://ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/Socket6/. Socket6-0.22.tar.gz 100% of 56 kB 314 kBps ===> Extracting for p5-Socket6-0.22 => MD5 Checksum OK for Socket6-0.22.tar.gz. => SHA256 Checksum OK for Socket6-0.22.tar.gz. ===> p5-Socket6-0.22 depends on file: /usr/local/bin/perl5.8.8 - found ===> Patching for p5-Socket6-0.22 ===> p5-Socket6-0.22 depends on file: /usr/local/bin/perl5.8.8 - found ===> p5-Socket6-0.22 depends on file: /usr/local/bin/perl5.8.8 - found ===> Configuring for p5-Socket6-0.22 checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking whether your Perl5 have PL_sv_undef... yes checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for getaddrinfo... yes checking for getnameinfo... yes checking for gethostbyname2... yes checking for getipnodebyname... yes checking for getipnodebyaddr... yes checking for inet_pton... yes checking for inet_ntop... yes checking whether you have sa_len in struct sockaddr... yes checking whether you have sin6_scope_id in struct sockaddr_in6... yes checking for socklen_t... yes configure: creating ./config.status config.status: creating config.pl config.status: creating gailookup.pl config.status: creating config.h Checking if your kit is complete... Looks good Writing Makefile for Socket6 ===> Building for p5-Socket6-0.22 cp Socket6.pm blib/lib/Socket6.pm /usr/local/bin/perl5.8.8 /usr/local/lib/perl5/site_perl/5.8.8/ExtUtils/xsubpp -noprototypes -typemap /usr/local/lib/perl5/5.8.8/ExtUtils/typemap Socket6.xs > Socket6.xsc && mv Socket6.xsc Socket6.c cc -c-O2 -fno-strict-aliasing -pipe -march=athlon64 -O2 -fno-strict-aliasing -pipe -march=athlon64-DVERSION=\"0.22\" -DXS_VERSION=\"0.22\" -DPIC -fPIC "-I/usr/local/lib/perl5/5.8.8/mach/CORE" Socket6.c Running Mkbootstrap for Socket6 () chmod 644 Socket6.bs rm -f blib/arch/auto/Socket6/Socket6.so cc -shared -L/usr/local/lib Socket6.o -o blib/arch/auto/Socket6/Socket6.so chmod 755 blib/arch/auto/Socket6/Socket6.so cp Socket6.bs blib/arch/auto/Socket6/Socket6.bs chmod 644 blib/arch/auto/Socket6/Socket6.bs [Updating the portsdb in /var/db/pkg ... - 19084 port entries found .1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000.15000.16000.17000.18000.19000 . done] [2] top PID USERNAME THR PRI NICE SIZERES STATE C TIME WCPU COMMAND 12123 root 1 1180 68636K 39552K CPU1 1 191:27 100.00% ruby18 ... [3] dmesg Copyri
RE: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
> > Try disabling usb and firewire in BIOS. You may need to have > > a tech there do it for you. Your box has the sk NIC and usb > > sharing an irq. The NIC driver is MPSAFE but the usb stack is > > still under the GIANT lock. Disable usb and the NIC driver > > should perform better. > > Alternatively, to avoid involving the provider's tech support, > could the OP get the same effect by building a kernel without USB? >From server support live chat: >Steven H. - Server Support: Submit a trouble ticket and we will >look into it further. I'm pretty sure they will not disable usb >since the DC technicians need to boot from USB in some cases. So is there any other way to verify that this is indeed the problem? Perhaps as Perry suggested, building a kernel without usb/firewire, or possibly setting the irq manually so it's not shared? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
> Try disabling usb and firewire in BIOS. You may need to have > a tech there do it for you. Your box has the sk NIC and usb > sharing an irq. The NIC driver is MPSAFE but the usb stack is > still under the GIANT lock. Disable usb and the NIC driver > should perform better. Alternatively, to avoid involving the provider's tech support, could the OP get the same effect by building a kernel without USB? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
David Polak wrote: [snip] >> >> try setting up speed and duplex options manually > > I have set the duplex to full-duplex and it has increased the speed to > about 200kb/s on the same file. > > As far as phy support, I guess I really don't know, but the drivers for > the chipset have been around for a while. > Try disabling usb and firewire in BIOS. You may need to have a tech there do it for you. Your box has the sk NIC and usb sharing an irq. The NIC driver is MPSAFE but the usb stack is still under the GIANT lock. Disable usb and the NIC driver should perform better. -Mike ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:owner-freebsd- > [EMAIL PROTECTED] On Behalf Of Wojciech Puchar > Sent: Sunday, August 31, 2008 11:21 AM > To: David Polak > Cc: freebsd-questions@freebsd.org > Subject: Re: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 > adapter > > > still seeing really slow download speeds. I then decided to see if > something > > was wrong with the system by downloading the same image from the same > source > > that I downloaded on linux in order to bootstrap freebsd and the > speed > > difference was appaling. It had downloaded at 10.29 MB/s. Once > freebsd was > > installed, It will only go at 60KB/s.. > > > > > > looks like problems with speed/duplex autoconfiguration with the > switch, > or bad support for PHY in FreeBSD. > > what you describe is quite common case when one side gets configured > for > full duplex, other for half duplex. > > as it works for linux, maybe PHY support in FreeBSD is buggy. > > try setting up speed and duplex options manually I have set the duplex to full-duplex and it has increased the speed to about 200kb/s on the same file. As far as phy support, I guess I really don't know, but the drivers for the chipset have been around for a while. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
still seeing really slow download speeds. I then decided to see if something was wrong with the system by downloading the same image from the same source that I downloaded on linux in order to bootstrap freebsd and the speed difference was appaling. It had downloaded at 10.29 MB/s. Once freebsd was installed, It will only go at 60KB/s.. looks like problems with speed/duplex autoconfiguration with the switch, or bad support for PHY in FreeBSD. what you describe is quite common case when one side gets configured for full duplex, other for half duplex. as it works for linux, maybe PHY support in FreeBSD is buggy. try setting up speed and duplex options manually ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
I recently leased a godaddy.com dedicated server, and while they didn't offer freebsd as an option, I used the fine guide at http://www.freebsd.org/doc/en/articles/remote-install/ to get freebsd installed. I noticed that the installation was taking a long time with ftp as the source media, but I had thought that maybe I just picked a bad mirror. After the install was complete, and I started to install some ports, I was still seeing really slow download speeds. I then decided to see if something was wrong with the system by downloading the same image from the same source that I downloaded on linux in order to bootstrap freebsd and the speed difference was appaling. It had downloaded at 10.29 MB/s. Once freebsd was installed, It will only go at 60KB/s.. I have tried messing with the options mentioned here: http://spatula.net/blog/2007/04/freebsd-network-performance-tuning.html but that provided no results. Here is some info about my setup: dmesg and the output from sysctl net.inet are attached as files fsserver# netstat -I sk0 NameMtu Network Address Ipkts IerrsOpkts Oerrs Coll sk01500 00:30:1b:44:4d:4d16318 013163 0 0 sk01500 72.167.50.0 ip-72-167-50-116.15896 -13161 - - fsserver# vmstat -i interrupt total rate irq18: fwohci0+2 0 irq19: skc0 uhci1+ 51928 46 cpu0: timer 2138741 1921 cpu1: timer 2128730 1912 Total4319401 3880 %netstat -I sk0 NameMtu Network Address Ipkts IerrsOpkts Oerrs Coll sk01500 00:30:1b:44:4d:4d32321 025510 0 0 sk01500 72.167.50.0 ip-72-167-50-116.30854 -25508 - - any help is greatly appreciated, let me know if there is any more info that I have forgotten to include that might be needed. dmesg.boot Description: Binary data sysctl_net.inet_output Description: Binary data ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD 7.0-RELEASE getting terrible throughput using sk0 adapter
I recently leased a godaddy.com dedicated server, and while they didn't offer freebsd as an option, I used the fine guide at http://www.freebsd.org/doc/en/articles/remote-install/ to get freebsd installed. I noticed that the installation was taking a long time with ftp as the source media, but I had thought that maybe I just picked a bad mirror. After the install was complete, and I started to install some ports, I was still seeing really slow download speeds. I then decided to see if something was wrong with the system by downloading the same image from the same source that I downloaded on linux in order to bootstrap freebsd and the speed difference was appaling. It had downloaded at 10.29 MB/s. Once freebsd was installed, It will only go at 60KB/s.. I have tried messing with the options mentioned here: http://spatula.net/blog/2007/04/freebsd-network-performance-tuning.html but that provided no results. Here is some info about my setup: dmesg and the output from sysctl net.inet are attached as files fsserver# netstat -I sk0 NameMtu Network Address Ipkts IerrsOpkts Oerrs Coll sk01500 00:30:1b:44:4d:4d16318 013163 0 0 sk01500 72.167.50.0 ip-72-167-50-116.15896 -13161 - - fsserver# vmstat -i interrupt total rate irq18: fwohci0+2 0 irq19: skc0 uhci1+ 51928 46 cpu0: timer 2138741 1921 cpu1: timer 2128730 1912 Total4319401 3880 %netstat -I sk0 NameMtu Network Address Ipkts IerrsOpkts Oerrs Coll sk01500 00:30:1b:44:4d:4d32321 025510 0 0 sk01500 72.167.50.0 ip-72-167-50-116.30854 -25508 - - any help is greatly appreciated, let me know if there is any more info that I have forgotten to include that might be needed. dmesg.boot Description: Binary data sysctl_net.inet_output Description: Binary data ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: mysql-server-5.1.22 system administration docs on FreeBSD 7.0-RELEASE-i386 ?
On Tue, Aug 26, 2008 at 09:57:10PM -0700, David Christensen wrote: > freebsd-questions: > > I am a FreeBSB noob who has read http://nostarch.com/abs_bsd2.htm and is > attempting to build a FreeBSD 7.0 box for Apache/ MySQL/ Perl applications. > I've installed mysql-server-5.1.22 via sysinstall from ftp1.us.freebsd.org, > but > I am unable to figure out how to start it. > > > RTFM: > > # man mysqld > No manual entry for mysqld > > # makewhatis > > # apropos mysql > mysql: nothing appropriate > > # whatis mysql > mysql: nothing appropriate > > I don't understand why apropos and whatis can't find mysql: > > # man mysql > > > Yup, it's there; but that's the client. So is the admin utility: > > # man mysqladmin > > > The FreeBSD Handbook doesn't mention mysql in the TOC: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html > > (Attempting to get the whole thing as HTML locks up my browser.) > > > The mailing list archives didn't help. (Including using Google with site:). > > > STFW led me to /usr/local/etc/rc.d/mysql-server. Attempting to use that: > > # /usr/local/etc/rc.d/mysql-server start > > # ps -a | grep mysql > > # mysql > ERROR 2002 (HY000): Can't connect to local MySQL server through socket > '/tmp/mysql.sock' (2) > > # mysqladmin ping > mysqladmin: connect to server at 'localhost' failed > error: 'Can't connect to local MySQL server through socket > '/tmp/mysql.sock' > (2)' > Check that mysqld is running and that the socket: '/tmp/mysql.sock' > exists! > > > I've been fumbling my way around FreeBSD, and thus far have been able to get > things working via /etc/rc.d/* scripts and/or /etc/rc.conf -- (apache_enable, > hostname, ifconfig_*, defaultrouter, ntpd*, inetd. mysql-5.1 doesn't seem to > follow the pattern. Why? > > > Where is the FreeBSD 7.0 system administration documentation for mysqld 5.1? > Specifically, how to start it manually and how to start it at book via the rc > system? > > > TIA, > > David > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" Hi, put the following line in /etc/rc.conf: mysql_enable="YES" and run (as root): /usr/local/etc/rc.d/mysql-server start frase pgpcXArGEAcxT.pgp Description: PGP signature
mysql-server-5.1.22 system administration docs on FreeBSD 7.0-RELEASE-i386 ?
freebsd-questions: I am a FreeBSB noob who has read http://nostarch.com/abs_bsd2.htm and is attempting to build a FreeBSD 7.0 box for Apache/ MySQL/ Perl applications. I've installed mysql-server-5.1.22 via sysinstall from ftp1.us.freebsd.org, but I am unable to figure out how to start it. RTFM: # man mysqld No manual entry for mysqld # makewhatis # apropos mysql mysql: nothing appropriate # whatis mysql mysql: nothing appropriate I don't understand why apropos and whatis can't find mysql: # man mysql Yup, it's there; but that's the client. So is the admin utility: # man mysqladmin The FreeBSD Handbook doesn't mention mysql in the TOC: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html (Attempting to get the whole thing as HTML locks up my browser.) The mailing list archives didn't help. (Including using Google with site:). STFW led me to /usr/local/etc/rc.d/mysql-server. Attempting to use that: # /usr/local/etc/rc.d/mysql-server start # ps -a | grep mysql # mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) # mysqladmin ping mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)' Check that mysqld is running and that the socket: '/tmp/mysql.sock' exists! I've been fumbling my way around FreeBSD, and thus far have been able to get things working via /etc/rc.d/* scripts and/or /etc/rc.conf -- (apache_enable, hostname, ifconfig_*, defaultrouter, ntpd*, inetd. mysql-5.1 doesn't seem to follow the pattern. Why? Where is the FreeBSD 7.0 system administration documentation for mysqld 5.1? Specifically, how to start it manually and how to start it at book via the rc system? TIA, David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, Jul 05, 2008 at 04:47:29PM +, [EMAIL PROTECTED] wrote: > On Sat, Jul 05, 2008 at 07:31:28PM +0300, Manolis Kiagias wrote: > > [EMAIL PROTECTED] wrote: > >> On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: > >> > >>> On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: > >>> > On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: > > > On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] > > wrote: > > > >> I downloaded the firefox*gz file from devel but it doesn't make for > >> 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? > >> > > It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. > > > > Roland > > > I'm running 7.0-release. I ran portsnap and then porsnap extract. > Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with > the message that it could not find -lgio-2.0. I checked the Freebsd > ports tree and found gio-2.16. I downloaded it and ran make, but that > make aborted with the same message as the make of firefox3. > > >>> Your gnome2 is outof sync. Read: > >>> /usr/bin/less -p 20080323 /usr/ports/UPDATING > >>> /usr/bin/less -p 20080630 /usr/ports/UPDATING > >>> > >>> -- > >>> Mel > >>> > >> > >> Unfortunately there is no subdirectory /usr/ports/UPDATING on my system. > >> ___ > > > > UPDATING is not a directory, it is a text file in /usr/ports, and if you > > are missing it, something went terribly wrong when you fetched the ports > > tree. > > ___ > > /usr/ports/UPDATING is not shown by ls. My original install of the > ports tree was from the 7.0 release on DVD. Then today I ran portsnap > and portsnap extract. portsnap extract reported 5 new ports. How to find > out their names? > > Thanks. > ___ My Mistake! I got confused about which BSD system I was running on. The UPDATING file is present on the FreeBSD system. It may be time for me to make FreeBSD my main machine. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, Jul 05, 2008 at 07:31:28PM +0300, Manolis Kiagias wrote: > [EMAIL PROTECTED] wrote: >> On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: >> >>> On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: >>> On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: > On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] > wrote: > >> I downloaded the firefox*gz file from devel but it doesn't make for >> 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? >> > It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. > > Roland > I'm running 7.0-release. I ran portsnap and then porsnap extract. Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with the message that it could not find -lgio-2.0. I checked the Freebsd ports tree and found gio-2.16. I downloaded it and ran make, but that make aborted with the same message as the make of firefox3. >>> Your gnome2 is outof sync. Read: >>> /usr/bin/less -p 20080323 /usr/ports/UPDATING >>> /usr/bin/less -p 20080630 /usr/ports/UPDATING >>> >>> -- >>> Mel >>> >> >> Unfortunately there is no subdirectory /usr/ports/UPDATING on my system. >> ___ > > UPDATING is not a directory, it is a text file in /usr/ports, and if you > are missing it, something went terribly wrong when you fetched the ports > tree. > ___ /usr/ports/UPDATING is not shown by ls. My original install of the ports tree was from the 7.0 release on DVD. Then today I ran portsnap and portsnap extract. portsnap extract reported 5 new ports. How to find out their names? Thanks. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
[EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. Roland I'm running 7.0-release. I ran portsnap and then porsnap extract. Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with the message that it could not find -lgio-2.0. I checked the Freebsd ports tree and found gio-2.16. I downloaded it and ran make, but that make aborted with the same message as the make of firefox3. Your gnome2 is outof sync. Read: /usr/bin/less -p 20080323 /usr/ports/UPDATING /usr/bin/less -p 20080630 /usr/ports/UPDATING -- Mel Unfortunately there is no subdirectory /usr/ports/UPDATING on my system. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" UPDATING is not a directory, it is a text file in /usr/ports, and if you are missing it, something went terribly wrong when you fetched the ports tree. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, 5 Jul 2008, [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. Roland I'm running 7.0-release. I ran portsnap and then porsnap extract. Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with the message that it could not find -lgio-2.0. I checked the Freebsd ports tree and found gio-2.16. I downloaded it and ran make, but that make aborted with the same message as the make of firefox3. Your gnome2 is outof sync. Read: /usr/bin/less -p 20080323 /usr/ports/UPDATING /usr/bin/less -p 20080630 /usr/ports/UPDATING -- Mel Unfortunately there is no subdirectory /usr/ports/UPDATING on my system. It's not a sub-directory, it is a file: %ls -l /usr/ports/UPDATING -rw-r--r-- 1 root wheel 240302 Jun 13 04:00 /usr/ports/UPDATING ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, Jul 05, 2008 at 06:12:15PM +0200, Mel wrote: > On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: > > On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: > > > On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: > > > > I downloaded the firefox*gz file from devel but it doesn't make for > > > > 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? > > > > > > It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. > > > > > > Roland > > > > I'm running 7.0-release. I ran portsnap and then porsnap extract. > > Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with > > the message that it could not find -lgio-2.0. I checked the Freebsd > > ports tree and found gio-2.16. I downloaded it and ran make, but that > > make aborted with the same message as the make of firefox3. > > Your gnome2 is outof sync. Read: > /usr/bin/less -p 20080323 /usr/ports/UPDATING > /usr/bin/less -p 20080630 /usr/ports/UPDATING > > -- > Mel Unfortunately there is no subdirectory /usr/ports/UPDATING on my system. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Saturday 05 July 2008 17:56:00 [EMAIL PROTECTED] wrote: > On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: > > On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: > > > I downloaded the firefox*gz file from devel but it doesn't make for > > > 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? > > > > It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. > > > > Roland > > I'm running 7.0-release. I ran portsnap and then porsnap extract. > Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with > the message that it could not find -lgio-2.0. I checked the Freebsd > ports tree and found gio-2.16. I downloaded it and ran make, but that > make aborted with the same message as the make of firefox3. Your gnome2 is outof sync. Read: /usr/bin/less -p 20080323 /usr/ports/UPDATING /usr/bin/less -p 20080630 /usr/ports/UPDATING -- Mel Problem with today's modular software: they start with the modules and never get to the software part. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, Jul 05, 2008 at 04:40:35PM +0200, Roland Smith wrote: > On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: > > I downloaded the firefox*gz file from devel but it doesn't make for > > 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? > > It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. > > Roland I'm running 7.0-release. I ran portsnap and then porsnap extract. Then I cd'd to the firefox3 subdirectory and ran make. Make aborted with the message that it could not find -lgio-2.0. I checked the Freebsd ports tree and found gio-2.16. I downloaded it and ran make, but that make aborted with the same message as the make of firefox3. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Firefox 3 for FreeBSD 7.0 release
On Sat, Jul 05, 2008 at 02:27:42PM +, [EMAIL PROTECTED] wrote: > I downloaded the firefox*gz file from devel but it doesn't make for > 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? It builds fine from ports on amd64 7-STABLE. Use the port www/firefox3. Roland -- R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) pgpn6I1g2TWau.pgp Description: PGP signature
Firefox 3 for FreeBSD 7.0 release
I downloaded the firefox*gz file from devel but it doesn't make for 64-bit. Is Firefox 3 available for 64-bit AMD FreeBSD 7.0? Thanks. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera? Almost got it figured out
Ryan Coleman wrote: chip wrote: Ryan Coleman wrote: chip wrote: Heheh, got that working, had to add sudo to the beginning of the command. Now the problem has to do with permissions. The pics are downloaded with the owner being root, so I have to view the pics as root. Whats the workaround? Thanks. chip wrote: A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? First off, please bottom respond. Easier to follow the thread. Secondly, chown would do the job. sudo chown youruser:yourgroup * (or file*) -- Ryan So that is after loading the pics. Is there anything I can do beforehand so the whole process can be done under my normal user login? RTFM: http://gphoto.sourceforge.net/doc/manual/permissions-serial.html#ex-serial-anybody-access Really, man... RTFM :) Thanks for the link. It refers to ttys0, that doesn't exist on my machine. I did use those instructions on acd0 which now allows me to play cd's without being on the root account. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera? Almost got it figured out
chip wrote: Ryan Coleman wrote: chip wrote: Heheh, got that working, had to add sudo to the beginning of the command. Now the problem has to do with permissions. The pics are downloaded with the owner being root, so I have to view the pics as root. Whats the workaround? Thanks. chip wrote: A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? First off, please bottom respond. Easier to follow the thread. Secondly, chown would do the job. sudo chown youruser:yourgroup * (or file*) -- Ryan So that is after loading the pics. Is there anything I can do beforehand so the whole process can be done under my normal user login? RTFM: http://gphoto.sourceforge.net/doc/manual/permissions-serial.html#ex-serial-anybody-access Really, man... RTFM :) ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera? Almost got it figured out
Ryan Coleman wrote: chip wrote: Heheh, got that working, had to add sudo to the beginning of the command. Now the problem has to do with permissions. The pics are downloaded with the owner being root, so I have to view the pics as root. Whats the workaround? Thanks. chip wrote: A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? First off, please bottom respond. Easier to follow the thread. Secondly, chown would do the job. sudo chown youruser:yourgroup * (or file*) -- Ryan So that is after loading the pics. Is there anything I can do beforehand so the whole process can be done under my normal user login? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera? Almost got it figured out
chip wrote: Heheh, got that working, had to add sudo to the beginning of the command. Now the problem has to do with permissions. The pics are downloaded with the owner being root, so I have to view the pics as root. Whats the workaround? Thanks. chip wrote: A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? First off, please bottom respond. Easier to follow the thread. Secondly, chown would do the job. sudo chown youruser:yourgroup * (or file*) -- Ryan ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera? Almost got it figured out
Heheh, got that working, had to add sudo to the beginning of the command. Now the problem has to do with permissions. The pics are downloaded with the owner being root, so I have to view the pics as root. Whats the workaround? Thanks. chip wrote: A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera?
A little more info - I now have gphoto2 recognizing and downloading my images, but only in a terminal window. I am using XFCE and want to create a shortcut on the toolbar or the desktop that will open a terminal window and run the command. I have a shortcut set up but it just opens a terminal window and quickly closes, I don't know what's wrong, but it's not downloading the images. Any suggestions on how to get a shortcut to a terminal window app to work on XFCE? Thanks. chip wrote: Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera?
* chip <[EMAIL PROTECTED]> [2008-06-27 13:40:59+]: > Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and > download pics from it? Nowadays mostly everyone gets a cheap (less than $10US) USB card reader and reads it that way. Thomas ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD-7.0 Release and Camera?
I'm not sure about getting FreeBSD to recognize the camera; but if it has a removable memory card, you should be able to access it through a memory card reader. Best regards, Andrew On Fri, Jun 27, 2008 at 3:40 PM, chip <[EMAIL PROTECTED]> wrote: > Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download > pics from it? > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > [EMAIL PROTECTED]" > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD-7.0 Release and Camera?
Anyone know how to get FBSD 7-R to recognize my Canon S3 IS and download pics from it? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Unable to fetch source files using FTP for FreeBSD 7.0-RELEASE-p2
On Fri, Jun 27, 2008 at 7:49 PM, David Gurvich <[EMAIL PROTECTED]> wrote: > If you have an install cd it works faster than csup to get the sources, > then use csup to update the sources. Thanks. I don't have access to a CD-ROM. It's a leased server at a remote location. I won't be doing buildworld & installworld as I would only be recompiling the kernel to enable ULE scheduler. Regards Amitabh ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Unable to fetch source files using FTP for FreeBSD 7.0-RELEASE-p2
If you have an install cd it works faster than csup to get the sources, then use csup to update the sources. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Unable to fetch source files using FTP for FreeBSD 7.0-RELEASE-p2
On Fri, 27 Jun 2008 09:50:14 -0400 David Gurvich <[EMAIL PROTECTED]> wrote: > Hi, > You just need to change the release name to 7.0-RELEASE. Use > sysinstall and change it in Options or a source supfile with that > release name. Does that actually work? I'd always assumed that that would give you the release source, which would mean reverting two security updates. The normal way to get the source is to run csup, in this case using RELENG_7_0. The process is covered in the handbook. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Unable to fetch source files using FTP for FreeBSD 7.0-RELEASE-p2
Hi, You just need to change the release name to 7.0-RELEASE. Use sysinstall and change it in Options or a source supfile with that release name. Keep in mind that if you buildworld&installworld freebsd-update will not be able to do binary updates. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Unable to fetch source files using FTP for FreeBSD 7.0-RELEASE-p2
Hello I have a remote FreeBSD server with a freshly installed FreeBSD 7.0 Release (amd64 arch). I used the freebsd-update tool to apply binary security updates. This upgraded my system to FreeBSD 7.0-RELEASE-p2. Since I wanted the ULE scheduler, I tried downloading the source files using sysinstall by selecting the components. For the install media, I selected "Install from an FTP Server". Selecting any server from those listed gives the following error: Warning: Can't find the `7.0-RELEASE-p2' distribution on this FTP server. You may need to visit a different server for the release you are trying to fetch or go to the Options menu and to set the release name to explicitly match what's available on ftp.freebsd.org (or set to "any"). Would you like to select another FTP server? I have already tried multiple ftp locations, but always get the same result. Am I missing something here, or do I need to downgrade to the old kernel if I need to compile a custom kernel. Output from `uname -a`: FreeBSD localhost.localdomain 7.0-RELEASE-p2 FreeBSD 7.0-RELEASE-p2 #0: Wed Jun 18 06:48:16 UTC 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC amd64 With regards Amitabh ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: [gutenprint - Help] RE: FreeBSD 7.0-RELEASE+CUPS+gutenprint+Epson
On Tuesday 15 April 2008 07:33:03 pm SourceForge.net wrote: > Read and respond to this message at: > https://sourceforge.net/forum/message.php?msg_id=4907395 > By: lexort > > Your results are consistent with the problem reading from ulpt(4). I > expect that if you turn off your spooling systems and print to a file > (perhaps with the gutenprint gimp plugin), and use cat, that you will get > reasonable output. If so, I think as a next step there are two reasonable > choices. One is to merge my driver changes from NetBSD. The other is to > modify the cups source for the usb backend to make it never try to read > form the printer. > > __ > You are receiving this email because you elected to monitor this forum. > To stop monitoring this forum, login to SourceForge.net and visit: > https://sourceforge.net/forum/unmonitor.php?forum_id=409461 I appreciate your effort, but I must say that modern printers MUST be read from to get status info, ink levels, etc. Disabling all reads would be a bad thing. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: xpdf segmentation fault on FreeBSD 7.0 Release
No, I use the default configuration. It used to be OK, and it seems become fault after I upgrade from FB7 RC4 -> Release... Anyway, thank you for reply. Cheers, Kemian On 12/03/2008, Oliver Herold <[EMAIL PROTECTED]> wrote: > No, I'm using it without any problems. Maybe you have some strange > configuration in /etc/make.conf? > > Cheers, > > Oliver > > > Kemian Dang <[EMAIL PROTECTED]> wrote: > > Hi, all, > > > > I have installed xpdf 3.02 on a FreeBSD 7.0 Release Box without > > problem, I can use "xpdf -h" to get the help information, But when > > ever I just use "xpdf" or "xpdf some.pdf", it will give a > > "segmentation fault" and without any other note. > > Is there any one have met such things and please suggest me how can I > solve it? > > > > Best wishes, > > Kemian > > > ___ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to "[EMAIL PROTECTED]" > > > -- > Q: How do you shoot a blue elephant? > A: With a blue-elephant gun. > > Q: How do you shoot a pink elephant? > A: Twist its trunk until it turns blue, then shoot it with > a blue-elephant gun. > > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: xpdf segmentation fault on FreeBSD 7.0 Release
No, I'm using it without any problems. Maybe you have some strange configuration in /etc/make.conf? Cheers, Oliver Kemian Dang <[EMAIL PROTECTED]> wrote: > Hi, all, > > I have installed xpdf 3.02 on a FreeBSD 7.0 Release Box without > problem, I can use "xpdf -h" to get the help information, But when > ever I just use "xpdf" or "xpdf some.pdf", it will give a > "segmentation fault" and without any other note. > Is there any one have met such things and please suggest me how can I solve > it? > > Best wishes, > Kemian > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" -- Q: How do you shoot a blue elephant? A: With a blue-elephant gun. Q: How do you shoot a pink elephant? A: Twist its trunk until it turns blue, then shoot it with a blue-elephant gun. pgp51xt7U8h2c.pgp Description: PGP signature
xpdf segmentation fault on FreeBSD 7.0 Release
Hi, all, I have installed xpdf 3.02 on a FreeBSD 7.0 Release Box without problem, I can use "xpdf -h" to get the help information, But when ever I just use "xpdf" or "xpdf some.pdf", it will give a "segmentation fault" and without any other note. Is there any one have met such things and please suggest me how can I solve it? Best wishes, Kemian ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
On 2007-07-02 16:21, Joe Vender <[EMAIL PROTECTED]> wrote: > Has a release date been set for FreeBSD 7.0-Release? If not, how about > an (educated guess) approximate date, month? The release schedules are posted online at: http://www.FreeBSD.org/releng/ If a date is not posted there, it's probably not official yet. Even if a date *IS* posted there, it is subject to change according to the plans of the Release Engineering team. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
On 7/3/07, Joe Vender <[EMAIL PROTECTED]> wrote: On Monday 02 July 2007 18:16, matt donovan wrote: > it's on the freebsd site but the code freeze has begun so some are guessing > around October or so > > On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: > > Has a release date been set for FreeBSD 7.0-Release? If not, how about an > > (educated guess) approximate date, month? > > > > Joe Thanks. About 4 months from initial code freeze. That's about what I expected. Joe Keep an eye here: http://www.freebsd.org/releases/7.0R/schedule.html -- Joao Barros ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
On Monday 02 July 2007 18:16, matt donovan wrote: > it's on the freebsd site but the code freeze has begun so some are guessing > around October or so > > On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: > > Has a release date been set for FreeBSD 7.0-Release? If not, how about an > > (educated guess) approximate date, month? > > > > Joe Thanks. About 4 months from initial code freeze. That's about what I expected. Joe ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
Gelsema, P (Patrick) - FreeBSD wrote: > On Tue, July 3, 2007 01:33, Pietro Cerutti wrote: >> matt donovan wrote: >>> it's on the freebsd site but the code freeze has begun so some are >>> guessing >> /\/\ >> >> Did you mean "it isn't", right? Because I just can't find any infos >> about the releng schedule for 7-RELEASE.. > > http://www.freebsd.org/releng Can you see any release date there? It's just me, or there's only stated that the release process began in june? > > Rgds, > > Patrick > >>> around October or so >>> >>> On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: >>>> Has a release date been set for FreeBSD 7.0-Release? If not, how about >>>> an >>>> (educated guess) approximate date, month? >>>> >>>> Joe >>>> >>>> ___ >>>> freebsd-questions@freebsd.org mailing list >>>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>>> To unsubscribe, send any mail to " >>>> [EMAIL PROTECTED]" >>>> >>> ___ >>> freebsd-questions@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>> To unsubscribe, send any mail to >>> "[EMAIL PROTECTED]" >> >> -- >> Pietro Cerutti >> >> PGP Public Key: >> http://gahr.ch/pgp >> > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" -- Pietro Cerutti PGP Public Key: http://gahr.ch/pgp signature.asc Description: OpenPGP digital signature
Re: FreeBSD 7.0-Release
On Tue, July 3, 2007 01:33, Pietro Cerutti wrote: > > matt donovan wrote: >> it's on the freebsd site but the code freeze has begun so some are >> guessing > /\/\ > > Did you mean "it isn't", right? Because I just can't find any infos > about the releng schedule for 7-RELEASE.. http://www.freebsd.org/releng Rgds, Patrick > >> around October or so >> >> On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: >>> >>> Has a release date been set for FreeBSD 7.0-Release? If not, how about >>> an >>> (educated guess) approximate date, month? >>> >>> Joe >>> >>> ___ >>> freebsd-questions@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >>> To unsubscribe, send any mail to " >>> [EMAIL PROTECTED]" >>> >> ___ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "[EMAIL PROTECTED]" > > > -- > Pietro Cerutti > > PGP Public Key: > http://gahr.ch/pgp > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
From http://www.emediawire.com/releases/2007/6/emw531216.htm, quoted in the News sections of freebsd.org: "Developers on the FreeBSD project worked with researchers from NTT to integrate their code, under a BSD license, into the CURRENT branch of FreeBSD, which will become the 7.0 release in the near future." Nothing's hinted, but yes 7.0 is in a code freeze for the most part (very minor touch-ups are going into CURRENT from what I can see in the Perforce commits), so here goes to 7 RELEASE in the next couple months :).. -Garrett On Tue, 3 Jul 2007, Pietro Cerutti wrote: matt donovan wrote: it's on the freebsd site but the code freeze has begun so some are guessing /\/\ Did you mean "it isn't", right? Because I just can't find any infos about the releng schedule for 7-RELEASE.. around October or so On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: Has a release date been set for FreeBSD 7.0-Release? If not, how about an (educated guess) approximate date, month? Joe ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to " [EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" -- Pietro Cerutti PGP Public Key: http://gahr.ch/pgp ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 7.0-Release
matt donovan wrote: > it's on the freebsd site but the code freeze has begun so some are guessing /\/\ Did you mean "it isn't", right? Because I just can't find any infos about the releng schedule for 7-RELEASE.. > around October or so > > On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: >> >> Has a release date been set for FreeBSD 7.0-Release? If not, how about an >> (educated guess) approximate date, month? >> >> Joe >> >> ___ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to " >> [EMAIL PROTECTED]" >> > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "[EMAIL PROTECTED]" -- Pietro Cerutti PGP Public Key: http://gahr.ch/pgp signature.asc Description: PGP signature signature.asc Description: OpenPGP digital signature
Re: FreeBSD 7.0-Release
it's on the freebsd site but the code freeze has begun so some are guessing around October or so On 7/2/07, Joe Vender <[EMAIL PROTECTED]> wrote: Has a release date been set for FreeBSD 7.0-Release? If not, how about an (educated guess) approximate date, month? Joe ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to " [EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD 7.0-Release
Has a release date been set for FreeBSD 7.0-Release? If not, how about an (educated guess) approximate date, month? Joe ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"