[SOLVED] Bridging and Hostapd problems.

Hello!
I want to let a computer share the network it's connected to via wifi,
I am trying to use hostapd and after following the guide at https://wiki.archlinux.org/index.php/So … cess_Point
i have managed to get the access point up, but when I try to connect to it I get "> DHCP IP lease attempt failed"
Most examples mention dnsmasq, and I have it running with this configuration:
#cat /etc/dnsmasq.conf
interface=wlan0
dhcp-range=192.168.0.2,192.168.0.5,255.255.255.0,12h #
#cat /etc/network.d/bridge
INTERFACE="br0"
CONNECTION="bridge"
DESCRIPTION="Example Bridge connection"
BRIDGE_INTERFACES="eth0"
IP="dhcp"
#cat /etc/conf.d/netcfg
NETWORKS=(bridge)
WIRED_INTERFACE="eth0"
WIRELESS_INTERFACE="wlan0"
#cat /etc/conf.d/
NETWORKS=(bridge)
WIRED_INTERFACE="eth0"
WIRELESS_INTERFACE="wlan0"
#cat /etc/hostapd/hostapd.conf
interface=wlan0
bridge=br0
driver=nl80211
logger_syslog=-1
logger_syslog_level=1
logger_stdout=-1
logger_stdout_level=2
dump_file=/tmp/hostapd.dump
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
ssid=test_essid
hw_mode=g
channel=7
beacon_int=100
dtim_period=2
max_num_sta=5
rts_threshold=2347
fragm_threshold=2346
macaddr_acl=0
auth_algs=3
ignore_broadcast_ssid=0
wmm_enabled=1
wmm_ac_bk_cwmin=4
wmm_ac_bk_cwmax=10
wmm_ac_bk_aifs=7
wmm_ac_bk_txop_limit=0
wmm_ac_bk_acm=0
wmm_ac_be_aifs=3
wmm_ac_be_cwmin=4
wmm_ac_be_cwmax=10
wmm_ac_be_txop_limit=0
wmm_ac_be_acm=0
wmm_ac_vi_aifs=2
wmm_ac_vi_cwmin=3
wmm_ac_vi_cwmax=4
wmm_ac_vi_txop_limit=94
wmm_ac_vi_acm=0
wmm_ac_vo_aifs=2
wmm_ac_vo_cwmin=2
wmm_ac_vo_cwmax=3
wmm_ac_vo_txop_limit=47
wmm_ac_vo_acm=0
eapol_key_index_workaround=0
eap_server=0
own_ip_addr=127.0.0.1
wpa=2
wpa_passphrase=XXXXXXXXXXXXX
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP
This is the output of ifconfig
br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.144.0.225 netmask 255.255.252.0 broadcast 10.144.3.255
inet6 fe80::20f:53ff:feb0:2c49 prefixlen 64 scopeid 0x20<link>
ether 00:0f:53:b0:2c:49 txqueuelen 0 (Ethernet)
RX packets 263 bytes 29403 (28.7 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 56 bytes 6081 (5.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
eth0: flags=4419<UP,BROADCAST,RUNNING,PROMISC,MULTICAST> mtu 1500
ether b8:27:eb:fc:1c:e5 txqueuelen 1000 (Ethernet)
RX packets 8926 bytes 704068 (687.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 658 bytes 139938 (136.6 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 16436
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 4 bytes 212 (212.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4 bytes 212 (212.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
mon.wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
unspec 00-0F-53-B0-2C-49-3A-30-00-00-00-00-00-00-00-00 txqueuelen 1000 (UNSPEC)
RX packets 47 bytes 3140 (3.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::20f:53ff:feb0:2c49 prefixlen 64 scopeid 0x20<link>
ether 00:0f:53:b0:2c:49 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 247 bytes 32731 (31.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Note that the network I am connecting to is 10.144. and I can ssh into the machine trough this network.
When I connect with a wifi client I want it to get a 10.144. address and be able to interact with the other users
on the network as if it was directly connected to the network. (My main goal is this, but if I can get it working
as a router it's a improvement too)
Thanks for your help!
---EDIT--
I have now tried following this tutorial:
http://sirlagz.net/2012/08/09/how-to-us … er-part-1/
This part works, but when I come to part 2
http://sirlagz.net/2012/08/10/how-to-us … er-part-2/
It has this part that I cannot figure howto convert this to netcfg
iface br0 inet dhcp
bridge_ports eth0 wlan0
pre-up ifconfig eth0 0.0.0.0 up
pre-up ifconfig wlan0 0.0.0.0 up
pre-up brctl addbr br0
pre-up brctl addif br0 eth0
post-down ifconfig wlan0 0.0.0.0 down
post-down ifconfig eth0 0.0.0.0 down
post-down brctl delif br0 eth0
post-down brctl delbr br0
Last edited by Reccra (2012-09-28 09:32:36)

Thanks for your replies,  now I have disabled ip forwarding,
the problem with ssh was that it tried to do a dns lookup that failed.
The reason it failed is that it seems like the bridge host (the one with br0) does not seem to be able to connect anywhere except to the client that is connected to it.
I mean:
(10.144.) - (10.144.2.107) - (10.144.0.46)
Net - Bridge - Client,
I can ssh into Bridge from Client, but I send cant anything (Ping/connect etc) from Bridge to Net. Everything works fine from Client to net tough.
[root@Bridge etc]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.144.1.1 0.0.0.0 UG 205 0 0 br0
10.144.0.0 0.0.0.0 255.255.252.0 U 205 0 0 br0
[root@Bridge etc]# ss -arpt
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 0 *:ssh *:* users:(("sshd",267,3))
ESTAB 0 0 10.144.2.107:ssh 10.144.0.46:56351 users:(("sshd",271,3))
ESTAB 0 0 10.144.2.107:ssh 10.144.0.46:56395 users:(("sshd",345,3))
LISTEN 0 0 :::ssh :::* users:(("sshd",267,4))
br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.144.2.107 netmask 255.255.252.0 broadcast 10.144.3.255
inet6 fe80::ba27:ebff:fefc:1ce5 prefixlen 64 scopeid 0x20<link>
ether 00:0f:53:b0:2c:49 txqueuelen 0 (Ethernet)
RX packets 73020 bytes 6867080 (6.5 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3130 bytes 800748 (781.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
eth0: flags=4419<UP,BROADCAST,RUNNING,PROMISC,MULTICAST> mtu 1500
ether b8:27:eb:fc:1c:e5 txqueuelen 1000 (Ethernet)
RX packets 74579 bytes 9464012 (9.0 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 5060 bytes 818996 (799.8 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 16436
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 156 bytes 15830 (15.4 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 156 bytes 15830 (15.4 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
mon.wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
unspec 00-0F-53-B0-2C-49-3A-30-00-00-00-00-00-00-00-00 txqueuelen 1000 (UNSPEC)
RX packets 477 bytes 53447 (52.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet6 fe80::20f:53ff:feb0:2c49 prefixlen 64 scopeid 0x20<link>
ether 00:0f:53:b0:2c:49 txqueuelen 1000 (Ethernet)
RX packets 8478 bytes 1086201 (1.0 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 76359 bytes 12516094 (11.9 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
[root@Bridge etc]# arp -n
Address HWtype HWaddress Flags Mask Iface
10.144.1.1 (incomplete) br0
10.144.2.162 ether 00:23:5a:28:af:cb C br0
10.144.0.46 ether 00:23:4d:1b:19:b2 C br0
I tried adding the gw manually with arp -s , but this didn't help.
Thanks for your help!

Similar Messages

  • CS5 Bridge and Permission Problems

    Hello there;
    I just started experiencing a problem with Adobe Bridge.  I am (and have been) using CS5 with no problems at all until just recently.  Adobe Bridge does not seem to delete image files or rename image files for some strange reason.  I get a message that says... "The file cannot be renamed because you do not have sufficient permissions or it is in use"!!!  I have never experienced this since I installed CS5.  I know the file(s) is (are) NOT in use.  I am not able to delete or rename.  Not sure if any other Bridge functions will suffer through the same problem as well. 
    Anyone experienced this issue before?  Any suggestions to resolve it?  Many thanks.

    Hi Curt;
    Many thanks for your response. 
    When I view the thumbnail images in Bridge, there is NO padlock symbol at all.  Since I shoot everything in RAW, Explorer and Windows do not display the image itself, but an icon representing the .CR2 file (I shoot Canon).  I have also tried the right-click to check the Properties of the files, and there is NO check mark for "read only".  I am still at a loss.  I sincerely appreciate your help if you can think of anything else.

  • Bridge and NEF problem

    I downloaded PS6 to my new Mac Mini and Bridge will not open my NEF thumbnails. I did not have this problem on my Mac Book Pro that I was using previously.  Is there something else I need to download or change in preferences?

    I finally got my Messaging Bridge (Tibco to a WLS Cluster) to work. See my post 3 messages before yours - to which no-one responded... :-(
              So here goes with my suggestion based on what I have done.
              1. Create a Distributed Destination for the WLS queue and "auto deploy" it your cluster. (Read the manual on how to do that, it is quite straightforward).
              2. In the Local Bridge Destination, put :
              Connection URL - nothing
              Initial Context Factory - weblogic.jndi.WLInitialContextFactory
              Connection Factory JNDI Name - <your JMS conection factory name>
              Destination JNDI Name - <the JNDI name given to the Distributed Destination>.
              I hope that works.
              Andy

  • [solved] Shutdown and Mount problems

    Hello Arch-community
    I did a fresh webinstallation with xfce.
    Everybody seems to be running fine, expect this rights problem with shutdown/reboot and mounting CDs and other partitions.
    This is my ~/.xinitrc:
    exec ck-launch-session dbus-launch startxfce4
    The daemons look like this:
    DAEMONS=(syslog-ng !network netfs crond dbus hal networkmanager)
    My user is in the following groups:
    lp wheel games network video audio storage scanner power
    I also added the code from the HALs-wikipage to /etc/PolicyKit/PolicyKit.conf - However the folder didn´t even exist and I had to create that file.
    And I can´t seem to find any other solutions =/
    I hope you can help me...
    Last edited by TheBigMole (2011-03-20 02:47:35)

    stqn wrote:Maybe you are using the /etc/inittab method for autologin?
    No, I was using the ~/.bash_profile method. I tried commenting it out and starting xfce manually after login with the same problem.
    However, while rereading the wikiarticle I decided to use slim, which solved my problems.
    Thank you for yor help, everyone!

  • [SOLVED] SSD and boot problem

    I recently bought a new 30GB Corsair SSD, and it runs wonderfully. However, the device takes a considerably long time to initialize on boot (~30-45 seconds).
    Here's a snippet of the relevant dmesg output:
    [ 23.360042] ata5: lost interrupt (Status 0x58)
    [ 23.363366] ata5: drained 65536 bytes to clear DRQ
    [ 23.447633] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
    [ 23.447673] scsi 4:0:0:0: CDB: cdb[0]=0x12: 12 00 00 00 60 00
    [ 23.447683] ata5.00: cmd a0/01:00:00:60:00/00:00:00:00:00/a0 tag 0 dma 96 in
    [ 23.447684] res 40/00:02:00:24:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
    [ 23.447754] ata5.00: status: { DRDY }
    [ 23.447810] ata5: soft resetting link
    [ 23.653843] ata5.00: configured for UDMA/33
    [ 23.654431] ata5: EH complete
    [ 23.654435] scsi scan: 96 byte inquiry failed. Consider BLIST_INQUIRY_36 for this device
    [ 23.657130] scsi 4:0:0:0: CD-ROM TOSHIBA DVD-ROM SD-R1312 1011 PQ: 0 ANSI: 5
    [ 54.373360] ata5: lost interrupt (Status 0x58)
    [ 54.376674] ata5: drained 65536 bytes to clear DRQ
    [ 54.465937] ata5.00: limiting speed to UDMA/25:PIO4
    [ 54.465941] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
    [ 54.465985] sr 4:0:0:0: CDB: cdb[0]=0x5a: 5a 00 2a 00 00 00 00 00 80 00
    [ 54.465996] ata5.00: cmd a0/01:00:00:80:00/00:00:00:00:00/a0 tag 0 dma 16512 in
    [ 54.465997] res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
    [ 54.466085] ata5.00: status: { DRDY }
    [ 54.466144] ata5: soft resetting link
    I haven't encountered this problem with any other drive I've put in there, so I'm guessing it must be SSD-related. Has anyone else experienced something similar, and could you point me in the right direction? Thanks.
    Last edited by itsbrad212 (2012-04-01 00:05:28)

    itsbrad212 wrote:
    falconindy wrote:Consider RMA'ing the drive.
    Do you think it's defective/worth replacing? It's more of an annoyance than anything, and the drive has no other visible issues other than on initialization.
    Yes, I do. Healthy drives don't timeout on simple DMA initialization requests.

  • Messaging Bridge and cluster problem

    I am trying to setup the Messaging Bridge between MQ and WLS. Originally, we were going to use the Foreign JMS setup but the loss of transactionality was an issue (QManager cannot be assumed to be on the same box as our cluster). So we moved to the Messaging Bridge in the hopes that it will provide greater stability.
              I am following the example provided here https://messaging-bridge.projects.dev2dev.bea.com/ and setting up 2 JMS Destinations. Setting up the MQ Destination was trivial given that I had done it already with the Foreign JMS setup.
              But the destination that points to the internal WLS JMS Queue is a little trickier given that we are using clusters. I am stuck trying to figure out what Connection URL I should be using. According the the example above, I should use t3://localhost:7001 but in a clustered setup, what do I point to?

    I finally got my Messaging Bridge (Tibco to a WLS Cluster) to work. See my post 3 messages before yours - to which no-one responded... :-(
              So here goes with my suggestion based on what I have done.
              1. Create a Distributed Destination for the WLS queue and "auto deploy" it your cluster. (Read the manual on how to do that, it is quite straightforward).
              2. In the Local Bridge Destination, put :
              Connection URL - nothing
              Initial Context Factory - weblogic.jndi.WLInitialContextFactory
              Connection Factory JNDI Name - <your JMS conection factory name>
              Destination JNDI Name - <the JNDI name given to the Distributed Destination>.
              I hope that works.
              Andy

  • Need help solving listener and Oracle problems with Mac OS X 10.4 "Tiger"

    I have Oracle 10g working on Mac OS X 10.4 "Tiger" except for the listener and Oracle net 8 configuration. I have not been able to get the Oracle listener to work with my built in Mac Airport wireless network card or built in ethernet card. I keep getting the errors
    connection refused cannot start listener. Can anyone offer help?
    Thanks
    Ben
    [email protected]

    Hi Ben,
    how does your listener.ora look like ?
    Mine is:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ronald-g4-eth)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = ronald-g4-wifi)(PORT = 1521))
    and listens to the ethernet and airport address.
    When do you get the problems ?
    regards,
    Ronald
    http://ronr.nl/unix-dba

  • [SOLVED]mplayer and urxvt problems after update

    Hello to all fellow archers!
    Couple of days back, I updated xorg-server, like most of the people around here, so I asume that issues I`m going to describe, could be related to xorg-server being recently updated.
    First issue is related to mplayer not playing movies in fullscreen format, despite being told to do so. The image size of a video is about 20% of screen resolution size, while the rest of the screen is just black.
    MPlayer 1.0rc2-4.3.2 (C) 2000-2007 MPlayer Team
    CPU: AMD Athlon(tm) Processor (Family: 6, Model: 6, Stepping: 2)
    CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 0
    Compiled with runtime CPU detection.
    115 audio & 237 video codecs
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Playing Death.Proof[2007][Unrated.Editon]DvDrip[Eng]-aXXo.avi.
    AVI file format detected.
    [aviheader] Video stream found, -vid 0
    [aviheader] Audio stream found, -aid 1
    VIDEO: [DX50] 664x280 12bpp 23.976 fps 741.7 kbps (90.5 kbyte/s)
    Clip info:
    Software: VirtualDubMod 1.5.10.1 (build 2366/release)
    SUB: Detected subtitle file format: microdvd
    SUB: Read 1877 subtitles.
    SUB: Added subtitle file (1): ./Death.Proof[2007][Unrated.Editon]DvDrip[Eng]-aXXo.srt
    [VO_XV] It seems there is no Xvideo support for your video card available.
    [VO_XV] Run 'xvinfo' to verify its Xv support and read
    [VO_XV] DOCS/HTML/en/video.html#xv!
    [VO_XV] See 'mplayer -vo help' for other (non-xv) video out drivers.
    [VO_XV] Try -vo x11.
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
    AUDIO: 48000 Hz, 2 ch, s16le, 112.0 kbit/7.29% (ratio: 14000->192000)
    Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
    ==========================================================================
    AO: [oss] 48000Hz 2ch s16le (2 bytes per sample)
    Starting playback...
    VDec: vo config request - 664 x 280 (preferred colorspace: Planar YV12)
    VDec: using Planar YV12 as output csp (no 0)
    Movie-Aspect is 2.37:1 - prescaling to correct movie aspect.
    VO: [x11] 664x280 => 664x280 Planar YV12
    [swscaler @ 0x89d5f50]SwScaler: using unscaled yuv420p -> rgb32 special converter
    A: 67.6 V: 67.6 A-V: -0.001 ct: 0.114 1621/1621 7% 12% 1.0% 0 0
    Exiting... (Quit)
    I tried switching between many different video out drivers, the only one that plays video normaly is x11, but the image size is very small.
    I`m using vesa driver and my video card is
    lspci | grep VGA
    01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV250 If [Radeon 9000] (rev 01)
    xorg.conf http://pastebin.com/f314eaaed
    Xorg.0.log http://pastebin.com/f570dbcf5
    I found a partial solution to mplayer problem in this tread http://bbs.archlinux.org/viewtopic.php?id=60054 where patroclo7 stated, that from this update on, X is using autodetection and doesn`t need xorg.conf anymore.
    Anyways I followed the advice deleted my xorg.conf and rebooted arch without xorg.conf. Everything works, even the video in mplayer is running at normal size, however the default screen resolution is a bit to high.
    I would like to set it to 1024x768 (monitor, philips 107E5) but don`t have a clue how to change screen resolution without xorg.conf being present. I`m using openbox as a standalone wm.
    I still have a backup of my working xorg.conf file, so I can switch between xorg.conf and the other config.
    Just for the record, video files are displayed properly using vlc as media player on both described configurations.
    To sum everything up, how to set screen resolution at 1024x 768 without xorg.conf being present or how to fix mplayer displaying movies in a very small screen/box, despite running in fullscreen mode (using xorg.conf).
    My second problem is regarding urxvt and its borderless. If I set it to true urxvt hangs on start everytime. The terminal is displayed in top left corner of the screen but it`s frozen and can`t be used, while being set to false works like a charm.
    Xdefaults
    #####Urxvt Config#####
    URxvt.termName: rxvt
    URxvt.transparent: true
    URxvt.inheritPixmap: true
    URxvt.imLocale: en_US.utf8
    URxvt.scrollBar: false
    URxvt.saveLines: 5000
    URxvt.urlLauncher: kazehakase
    URxvt.cursorBlink: true
    URxvt.fading: 15%
    URxvt.shading: 50
    !URxvt*background: [80]#ece9e2
    !URxvt.foreground: [80]#3d352a
    urxvt.depth: 24
    urxvt*background: rgba:0000/0000/0000/aaaa
    urxvt*foreground: rgba:ffff/ffff/ffff/aaaa
    URxvt.tintColor: #d9d7d1
    URxvt.borderLess: false
    !URxvt.InternalBorder: .5
    URxvt.externalBorder: .5
    URxvt.borderColor: #acacac
    ######Urxvt Colors######
    *foreground: rgba:0000/0000/0000/dddd
    *background: rgb:10/10/10
    !black
    *color0: rgb:20/20/20
    *color8: rgb:75/77/73
    !red
    *color1: rgb:cc/00/00
    *color9: rgb:ef/29/29
    !green
    *color2: rgb:4e/9a/06
    *color10: rgb:8a/e2/34
    !brown/yellow
    *color3: rgb:c4/a0/00
    *color11: rgb:fc/e9/4f
    !blue
    *color4: rgb:34/65/a4
    *color12: rgb:72/9f/cf
    !magenta
    *color5: rgb:75/50/7b
    *color13: rgb:ad/7f/a8
    !cyan
    *color6: rgb:06/98/9a
    *color14: rgb:34/e2/e2
    !white
    *color7: rgb:d3/d7/cf
    *color15: rgb:ee/ee/ec
    ! #####Xterm Config#####
    XTerm*background: black
    XTerm*foreground: gray
    XTerm*highlightColor: orange
    ######Stjerm Config######
    stjerm.key: f12
    stjerm.opacity: 50
    ######Stjerm colors######
    stjerm.color0: #202020
    stjerm.color1: #cc0000
    stjerm.color2: #4e9a06
    stjerm.color3: #c4a000
    stjerm.color4: #3465a4
    stjerm.color5: #75507b
    stjerm.color6: #06989a
    stjerm.color7: #d3d7cf
    stjerm.color8: #757773
    stjerm.color9: #ef2929
    stjerm.color10: #8ae234
    stjerm.color11: #fc394f
    stjerm.color12: #729fcf
    stjerm.color13: #ad7fa8
    stjerm.color14: #34e2e2
    stjerm.color15: #eeeeec
    ######Mouse Cursor Theme######
    Xcursor.theme:Neutral_Plus_Inv
    Any advice is highly appreciated.
    Regards,
    bandito
    Last edited by bandito (2008-12-05 21:35:11)

    The solution for mplayer using xorg.conf file as follows:
    To get fullscreen video working just add
    zoom = yes
    to /.mplayer/config
    In case if you are using gui for mplayer and get the following error trying to play a video file
    Error opening/initializing the selected video_out (-vo) device
    Open /.mplayer/gui.conf and change vo_driver from "xv" to "x11".
    Urxvt solution is described here http://bbs.archlinux.org/viewtopic.php?pid=457421 but also check this for explanation http://comments.gmane.org/gmane.comp.wi … enbox/3947
    regards
    Bandito
    Last edited by bandito (2008-12-05 21:34:31)

  • [solved] sudo and yaourt problems after recent updates

    After recent updates (past week) yaourt started giving me problems. When using yaourt it prompts me for sudo password but it does not seem to use my sudo configuration.
    I get this:
    [sudo] password for root:
    [sudo] password for root:
    Password:
    su: Authentication failure
    Password:
    When entering mine or root's password I just get prompt again. The last password is for su, which when I enter root's works.
    It seems sudo is not using /etc/sudoers configuration either, as I have things like insults enabled and it used to work previously.
    Any reason for this?
    sudo works fine otherwise.
    Last edited by wrm (2014-03-29 23:12:26)

    Looks like this: https://github.com/archlinuxfr/yaourt/issues/5
    And this: https://bbs.archlinux.org/viewtopic.php?id=178776
    Last edited by 2ManyDogs (2014-03-24 21:33:40)

  • [Solved] LaTeX and LyX problems after recent update

    After the recent TeX update, problems arose that were already discussed in another thread, the solution is in a post by bender02. Because I use LyX instead of the "normal" latex command line tool, I was getting the following:
    The layout file requested by this document,
    scrbook.layout,
    is not usable. This is probably because a LaTeX
    class or style file required by it is not
    available. See the Customization documentation
    for more information.
    LyX will not be able to produce output.
    I am just posting this here to make it easier for others that search for that LyX message to find the solution.

    Great jstarek!
    That information saved me!
    Don't know why the TeX updates break so easily...

  • [SOLVED] Dwm and slim problem.

    i installed dwm and slim in my arch and now i cant go back to the terminal to do changes, it puts me on the log in (slim) and i cant close it, i want to do changes in ~/xinitrc.
    Please help me.
    Thanks.
    Last edited by Iason (2010-09-13 07:47:02)

    Alt-F2
    If that doesn't work, Alt-F3
    If that doesn't work, Alt-F4
    If that doesn't work try again but with Ctrl-Alt-F2, etc.
    If that doesn't work come back here.
    edit: *shakes fist at jasonwryan* *sticks out tongue at thayer*
    Last edited by fsckd (2010-09-12 21:47:51)

  • SOLVED Fluxbox and Nitrogen problem

    Ok so I've tried many ways to set my background in Fluxbox. I try not to ask for help but this is really frustrating me. So I installed nitrogen, went to the directory my background is at, and hit apply, and it worked. So then I went to my  ~/.fluxbox/startup  file and added in "nitrogen --restore &" like below. However it didn't work. I really want this to work, I spent a large amount of time earlier today trying to get fbsetbg to work, then trying to get feh to work, none of it worked for me.
    # Applications you want to run with fluxbox.
    # MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
    # unclutter -idle 2 &
    # wmnd &
    # wmsmixer -w &
    # idesk &
    nitrogen --restore &
    # And last but not least we start fluxbox.
    # Because it is the last app you have to run it with ''exec'' before it.
    Last edited by Spheres (2012-08-05 23:09:15)

    Not necessarily.
    Do any other apps you put in ~/.fluxbox/startup run?
    Check /usr/share/xsessions/fluxbox.desktop and make sure it says "exec startfluxbox" and not just "exec fluxbox"
    I'm starting fluxbox from .xinitrc with "exec startfluxbox" and if I set wallpaper with feh, this works in my ~/.fluxbox/startup file:
    eval $(cat ~/.fehbg)
    and if I set wallpaper with nitrogen, this works:
    nitrogen --restore
    (edit) -- as ewaller says, have you set a wallpaper with nitrogen? "nitrogen --restore" won't work unless you do...
    Last edited by 2ManyDogs (2012-08-05 19:35:47)

  • [Solved] Chromium and WebGL problem with Body Browser

    Hi,
    I'm having problems running (the wonderful) body browser WebGL demo from google labs, using Chromium 10.0.620.0 (70039).
    My graphic card is an intel 4500mhd.
    Most WebGL demos works fine, but with this one I get a black (not shaded or textured) 3D model.
    I also have a "unable to load libGLESv2.so" warning.
    As suggested by someone, I rebuild Mesa package with ABS, adding the flags:
    --enable-egl
    --enable-gles2
    Now WebGL doesn't work at all, libGLESv2 warning is gone, but I get "unable to load st_GL.so"...
    Ideas?
    Last edited by mr.entropy (2011-02-04 18:02:32)

    I tried both versions, with or without --enable-webgl switch (in version 10 webgl seems to be enabled by default).
    Webgl in version 8 can be enabled typing about:flags too.
    I always get a black 3D model
    As I said, other webgl demos works fine.
    lagagnon, which is your graphic card?
    Last edited by mr.entropy (2010-12-23 21:43:08)

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Critical Irish Update needed to solve black and white tv problem on G20!

    I recently had trouble with setting up tv on my Qosmio G20, I was pointed in the direction of a black and white problem that affects earlier models. The solution to the problem was to use the g20's drivers and run 2 reg files.
    Having done that to no success i tried every irish combination possible, with still black and white, I then tried UK and got colour.
    I mucked about with the registration files and found that in the file, there was no irish setting, So when a user puts ireland in as their location they will always get black and white.
    Ireland uses the exact same settings for tv as the UK does, However if a person choses UK they will not get irish guides or irish channels to pick from (ireland isnt part of the uk)
    i found the settings for the UK -
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\ttv200x\Parameters\44]
    @="United Kingdom"
    "FreqBoundary"=dword:000493e0
    "LB_VideoStandard"=dword:20000080
    "LB_AudioStandard"=dword:00020000
    "LB_ShiftFreq"=dword:00000abe
    "HB_VideoStandard"=dword:20000080
    "HB_AudioStandard"=dword:00020000
    "HB_ShiftFreq"=dword:00000abe
    Figuring the 44, was the dial code for UK (that took a while to figure) i added a registry entry with exactly the same settings, but with ireland and 353 at the top.
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\ttv200x\Parameters\353]
    @="Ireland"
    "FreqBoundary"=dword:000493e0
    "LB_VideoStandard"=dword:20000080
    "LB_AudioStandard"=dword:00020000
    "LB_ShiftFreq"=dword:00000abe
    "HB_VideoStandard"=dword:20000080
    "HB_AudioStandard"=dword:00020000
    "HB_ShiftFreq"=dword:00000abe
    I now have colour tv under the irish settings in media centre, i also have sound now, where before i didnt. Hopefully the above code will be added to the registry file named ttv2_regdata_20050111.reg that comes as part of the http://support.toshiba-tro.de/kb0/TSB5800V20000R01.htm driver fix for the problem..
    thanks to jimi in the following post http://forums.computers.toshiba-europe.com/forums/thread.jspa?forumID=42&threadID=11145 for pointing me in the right direction.
    Hope it helps someone..
    laters taters...

    I can confirm the problem isnt to do with win dvd creator 2 for toshiba. My registry setting was at 0.
    Its bascially a known problem that was fixed, however it wasnt fixed for irish people.
    When windows wants to play tv it looks in the registry to find out what settings to use. There are no irish ones. Our signal is technically the same as the UK, so using UK settings fixes the problem, However the UK guide doesnt work for irish channels. For the tv to work in colour windows needs the 353 settings.
    I think the guy on this thread was having the exact same problem that is fixed with the registry entry.
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=2488&tstart=75
    This problem will only affect a small amount of users, The fix that comes with the toshiba drivers needs the irish settings added, Then the problem will be solved by updating the drivers.
    until then any irish people can fix their black and white tv signal by adding the above registry entrys.
    for trouble shooting purposes here is a list of countries where the bug is fixed... If someone complains of black and white tv on the qosmio series, this list can be checked, and if the persons country is absent, it could be the problem. To fix the problem you need to find out their country call code (+353 is ireland, +44 is UK) You also need to know the settings to add, i did this by looking at the UK settings in the file ttv2_regdata_20050111.reg that comes in the "reg" folder that comes for the qosmio tv driver.
    here is the list of countries that an update of driver will work for...
    "United States"
    "Japan"
    "Australia"
    "Newzealand"
    "China"
    "Korean"
    "United Kingdom"
    "German"
    "Italia"
    "Swiss"
    "Netherlands"
    "Belguim"
    "Luxemburg"
    "Spain"
    "Portugal"
    "Russia"
    "Ukraine"
    "Azerbaijahn"
    "Kazakhstan"
    "Saudi Arabia"
    "UAE"
    "Lebanon"
    "Kuwait"
    "Egypt"
    "Bahrain"
    "Qatar"
    "Jordan"
    "Oman"
    "Norway"
    "Sweden"
    "Denmark"
    "Finland"
    "Turkey"
    "Greece"
    "Israel"
    "Cyprus"
    "Poland"
    "Slovakia"
    "Czech Republic"
    "Hungary"
    "South Africa"
    "Senegal"
    "Mali"
    "Kenya"
    "Tanzania"
    "Romania"
    "Slovania"
    "Bulgaria"
    "Estonia"
    "Lithuania"
    "Latvia"
    "Malta"
    "Yugoslavia(Selvia Monteneglo?)"
    "Singapore"
    "Hong Kong"
    "Taiwan"
    "Malaysia"
    "Thailand"
    "India"
    "Philippine"
    "Indonesia"
    hope that helps.

Maybe you are looking for

  • Is it possible to retrieve a backup that is not available on the drop-down bar in iTunes "restore from backup"?

    I was attempting to sync my phone so that I could get all of my pictures on the computer to free up some space on my phone. I have done this several times before with no problems. An error message popped up informing me that I needed to update my pho

  • MozBackup no longer works. Please help.

    When I try to backup Thunderbird using MozBackup, just before the process finishes I get the error message "Backup''s file isn't valid. Backup has failed". This has never occurred when I have backed up Thunderbird in the past. Can anyone help me plea

  • My iphone 4 is fully charged but dies every 2 or 3 mins

    Bought brand new iphone 4 off ebay. Sealed and everything. I charge it fully, did software updates. But it continually turns itself off and reappears with the apple sign. I have checked its warranty and it is still valid but will i be able to take it

  • Detecting Bandwidth Quality for Live Video Streaming

    Hi, We have an application that is using FMS to  share slides (swf,jpg, etc) with another client. We added a video as an option. We would like to verify as often as possible the bandwidth quality between communications in order to suggest the user to

  • Connecting a Dell B22 FEX to Nexus 6001 and storage

    Hi Folks, We have a setup where we are running a Dell B22 FEX in Blade enviornment and want to connect the B22 FEX to a cisco Nexus 6001 switch. As per NX-OS release note, B22 FEX and 6001 Nexus connectivity is supported. Now after connecting to Nexu