Search results

  1. M

    FreeBSD UEFI pxeboot

    Hi, I had the same problem with UEFI boot by network and found that enough is to replace /boot/pxeboot with the /boot/loader.efi. That worked for me.
  2. M

    mount_smbfs: unable to open connection: syserr = Authentication error

    I had the same problem and found solution here. Thanks VladiBG ! In my case sufficient was to set ntlm auth = yes. The protocols are set as follow: server max protocol = SMB3_11 server min protocol = NT1 client max protocol = SMB3_11 client min protocol = NT1
  3. M

    Solved No sound in KDE4

    How did you perform the sound test? I have the same problem and I can not hear any sounds from KDE.
  4. M

    mount iphone

    Yesterday a new port was added to the ports tree, that may be interesting for this thread: sysutils/fusefs-ifuse
  5. M

    USB 3G Modem

    The AT Command is: AT+CPIN="1234" Check also this page: https://www.anywi.com/3g/
  6. M

    how to check if a filesystem is mounted?

    You can use df command, giving a path or a device as parameter and checking the return value. For example: df / ; echo The return value is $? Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ada0s3a 90822300 18912476 64644040 23% / The return value is 0 df /blah ; echo...
  7. M

    [FreeBSD 8.1] Timeouts on AHCI. Broken HDD?

    First of all, thanks for all answers :) The problem is exactly as described here: I have exactly same drive: Samsung F2 1.5TB 5200rpm EcoGreen and similar as this thread on "FreeBSD-Stable" list, this drive was stop respond usually with heavy overload (in my case, when ZFS sync data to...
  8. M

    [FreeBSD 8.1] Timeouts on AHCI. Broken HDD?

    Hi, I have a problem with one of HDD, connected via SATA2, using AHCI driver. My disks are: ada0 at ahcich0 bus 0 scbus1 target 0 lun 0 ada0: <TOSHIBA MK8034GSX AH303B> ATA-7 SATA 1.x device ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes) ada0: Command Queueing enabled ada0...
  9. M

    Cannot switch java VM

    Hi, I have installed two versions of java and javavm wrapper: diablo-jdk-1.6.0.07.02_10 Java Development Kit 1.6.0_07.02 javavmwrapper-2.3.5 Wrapper script for various Java Virtual Machines openjdk6-b20_3 Oracle's Java 6 virtual machine release under the GPL v2 I tried to switch between...
  10. M

    [FreeBSD 7.3] ppp consumes a lot CPU usage

    In last days I configured ppp connection with PPPoE on FreeBSD 7.3. I noticed, that ppp process consumes a lot of CPU usage. For example, for network traffic about 7-8 Mbits, ppp has about 45-55% of CPU (Intel Pentium 4 1.6 GHz). Is it normal, that ppp consumes so much resources? If not, how can...
  11. M

    Which is your Favourite Linux?

    If I must use Linux, my favorite is Debian, but I prefer OS X for workstation and FreeBSD for server.
  12. M

    Mounting blu-ray Input/output error

    Try mount disc using UDF fs: mount -t udf /dev/cd0 /mnt/blu
  13. M

    Post install configuration

    Did you updated your ports tree? I have installed: libvorbis-1.2.3_1,3 Audio compression codec library png-1.4.3 Library for manipulating PNG images tiff-3.9.4 Tools and library routines for working with TIFF images And portaudit returns no vulnerable ports.
  14. M

    Post install configuration

    Hi, login as root and perform following steps: 1. Update ports tree portsnap fetch update 2. Install portmaster (if you haven't yet): cd /usr/ports/ports-mgmt/portmaster && make install clean 3. If you use tcsh(1) shell, then rehash commands: rehash 4a. Update your vulnerable ports...
  15. M

    D-Link WDA 1320 Compatability

    Checking your ifconfig.txt i see that you already have loaded ath(4) driver. ath0: is your wireless card, wlan0: is wireless device that you should configure. Check the link for thread which i wrote you in my previous post. There you will find all the information to configure wireless.
  16. M

    D-Link WDA 1320 Compatability

    Have you tried ath(4) driver? Load it as root: kldload if_ath and check ifconfig. Also check this thread for wireless network configuration.
  17. M

    8.0-STABLE 'netstat -r' command doesn't show local peers

    I think that is right. FreeBSD 8.0 has reimplemented L2 address trasnlation table. In FreeBSD 8.0 Release Notes, you can find: 2.2.3 Network Protocols [...] The FreeBSD L2 address translation table has been reimplemented to reduce lock contention on parallel processing and simplify the...
  18. M

    run fsck on root file system

    If you don't want reboot your system (for any reasons) you can also remount file system as read-only. For example: mount -fr / and run fsck. After finish you can remount file system as read-write: mount -fw / This method may be unsafe if you have only one partition for system (without...
  19. M

    Running selected rc script with another routing table.

    gordon, phoenix: thanks for your answer. I added static routes and openvpn to /etc/rc.local. The "service" script isn't present in 8.0-RELEASE, but i got it from 8-STABLE and it works. The problem is solved.
  20. M

    Running selected rc script with another routing table.

    This syntax is working for default FIB (first, numbered as "0"). My goal is set some static routes for i.e. FIB 1. From the commad line i can do follow: setfib 1 route add 192.168.1.0/24 192.168.0.1 but is there any way to configure this statics via rc?
Back
Top