Re: Max top end computer for Freebsd to run on

2013-06-07 Thread lokada...@gmx.de

On 02.06.2013 22:34, Fbsd8 wrote:
I'm a sub second speed freak. What is the max number of cpu's and 
memory size that Freebsd can handle? Can it handle 16 4ghz cpu's and 
32gb of memory? I need a gaming server with some really big balls for 
hundreds of jails. Money is not a deciding factor here, horse power is.

___
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



Looks like there is set up to 128 maxcpu (or no limit) since FBSD 9.0.
http://forums.freebsd.org/showthread.php?t=13261

Memory i don't know.
With 64Bit it should many ram avaible.

Greeting

___
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: openvpn and tap device

2013-06-01 Thread lokada...@gmx.de

On 29.05.2013 17:52, Pol Hallen wrote:

It's a while since I looked at OpenVPN, so this is from unreliable
memory, but IIRC it uses tap devices under Windows and tun devices under
Unix(ish) OSes. Do you see tun0 appear?

sorry for the mistake: tun device

I don't have any tun devices but I can use openvpn to connect to other vpn
client

Do you start openvpn from console or have you a log- file for openvpn?
There stand, what openvpn is doing and how it connect.

Pol
___
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:

2013-04-12 Thread lokada...@gmx.de

On 12.04.2013 19:50, leeoliveshackelf...@surewest.net wrote:

Good afternoon, dear FreeBSD enthusiasts.  Is there anyone who has attempted to 
install a TP-LINK TL-WDN4800 p.c.i.-express wireless network interface card?  I 
am using FreeBSD 9.1 on a Hewlett-Packard xw4400 workstation.  The card works 
perfectly under Windows XP.  However, it seems that the FreeBSD operating 
system does not even recognize the existence of the device;  at least, I cannot 
find any mention of it in the dmesg.boot file.  Any and all comments or 
suggestions will be appreciated.   Also, many thanks to those of you who have 
responded to my previous inquiries.  Yours truly, Newby Lee

P.S.  I failed to mention that the integrated circuit is an Atheros AR9380.

___
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


Have you load ath and wi?
http://www.freebsd.org/doc/en/books/handbook/network-wireless.html

I don't know, if Atheros AR9380 is supported.
https://www.google.de/search?q=tP-LINK+TL-WDN4800+freebsd

___
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: OpenVPN vm cant connect to other VM's

2013-03-11 Thread lokada...@gmx.de

On 06.03.2013 11:38, Brent Clark wrote:

Hi guys

Im struggling with a freebsd vm, that I have that I use for a VPN 
connection too, from my workstation to my home LAN. And I was 
wondering if someone could peer review me and my problem.


OpenVPN is working beautifully. I.e. I can connect to some services 
(apache etc) that I run directly on my FreeBSD / openvpn vm.


What im now trying to achieve is that I can connect to other VMs / 
machines on my home LAN.


Im using tun for my VPN, and my pf.conf looks like so (please see the 
nat on ...)


[root@freebsd /usr/home/bclark]# cat  /etc/pf.conf
ext_if=re0
vpn_if=tun0
int_net=10.0.0.0/24
vpn_net=192.168.200.0/24
set skip on lo0
set optimization normal
#set block-policy drop
set limit { states 2, frags 1, src-nodes 2 }
# Normalization: reassemble fragments and resolve or reduce traffic 
ambiguities.

scrub in all
# Translation: specify how addresses are to be mapped or redirected.
# NAT rules
# enabling NAT currently breaks policy based routing
#nat on $ext_if from { $int_net, $vpn_net } to any - ($ext_if)
#nat on tun0 from { 192.168.200.0/24 } to any - (re0)
nat on re0 from { 192.168.200.0/24 } to any - (re0)

table sshguard persist
block in quick on re0 proto tcp from sshguard to any port ssh label 
ssh brute


What am I missing?

If anyone could assist, it would be appreciated.

Kind Regards
Brent Clark


___
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



Is sysctl net.inet.ip.forwarding=1 ?
http://www.freebsd.org/doc/handbook/network-natd.html
Have you set your route for 10.8.x.x- subnet to your vpn-host?
Else all your traffic will go to your default gateway and when there is 
no route, it will go ins internet.

Make a test with tcpdump and ping to see, where your traffic is going.

Regards
___
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: OpenVPN vm cant connect to other VM's

2013-03-11 Thread lokada...@gmx.de

On 11.03.2013 20:13, Michael Sierchio wrote:

Are you pushing routes in your server.conf file?

(hint - show, don't tell)

- M

On Wed, Mar 6, 2013 at 2:38 AM, Brent Clark brentgclarkl...@gmail.com wrote:

Hi guys

Im struggling with a freebsd vm, that I have that I use for a VPN connection
too, from my workstation to my home LAN. And I was wondering if someone
could peer review me and my problem.

OpenVPN is working beautifully. I.e. I can connect to some services (apache
etc) that I run directly on my FreeBSD / openvpn vm.

What im now trying to achieve is that I can connect to other VMs / machines
on my home LAN.

Im using tun for my VPN, and my pf.conf looks like so (please see the nat on
...)

[root@freebsd /usr/home/bclark]# cat  /etc/pf.conf
ext_if=re0
vpn_if=tun0
int_net=10.0.0.0/24
vpn_net=192.168.200.0/24
set skip on lo0
set optimization normal
#set block-policy drop
set limit { states 2, frags 1, src-nodes 2 }
# Normalization: reassemble fragments and resolve or reduce traffic
ambiguities.
scrub in all
# Translation: specify how addresses are to be mapped or redirected.
# NAT rules
# enabling NAT currently breaks policy based routing
#nat on $ext_if from { $int_net, $vpn_net } to any - ($ext_if)
#nat on tun0 from { 192.168.200.0/24 } to any - (re0)
nat on re0 from { 192.168.200.0/24 } to any - (re0)

table sshguard persist
block in quick on re0 proto tcp from sshguard to any port ssh label ssh
brute

What am I missing?

If anyone could assist, it would be appreciated.

Kind Regards
Brent Clark


___
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

For your own network yes. You must route all your traffic, which is for 
your other lan/ subnet.

Every VPN connect must be corrected routed, equal which vpn is used.
Else every traffic will go loose through internet traffic.

I connect some subnets with OpenVPN and every subnet must configured 
with ccd (its a subfolder
with a filename of certificate- name and content with iroute subnet to 
tell, when client xyz is connect,

subnet is there) and in server.conf. Else this subnets won't routed correct.
You can add this route manuell through its OpenVPN- Gateway.

Show:
server.conf: look for client-config-dir /usr/local/.../ccd in 
server.conf and insert your subnet:

route 192.168.x.x 255.255.255.0

create a file with certificate-name under 
/usr/local/etc/openvpn/config/your connect-name/ccd/ and insert:

iroute 192.168.x.x 255.255.255.0
Look in /var/log/openvpn.log for the right certificate-name.

Everytime this certificat/ client is connect the subnet- traffic will be 
routed through him.


Don't forget to restart openvpn. ;)
*Sorry, my english is not so good*
Regards
___
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: portmaster + unknown dependency problem

2012-12-24 Thread lokada...@gmx.de

On 20.11.2012 20:47, Laszlo Nagy wrote:
I have a 8.2-STABLE system. Last port upgrade was about a year ago. (I 
know, this is bad.) I was trying to update all ports, by following the 
UPDATING file. As it turned out, some ports has been 
deprecated/deleted. I have a problem in particular with the 
py-bittornado-core port. I do not need it. So I have deleted it:


# pkg_info | grep bittornado
#

Clearly, it is not installed. However, when I write in this command:

# portmaster -a

Then I get this error:

=== The net-p2p/py-bittornado-core port has been deleted: Has 
expired: Depends on the deprecated wx 2.4

=== Aborting update

Well, here is the question: why does it want to build a port that does 
not even exist in the ports tree? It was really deleted, there is no 
such thing as /usr/ports/net-p2p/py-bittornado-core . I have also 
tried to do this:


# portmaster -a -x py-bittornado-core

but it has exactly the same problem. Is this a stale dependency to a 
nonexistent port? How can I overcome this problem?


Thanks,

  Laszlo


___
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



make pkg_info | grep *bittornado*
When it found this package, you can think about to delete it.
When you have delete it or doesnt found it, make a portmaster 
--check-depends to solve depends.


___
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: Strange I/O problem on Freenas 0.7.2

2012-10-26 Thread lokada...@gmx.de

Freenas 0.7.2 is old.
Is write cache enable?
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/configtuning-disk.html

Is ZFS in use?
ZFS has a value for tuning.


On 22.10.2012 07:34, Henti Smith wrote:

Hi all.

I'm having a very weird problem with a friends Freenas set-up. I'm
trying to backup his data before migrating to nas4free or just plain
FreeBSD.

The setup is as follows:

HP Microserver N36.
2BG Mem (1713 MB Usable) (no swap)
4 x 2000GB (ST2000DL003-9VT166 Seagate) drives in a graid5 setup.

Initially he had no problems with the setup. Samba share was fine and
he populated the raid set with 3TB of data, but somewhere along the
line the disk I/O went VERY slow.

I initially thought this might be raid related and did some tests but
actually found the problem to be on the discs.

[root@freenas ~]# diskinfo -c /dev/ad4
/dev/ad4
 512 # sectorsize
 2000398934016   # mediasize in bytes (1.8T)
 3907029168  # mediasize in sectors
 3876021 # Cylinders according to firmware.
 16  # Heads according to firmware.
 63  # Sectors according to firmware.
 ad:5YD2VEWQ # Disk ident.

I/O command overhead:
 time to read 10MB block  0.250736 sec   =0.012 msec/sector
 time to read 20480 sectors  79.653738 sec   =3.889 msec/sector
 calculated command overhead =3.877 msec/sector

[root@freenas ~]# diskinfo -t /dev/ad4
/dev/ad4
 512 # sectorsize
 2000398934016   # mediasize in bytes (1.8T)
 3907029168  # mediasize in sectors
 3876021 # Cylinders according to firmware.
 16  # Heads according to firmware.
 63  # Sectors according to firmware.
 ad:5YD2VEWQ # Disk ident.

Seek times:
 Full stroke:  250 iter in 124.649884 sec =  498.600 msec
 Half stroke:  250 iter in  52.112172 sec =  208.449 msec
 Quarter stroke:   500 iter in 167.991252 sec =  335.983 msec
 Short forward:400 iter in  72.027133 sec =  180.068 msec
 Short backward:   400 iter in 150.708625 sec =  376.772 msec
 Seq outer:   2048 iter in   5.748059 sec =2.807 msec
 Seq inner:   2048 iter in 119.395823 sec =   58.299 msec
Transfer rates:
 outside:   102400 kbytes in  39.207296 sec = 2612 kbytes/sec
 middle:102400 kbytes in 113.757181 sec =  900 kbytes/sec
 inside:102400 kbytes in 153.438159 sec =  667 kbytes/sec

S.M.A.R.T. is not reporting any issues either and the speeds are
similar on all the drives. No errors in /var/log either.

Any help or suggestions would be appreciated.

Regards
Henti
___
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: py-bittornado gone

2012-10-26 Thread lokada...@gmx.de

On 26.10.2012 19:50, Damien Fleuriot wrote:

On 26 Oct 2012, at 19:05, Artifex Maximus artife...@gmail.com wrote:


Hello!

py-bittornado gone and I accidentally delete with portmanager at
upgrade. cfv uses and I use cfv for testing torrent so I need
py-bittornado (or py-bittorrent). How can I restore that package?

Bye,
a


How about getting the original source and building from there, or a package for 
pkg_add ?

___
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


Portdowngrade?
http://www.freebsd.org/cgi/ports.cgi?query=portdownstype=all

It works fine in the past, but since Release 8.0 i hadn't use it.
___
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: How to configure USB wifi stick?

2012-09-22 Thread lokada...@gmx.de

On 22.09.2012 16:26, Fbsd8 wrote:

Looking for howto on configuring a
Cisco Linksys AE2500 USB wifi stick.
When I plug it in all I get is the USB msg
ugen3.2: Cisco at usbus3.
FreeBSD handbook does not have section on usb wifi setup.



___
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



Is your USB stick or Chip on hardware list?
http://www.freebsd.org/releases/8.2R/hardware.html#WLAN
rum and ural driver are for some wifi usb sticks.
___
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: How to configure USB wifi stick?

2012-09-22 Thread lokada...@gmx.de

On 22.09.2012 19:14, Fbsd8 wrote:

lokada...@gmx.de wrote:

On 22.09.2012 16:26, Fbsd8 wrote:

Looking for howto on configuring a
Cisco Linksys AE2500 USB wifi stick.
When I plug it in all I get is the USB msg
ugen3.2: Cisco at usbus3.
FreeBSD handbook does not have section on usb wifi setup.




Is your USB stick or Chip on hardware list?
http://www.freebsd.org/releases/8.2R/hardware.html#WLAN
rum and ural driver are for some wifi usb sticks.



NO
___
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



Have you load bwi driver?
it looks like Linksys AE2500 USB use BMC4323 chipset.
https://www.google.de/search?q=Cisco+Linksys+AE2500+chipset
___
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: How to configure USB wifi stick?

2012-09-22 Thread lokada...@gmx.de

On 22.09.2012 20:59, Fbsd8 wrote:

lokada...@gmx.de wrote:

On 22.09.2012 19:14, Fbsd8 wrote:

lokada...@gmx.de wrote:

On 22.09.2012 16:26, Fbsd8 wrote:

Looking for howto on configuring a
Cisco Linksys AE2500 USB wifi stick.
When I plug it in all I get is the USB msg
ugen3.2: Cisco at usbus3.
FreeBSD handbook does not have section on usb wifi setup.




Is your USB stick or Chip on hardware list?
http://www.freebsd.org/releases/8.2R/hardware.html#WLAN
rum and ural driver are for some wifi usb sticks.



NO


Have you load bwi driver?
it looks like Linksys AE2500 USB use BMC4323 chipset.
https://www.google.de/search?q=Cisco+Linksys+AE2500+chipset


I am running 9.1-RC1 and have no boot loader.conf for any wifi modules.
Is there some usb.conf file where I can add statement for my USB 
linksys AE2500 wifi stick so the kernel modules will get auto loaded 
at first use time?

If not, what are the boot loader statements I need to add?
___
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



Create loader.conf self.
cd /boot/
edit loader.conf
/autoboot_delay/=3
When you reboot your system and you see, that you only have 3 or 2 
seconds instead 10 your loader.conf will be load.

When i remeber right, put bwi_load=YES in loader.conf

From command line you can make kldload bwi to load and test it 
without reboot.

___
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: How to configure USB wifi stick?

2012-09-22 Thread lokada...@gmx.de

On 22.09.2012 20:59, Fbsd8 wrote:

I am running 9.1-RC1 and have no boot loader.conf for any wifi modules.
Is there some usb.conf file where I can add statement for my USB 
linksys AE2500 wifi stick so the kernel modules will get auto loaded 
at first use time?

If not, what are the boot loader statements I need to add?
___
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



To load bwi in loader.conf put

if_bwi_load=YES
in it.

http://www.freebsd.org/cgi/man.cgi?query=bwisektion=4manpath=FreeBSD+8.2-RELEASE


___
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: Cant find snmptrapd.conf file

2012-09-07 Thread lokada...@gmx.de

Have you search with find / -iname snmptrap.conf?

Most example config files are under /usr/share/ or /usr/local/share.
Else build a new one and test it. Set something, that is easy to test 
and look.



On 09/06/12 22:14, Maxim Galkin wrote:

Where is the configuration file for snmptrapd?

I'm using net-snmp-5.7.1_7.
and succesfully starting snmpd and snmptrapd.

But there is only a config snmpd.conf !

Why can not I find a file snmptrapd.conf referred in man?
Where do I register my traphandlers?

Help guys


___
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 Install Problem

2012-09-07 Thread lokada...@gmx.de

On 09/07/12 23:10, Chris Neudorf wrote:

An installation step has been aborted. Would you like to restart the 
installation or exit the installer?

---
[ Restart ] [ Exit ]

-

When I click restart I end up with the same result, and I end up in a 
neverending cycle of unable to install.


(I even have a the same problem installing from GhostBSD.)
Is there any remedies to this problem?

In Bios is legacy support for sata enable?
On some systems this is a 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: Upgrading 9.1-BETA1 - 9.1-RC1

2012-08-31 Thread lokada...@gmx.de

On 08/31/12 01:17, warchild wrote:

Hi

That is wrong, this worked for me on one of my servers since I did it
straight away (as soon as I saw the release for rc1.


FreeBSD warsol 9.1-RC1 FreeBSD 9.1-RC1 #0: Tue Aug 14 04:25:06 UTC 2012
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64


that was beta1, and I used freebsd-update to upgrade it!

Now, on another server i would like to do I have the same error as the OP.

Go to: http://update3.freebsd.org/

Simple put, someone has deleted the whole BETA1 directory/brach!? WHY!?

is there another way we can accept the key. or is that data needed.. Can
we get the branch restored? It does work. Rebuilding world is so painful.

thanks



--
View this message in context: 
http://freebsd.1045724.n5.nabble.com/Upgrading-9-1-BETA1-9-1-RC1-tp5737452p5739453.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


There is a stupid way to upgrade FreeBSD:
http://forums.freebsd.org/archive/index.php/t-1280.html
% su
# env UNAME_r=7.1-PRERELEASE freebsd-update upgrade -r 7.1

i use
# env UNAME_r=8.2 freebsd-update upgrade -r 9.1-RC1
But it doesn't help me with tool [, so i can't update with csup. :(

Greetings
___
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: 9.0 support for RealTek NIC - re0 driver

2012-08-31 Thread lokada...@gmx.de

On 08/29/12 18:14, d...@safeport.com wrote:

This card is on a Dell Inspiron. It works perfectly on 8.x. Dmesg on 8.2
reports it as:

  re0: RealTek 8101E/8102E/8102EL/8103E PCIe 10/100baseTX

pciconf:

re0@pci0:4:0:0: class=0x02 card=0x04341028 chip=0x813610ec 
rev=0x02 hdr=0x00

vendor = 'Realtek Semiconductor'
device = 'Realtek 10/100/1000 PCI-E NIC Family all in one NDIS 
Driver v5.728.0604.2009 06/04/2009 (Rtl8023)'

class  = network
subclass   = ethernet

On 9.0 I got it to work once or twice out of a couple of dozen tries.

9.0 dmesg reports:

  re0: RealTek 8139C+/8169/8169S/8110S PCI ...

The release docs imply the card is supported. I did not see a PR. 
Anyone else with similiar issues?

Is the MAC changing?
Give dmesg some message about it?
___
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: /root/bin and /usr/local/i386-portbld-freebsd9.0

2012-08-31 Thread lokada...@gmx.de

On 08/31/12 20:23, Alexander Kapshuk wrote:
I've found the two directories below on my system. I don't remember 
creating them. So I'd like to be able to find out what package(s) 
has/have created them, if possible.


# ls -ld /root/bin/
drwxr-xr-x  2 root  wheel  512 Aug 29 22:52 /root/bin/
# ls -Rl /root/bin/
total 0

# ls -dl /usr/local/i386-portbld-freebsd9.0
drwxr-xr-x  4 root  wheel  512 Jul  8 22:32 
/usr/local/i386-portbld-freebsd9.0


# ls -Rl /usr/local/i386-portbld-freebsd9.0
total 8

Which program do you use to upgrade/ build ports?
http://forums.freebsd.org/showthread.php?t=21088

___
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: /root/bin and /usr/local/i386-portbld-freebsd9.0

2012-08-31 Thread lokada...@gmx.de

On 08/31/12 21:32, Alexander Kapshuk wrote:

On 08/31/12 22:26, lokada...@gmx.de wrote:
Which program do you use to upgrade/ build ports? 

portupgrade.

I had a look at the link you'd included in your previous email. I'm 
still unclear as to where the two directories came from.


Thanks.



I think it comes from portupgrade.
I use portmaster, but when i look at google, i found some thinks with 
portupgrade and portbld.

I think, portbld is building for some ports, but on different places.

Kick it (or rename it), look that all ok and make a upgrade, if available.
If one port need it, it will create it.

greetings
___
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: /root/bin and /usr/local/i386-portbld-freebsd9.0

2012-08-31 Thread lokada...@gmx.de

On 08/31/12 21:43, Alexander Kapshuk wrote:

On 08/31/12 22:41, lokada...@gmx.de wrote:

I think it comes from portupgrade.
I use portmaster, but when i look at google, i found some thinks with 
portupgrade and portbld.

I think, portbld is building for some ports, but on different places.

Kick it (or rename it), look that all ok and make a upgrade, if 
available.

If one port need it, it will create it.

Understood. Thanks.

Any ideas about /root/bin?

Not really. It looks like an error like my tool [.
I get this after i would go to head (in february?) and get back this 
linking.


No chance to get of it. Every new buildworld will look for it. :(
___
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: Twitter.com is loading slowly after updating to Firefox 13.0.1

2012-08-23 Thread lokada...@gmx.de

On 08/21/12 22:48, Toomas Aas wrote:

Tue, 17 Jul 2012 kirjutas Lars Eighner luvbeas...@larseighner.com:


On Tue, 17 Jul 2012, Toomas Aas wrote:


Hello!

I'm having this problem on two different computers, one running 
8.3-STABLE and the other running 9.0-STABLE. After updating Firefox 
from 12.0 to 13.0.1, whenever I access twitter.com, I can log in but 
after that a message appears saying that Twitter.com is loading 
slowly, and the site is practically unusable - clicking on any of 
the links has no effect.


If you do not know that there is something in firefox (now 13ish) 
which you

must have, deinstall it and install firefox-esr (now 10ish).


I was away from my computer for the past month, but now that I 
returned and replaced Firefox 13.0.1 with 10.0.6 ESR, twitter.com is 
again behaving normally for me. I'd like to thank everyone who 
recommended ESR in this thread



I have the same problem.
My system is an old P4-3GHz with Hypterthreading (Northwood) and with 
ULE Scheduler isnt funny.
I must wait until a site is loaded. Bevor i can't make another tab or 
open bookmarks.
I make a kernel with SCHED_4BSD and it work better. Now i can open 
another tab or bookmark while a site is loading (but fast isnt it ;( ).


I will build a new kernel, look and hope it will be better.
System is FreeBSD 9.0 with custom kernel.
___
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: Double boot

2012-08-21 Thread lokada...@gmx.de

i had same error after some updates and fixed it with

fdisk -B -b /boot/boot0/device/

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/boot-blocks.html



On 08/17/12 06:55, p...@sanciai.lt wrote:

  Hello,
 I have installed FreeBSD 8.3 to Toshiba Satellite besides Windows XP.
 Unix boots ok, but I can't reach  Windows anymore!
   It shows:
 F1 Win
 F2 FreeBSD

 F6 PXE
 Boot F1
 -

  If I press F1, it stays hanging forever.
  I'm relatively new to FreeBSD. Please, advise which way to go out
 of this  situation. When I  rerun sysinstall, there is a warning:
chunk 'ad0s2' [179380224..234441647] does not start on a track boundary
 (the chunk of FreeBSD) How to change the boundary of chunk? CDROM is 
not reachable, something happened to it. I can use only FreeBSD 
instruments.

  Which of them?
 Thanks in advance.


___
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


How can i disable cups, docbook, gutenprint and other ports?

2012-06-22 Thread lokada...@gmx.de

Hi all,

How can i disable cups, docbook and other ports from compiling after 
port update?

I have no printer and no use of cups or docbook.

*Sorry for my english*
Greetings
___
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: Fwd: Need latest xorg

2012-06-22 Thread lokada...@gmx.de

On 06/20/12 23:25, Lynn Steven Killingsworth wrote:

I don't seem to have generated much comment.

I suspect you are thinking as I do that if your servers don't 
immediately download then their is a bandit on my Internet line??

Xorg 7.7 for testing.
http://miwi.bsdcrew.de/2012/06/cft-xorg-7-7-ready-for-testing/
but i can't load this site at the moment. :(
___
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: openoffice doesn't work - any ideas?

2012-05-19 Thread lokada...@gmx.de

On 05/19/12 13:24, User Wojtek wrote:

[wojtek@wojtek ~/robod]$ openoffice-3.4.0
[Java framework] Error in function createSettingsDocument 
(elements.cxx).javaldx failed!
terminate called after throwing an instance of 
'com::sun::star::uno::RuntimeException'



compiled fine, installed without problems jdk 1.6 too.

any ideas? thanks
___
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



Google find many things with javaldx failed.
Is a problem with java, but different solutions (wrong xml, home 
permission, java- version ...).


Hope you find a solution.
___
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: Wine for Diablo 3 on FreeBSD 9.0R amd64

2012-05-19 Thread lokada...@gmx.de

On 05/17/12 07:54, Любомир Григоров wrote:

We have to wait, unfortunately. I am using a Linux partition with Wine
meanwhile. As long as it's not mainstream, it will be hard to do. Not to
mention port is at 1.4.

FreeBSD have 2 wine- ports. :)
http://www.freebsd.org/cgi/ports.cgi?query=wine-1stype=allsektion=all
wine for 1.4 and wine-devel for 1.5

But i can't help with Diablo 3.
___
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: Can't install WindowMaker

2012-03-17 Thread lokada...@gmx.de

On 03/15/12 21:24, Sabine Baer wrote:
I do not undestand exactly, what You mean. I did a cvsup -g -L 2 
ports-supfile several times, I went to all /usr/ports/x11*/dirctories 
and made a 'make clean' for al the ports therein, but nothing helped. 
Sabine 

I see that you have a german mailadress, so i will write in germany.

Guck mal nach, ob du unter /etc/ eine Datei mit dem Namen portsnap.conf 
hast.

Wenn ja, bearbeitet die Datei einmal und ruf
portsnap fetch
portsnap extract
auf. Damit werden alle Ports unter /usr/ports auf einen aktuellen Stand 
gebracht.

Danach reicht eigentlich ein
portsnap fetch
portsnap update
aus, um auf die letzten Ports zu kommen.

Wenn du eine Flatrate hast, kannst du vielleicht auch mal dein ganzes 
System auf 9.0 aktualisieren (freebsd-update ist für die 
Standardinstallation ohne Kompilierung ganz gut).
Einige Probleme treten auf, wenn die Libarys auf dem System zu alt sind, 
aber in den Ports aktuelle benötigt werden.


mfg
___
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: (no subject)

2011-09-08 Thread lokada...@gmx.de

On 09/07/11 21:28, Mike Hix wrote:

On Wed, Sep 7, 2011 at 7:43 AM, Selimwowse...@web.de  wrote:


hey
could you please include broadcom bcm4313 drivers to freebsd9.0
i cant use freebsd just because of that driver..
___
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


hey
could you have a look at the man pages for bwn and bwi...


When Adriane have time, he will work on it.
http://lists.freebsd.org/pipermail/freebsd-wireless/2011-August/000448.html
I don't know, if he had worked on it.

Sorry for my english :(
___
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