Few issues with N120

I got a few issues with the N120 netbook that I hope you could help me to sort out.
1.
First the brightness up/down keys. First I gave this fix a go.
http://www.sammynetbook.com/plugins/for … .php?29576
It works but its very unstable for me, sometimes it will get stuck and just turn the screen all the way down and then hang for some time before being able to turn the light back on. The icon will hang on the desktop too. Beside that it occasionally makes gnome panel freeze or really most of the time.
Then I gave .xbindkeysrc a try from the NC10 wiki.
#Brightness up/down
"xbacklight +10"
m:0x0 + c:111
"xbacklight -10"
m:0x0 + c:116
That seems to work fine however it is not binded to the Fn (just binded to up/down arrow) key I am sure I am missing something pretty simple here, but....
2.
Wifi Fn key binding is not working. xbindkeys -k gives me -
"(Scheme function)"
m:0x0 + c:75
Here I am simple not sure what "Scheme function" to use.
3.
I would like to blacklist the webcam just not sure what module to blacklist. I did check for a BIOS option but unfortunately there is none.
lsmod
Module Size Used by
ipv6 277972 10
hidp 14500 1
hid 42496 1 hidp
fuse 60896 2
i915 183016 1
drm 154656 2 i915
i2c_algo_bit 5864 1 i915
rfcomm 39028 4
bridge 54008 0
stp 2088 1 bridge
llc 5552 2 bridge,stp
bnep 10916 2
sco 10952 2
l2cap 24132 21 hidp,rfcomm,bnep
ext2 69036 1
cpufreq_powersave 1380 0
snd_seq_dummy 2696 0
snd_seq_oss 31168 0
cpufreq_ondemand 7672 2
snd_hda_codec_realtek 206504 1
snd_seq_midi_event 7012 1 snd_seq_oss
acpi_cpufreq 8624 0
snd_seq 53744 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device 6768 3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_hda_intel 26664 0
freq_table 3716 2 cpufreq_ondemand,acpi_cpufreq
snd_hda_codec 71716 2 snd_hda_codec_realtek,snd_hda_intel
snd_pcm_oss 40352 0
uvcvideo 61040 0
iTCO_wdt 10952 0
snd_hwdep 7656 1 snd_hda_codec
snd_mixer_oss 17540 1 snd_pcm_oss
fan 4392 0
joydev 10400 0
i2c_i801 9656 0
iTCO_vendor_support 3080 1 iTCO_wdt
btusb 12632 4
intel_agp 27484 1
snd_pcm 73672 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_timer 21100 2 snd_seq,snd_pcm
videodev 36544 1 uvcvideo
v4l1_compat 15688 2 uvcvideo,videodev
bluetooth 56740 10 hidp,rfcomm,bnep,sco,l2cap,btusb
battery 10984 0
video 19832 1 i915
output 2884 1 video
button 5556 0
thermal 13888 0
pcspkr 2372 0
ac 4360 0
i2c_core 22776 4 i915,drm,i2c_algo_bit,i2c_i801
processor 35800 3 acpi_cpufreq
agpgart 32756 3 drm,intel_agp
snd 58436 11 snd_seq_oss,snd_hda_codec_realtek,snd_seq,snd_seq_device,snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_hwdep,snd_mixer_oss,snd_pcm,snd_timer
soundcore 6848 1 snd
snd_page_alloc 8876 2 snd_hda_intel,snd_pcm
sg 27928 0
psmouse 59644 0
evdev 10176 13
serio_raw 5704 0
ndiswrapper 211324 0
rtc_cmos 11212 0
rtc_core 18048 1 rtc_cmos
rtc_lib 2500 1 rtc_core
ext3 134380 2
jbd 48504 1 ext3
mbcache 7080 2 ext2,ext3
sd_mod 27328 5
ata_generic 4680 0
ata_piix 23080 4
pata_acpi 4228 0
libata 168012 3 ata_generic,ata_piix,pata_acpi
uhci_hcd 23540 0
scsi_mod 110708 3 sg,sd_mod,libata
ide_pci_generic 3816 0
sky2 47240 0
ehci_hcd 35664 0
ide_core 101480 1 ide_pci_generic
usbcore 150192 6 uvcvideo,btusb,ndiswrapper,uhci_hcd,ehci_hcd
Other then these few issues all really seems to work really well. I have only had Arch installed for a week or so (not a lot of time on my hands atm though) but sorting these issues would would make it a 100% for me.
I would appreciate if you could help me out.

1.  My "gadget" is a basic script:
#!/bin/sh
# display brightness script
# author: lswest
usage="usage: $0 -c {up|down}"
command=
increment=5%
while getopts h o
do case "$o" in
h) echo "$usage"; exit 0;;
?) echo "$usage"; exit 0;;
esac
done
shift $(($OPTIND - 1))
command=$1
if [ "$command" = "" ]; then
echo "usage: $0 {up|down}"
exit 0;
fi
display_brightness=0
if [ "$command" = "up" ]; then
$(xbacklight -inc $increment)
display_brightness=$(xbacklight|cut --delimiter="." -f 1)
fi
if [ "$command" = "down" ]; then
$(xbacklight -dec $increment)
display_brightness=$(xbacklight|cut --delimiter="." -f 1)
fi
icon_name=""
if [ "$icon_name" = "" ]; then
if [ "$display_brightness" = "0" ]; then
icon_name="notification-display-brightness-off"
else
if [ "$display_brightness" -lt "33" ]; then
icon_name="notification-display-brightness-low"
else
if [ "$display_brightness" -lt "67" ]; then
icon_name="notification-display-brightness-medium"
else
if [ "$display_brightness" -lt "100" ]; then
icon_name="notification-display-brightness-high"
else
icon_name="notification-display-brightness-full"
fi
fi
fi
fi
fi
notify-send " " -i $icon_name -h int:value:$display_brightness -h string:synchronous:brightness
It uses notify-osd and displays the bar/icon.  If the icon is missing, you will have to copy the notification-* svg files over from the human icon theme.  Just in case you'd like it.
Depends what you want to do with the wireless.  You can just bring the interface down with
sudo ifconfig wlan0 down
Or else you can remove the module with
sudo modprobe -r <module>

Similar Messages

  • Few issues with BI 2004s

    Hello there,
    I am having few issues with BI 2004s system. It’s a new implementation.
    -         When you create Data source using DB connect in new system, it creates with old version. I could see the SMALL square box next to the Data source. I would expect the system to generate new 2004s datasource.
    -         Obviously the generated D/S won’t allow us to create New Transformations. We have to create old transfer rules/update rule. I do see the option to migrate the D/S when I right click on it. But I get short dump when I try that and then you have to discard the D/S and create new one.
    -         Also, it won’t allow you to delete the DBConnect D/S although you have option to do that?
    Anyone has faced these issues?
    Performance issue with reporting:
    I understand that you have to have portal in order to execute reports which we don’t have at this client. They don’t have time and money to invest right now. So we have created reports using BW 3.5 BEx Q.designer/WAD to run the reports on web. The report takes long time when you try to drill down on Material/Customer with only 150,000 records in Cube. The cube has just three dimensions (two char each) and 4 key figures. Any suggestion to improve?
    Thanks
    Sudhakar

    Yes, I noticed it too and was thinking the same thing, blueaura.
    I'm sure they want to ensure the scan is reliable. I keep my screen at a lower brightness to save power, and sometimes Starbucks scanners take a bit longer for it to register.
    2) is already fixed.
    3) is a feature, not a bug. If you are updating an app you already have installed, it doesn't bother to ask you for the password. Nice!
    For Google maps, just use maps.google.com in the browser.

  • I'm having a few issues with Safari, can anyone help?

    Hello, all,
    I'm having a few annoying little issues with Safari at the moment, hopefully someone can help and it'll be an easy fix, but I'm stumped at the moment.
    1. Every time I close and quit Safari it freezes and I have to 'force quit' the app. Not the biggest of problems but it's a little annoying.
    2. Once I open Safari back up it reloads with whatever window was open when I quit, even if my Mac has been turned off.
    3. Safari is eating up a lot of my RAM at the moment. 'Activity Monitor' is telling me it's taking up between 2-6GB of Memory.
    Anybody have any ideas?
    Thanks in advance.

    Try a basic Safari reset.
    Safari/Preferences/Advanced - enable the Develop menu, then go there and Empty Caches. Quit/reopen Safari and test. Then try Safari/History/Show History and delete all history items.  Quit/reopen Safari and test. You can also try try Safari/Clear History and Web Site Data. The down side is it clears all cookies.Doing this may cause some sites to no longer recognize your computer as one that has visited the web site.

  • Few issues with my MBP screen (warranty related?)

    Hi all,
    I have been putting this problem off for the past year now, but it's getting to me more and more. My MacBook Pro is still under warranty (MBP is a 2007 model just before the newer ones came out), and I have a few niggles with the display.
    First off I have a dead pixel near the top, where the address bar usually is for Safari/Chrome. This one is shown in the tab to make it apparent. (http://img294.imageshack.us/img294/4168/img0278q.jpg)
    Next is a dash of light to the far right of the screen about just under a quarter of the way up from the screen. (http://img17.imageshack.us/img17/6196/img0279d.jpg)
    And finally I have something that looks like a hair has embedded under the screen and this is the most distracting part. I have included links to pictures of what I am referring to. (http://img17.imageshack.us/img17/2763/img0277ix.jpg) (http://img297.imageshack.us/img297/2985/img0276m.jpg)
    My question is will any of these be enough to warrant use of my warranty (AppleCare)? I do graphic design and the hair like thing is the worst because it's consistently viewable. Thanks for any help.
    Message was edited by: Shady Pioneer

    You definitely need to ask about this before your warranty is up. The hair seems to be the worst thing. I believe that displays are supposed to be manufactured in clean room conditions and sealed. There should not be a hair under the display. The light dash could represent a break in the seal but I don't know if it does or not.
    The only way to find out is to ask, and emphasize that you do graphic design. I have heard of people getting replacement displays for similar issues.
    Good luck!

  • A few issues with my new BB Bold 9700

    Hey, i have a few questions, i thought best to keep it to one thread. FYI i updated my blackberry software today using my computer so it all should be on latest versions
    1: GPS never ever works, simple, ive run diagnostics, they time out, and i can never find satelites. My mobile provider does not block it (tmobile uk), is this some sort of joke feature? or is it meant to work.
    2: Blackberry Messenger, i deleted it because i dont want to use it, but my update put it back on the phone. and now theres no way to delete it How can i get rid of it, its always running and that means using valuable memory that isnt needed for it
    3: Prior to today i would press the lock button  on my BB and then you would need to enter the password to unlock the phone, however for some reason the latest update now doesnt use my password when i press the lock button, if i go into the menu and click lock it does. Why.. and how do i make it work like it did
    4: When people phone me, it shows me the number calling me and not the name of the contact. This is pathetic, at work i dont want to answer calls from other prospective jobs, but how do i know who they are if it just shows the number. I have to reject call and then go to my call log. which funny enough shows me name of contact and the number. Why does it not show me this when i am being called
    Overall this is my first BB, i like it, but theres always something going wrong, and im no technophobe. It seems every few days BB releases new updates which screws up things i had working, and changes the options menu dramatically. its getting impossible to keep up
    Any answers to these questions would be greatly appreciated, thanks!

    JSanders wrote:
    1. GPS works. Refresh it this way:
    On all model BlackBerrys, first make certain that you in an area of good signal coverage AND outside with a clear view of the sky in an open area of no tall buildings.
    For GSM network devices, do this:
    Click Options > Advanced > GPS > Menu > Refresh GPS.
    Give it up to 10 minutes to refresh, and try 2-3 times in a row.
    Also, read this: http://www.blackberry.com/btsc/dynamickc.do?extern​alId=KB12203&sliceId=SAL_Public&command=show&forwa​...
    The above article from the public knowledge base has been cancelled and replaced by the following one :
    KB11950 How to troubleshoot built-in GPS issues on a BlackBerry smartphone
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • I have an iPod Touch 4G 8GB and there's a few issues with it.

    So. I've had this iPod Touch 4G 8GB for exactly 7 months and 4 days now, since August 1st, 2013, my most recent birthday. I got it from a local pawn shop, and it was used.* It was not fully configured when I got it, was extremely slow (even after a full restore) and had lots of scratches on the back and minor scratches on the front. It worked fine though, for my first iDevice. It came with no papers at all. But both the rear and front facing cameras worked fine, along with all the buttons, speaker, charging port and headphone jack. However, after a while, the device became more and more slow even after several hard resets and restores, along with the cameras slowly deteriorating in quality, even though I kept a case on it 24/7, kept it in my top control and always tried to use a stylus to reduce smudges. On March 1st, 2014, I dropped it. It cracked on the front, near the front facing camera, unfortunately, but it still worked fine. No unresponsiveness, no finger catching, nothing. Until March 3rd, 2014 (yesterday), that is. No real damage happened to the front other than the cracks, but the real damage was found, other than the fact that the rear view camera had these colored horizontal lines across the screen whenever I tried using it on the Camera app. No, this wasn't pixel glitches in general because nothing happened outside of the Camera app, and no, it wasn't just occuring specifically in the Apple Camera app, as I tested a few others. It also had trouble focusing, but I don't think that this happened mainly because of the fall, because it was safe inside the case, and it didn't land on the back. I also think it might have something to do with the fact that it WAS deteriorating in quality over the time I had it. It's not bad when I point the rear view camera at light, almost as if they're not visible at all. But in low light situations, it's quite dificult to get a good shot and I've been having to use the front facing camera to film. It seems to look very reddish in certain direct light shots as well. Also, it might be important to note that it also got scratched a lot more on the front and back (extremely bad on the back, I'm not kidding), specifically after the cracks occured.
    Now, why am I telling you this? Well, I'm obviously not under warranty or Apple Care, but I'm curious to know if I'm eligible for a replacement, brand new or refurbished. I've read lots of stories on the website here recently about people's situations like this where they were able to get a new one for free/for a very low fee, and I'm curious. Here's some photos I took;
    Oh, and I apologize for the low quality image pictures.

    If you have not taken the iPod apart, Apple will exchange it for a refurbished one for $99. You can do it an an Apple store
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar
    Or sent it to Apple

  • Few issues with plug in's I need help with.

    Hi guy's! I bought my 17" G4 powerbook yesterday and I am trying to get it setup to work on all the webpages I visit. My first issue is that on one site I was told by pop up that I needed the wmp 9 software so I went to the downloads site and dl'ed wmp9 for osx10. it was a 7mb download and once finished it told me it was not compatible with my osx.
    I am running osx tiger 10.4.3
    My next issue is that images in a thread did not load, only blue question marks appear. see if it happens to you in this thread: http://forums.corvetteforum.com/showthread.php?t=1241324&forum_id=34
    last issue is that I got the following message:
    The page “Family Guy: Peanut Butter Jelly | Funny Videos @ GKKO.COM” has content of an unspecified MIME type. Because you don’t have a plug-in installed for this MIME type, this content can’t be displayed
    when I tried to view this page: http://www.gkko.com/funny-videos/1197/family-guy:-peanut-butter-jelly
    I am a mac newbie so please give me the idiot version of how to fix this. Thanks a million!
    g4   Mac OS X (10.4.3)   powerbook 17"

    Hi, lextech, welcome to Apple's user-to-user discussion forums.
    I went to the downloads site and dl'ed wmp9 for osx10. it was a 7mb download and once finished it told me it was not compatible with my osx.
    Are you sure you downloaded the version for OS X? Here is the download page for WMP 9 for OS X.
    My next issue is that images in a thread did not load, only blue question marks appear. see if it happens to you in this thread: http://forums.corvetteforum.com/showthread.php?t=1241324&forum_id=34
    The blue question marks are missing image markers. Did you try refreshing the page? This page loaded no problem for me using Safari 2.0.2 under OS X 10.4.3. This page is graphics-intensive. What kind of Internet connection do you have?
    when I tried to view this page: http://www.gkko.com/funny-videos/1197/family-guy:-peanut-butter-jelly
    Those movies require Windows Movie Player, so once you have that installed, it should work.
    BTW, you will probably also want to install the free RealPlayer. Click on the small blue button that says "RealPlayer - Free" in the upper right corner of the page.
    And it never hurts ot have a backup browser available to try sites out that don't work in Safari. There are several excellent ones available. The one I use is Firefox.
    Let us know what happens and if you have more questions.

  • MSI Z77A-GD80 : Few issues with new board.

    Hi all,
    Swapped out my old motherboard for a MSI Z77A-GD80 yesterday.
    I am liking the board (and fast BIOS) a lot so far! I did ran into a few nags though:
    1. When using Click BIOS II in Windows 7 x64, applying new settings to the BIOS seems to take 30-40 seconds (and the app will freeze in the meantime). Anything i can do about this?
    2. My previous motherboard (GA-Z68X-UD7-B3) allowed me to wake up my computer by pressing a random key on my keyboard.
    If i try this with my GD80, the backlight of my Logitech G710+ keys will light up, but the PC does not resume from sleep mode.
    I tried both BIOS settings regarding Wake up Events: BIOS > Keyboard > Random and OS. Both do not seem to work.
    Any suggestions?
    The device is set in Windows, to be allowed to wake up my computer.
    3. I connected a brand new Firewire PCI backplate to the motherboard header connection.
    When i hook up a firewire device, nothing happens. I sincerely doubt the header would be busted or the controller on a brand new motherboard would be broken.... do i have to turn this on somewhere in the BIOS perhaps?
    Thanks a lot for any info!

    Quote from: NessPJ on 08-April-13, 19:18:34
    @ Froggy Gremlin: Concerning question 2. : You mean the Network adapter power settings influence the keyboard power settings? I'm a bit confused...
    (The goal is to wake up the machine with the local USB keyboard).
    Not really a factor if wanting to use the keyboard as a wake device, but in the Device Manager, Network adapter, Properties, Power Management, you might want to set that how you want it as it is a separate setting from the Control Panel, Power Options. I personally don't use any sleep or hibernate options as I always hard shutdown my machines, so in the BIOS S1 state is set rather than S3 as related to ACPI I believe it is?
    I took a stab at question 2, 1 and 3 was more in my wheelhouse.

  • Having a few issues with several programs (tor / mpd / ccm..)

    Hey everybody,
    I'll arrange this post in 3 parts since I have 3 different kinds of "major" problems or questions .
    1st ( tor - privoxy - polipo - iptables )
    I somehow found this article in your wiki and therefore tried to get tor and privoxy up and running on my desktop machine, as this didn't work as I hoped it would I searched farther in the wiki and installed and configured (as far as I've thought of) polipo and iptables.
    Now I've put all 4 of them in my rc.conf, but somehow some of my http connections don't seem to work in chromium while iptables is running (https works fine though [e.g. archwiki works, youtube doesn't]).
    I did everything as suggested in the polipo wiki entry, meaning I changed my /etc/iptables/iptables.rules to
    *nat
    :PREROUTING ACCEPT [0:0]
    :POSTROUTING ACCEPT [0:0]
    :OUTPUT ACCEPT [0:0]
    -A OUTPUT -p tcp --dport 80 -m owner --uid-owner polipo -j ACCEPT
    -A OUTPUT -p tcp --dport 80 -j REDIRECT --to-ports 8123
    COMMIT
    and removed all proxy settings from my browser - meaning all corresponding flags in the startcommand. I also added "forward / localhost:8123" to the privoxy config and changed the polipo configuration according to the wiki in order to work with tor (the socksParentProxy, socksProxyType part).
    now the next problem - that might probably be related to the first - is that my privoxy doesn't load in daemon mode anymore.
    I think it's since I've installed polipo that privoxy began to refuse starting together with the other daemons
    [usR@machine ~]$ privoxy
    Apr 23 00:20:56.459 b75086c0 Fatal error: can't check configuration file '/home/usR/config': No such file or directory
    this is the output I get when I try to start privoxy in normal user mode from the terminal, when I try starting the daemon manually (/etc/rc.d/privoxy start) it says
    touch: cannot touch `/var/log/privoxy/logfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/logfile': Permission denied
    chmod: cannot access `/var/log/privoxy/logfile': Permission denied
    touch: cannot touch `/var/log/privoxy/jarfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/jarfile': Permission denied
    chmod: cannot access `/var/log/privoxy/jarfile': Permission denied
    Apr 23 00:22:34.490 b76396c0 Fatal error: Cannot setgid(): Insufficient permissions.
    [/var/log/privoxy belongs to privoxy:adm]
    when I do the same in sudo mode it just fails without displaying an error message..
    I added this code to the /etc/rc.d/privoxy executable but I still get this owner conflict error and I have no idea what might be causing it.
    if [ ! -d /var/log/privoxy ]
    then
    mkdir /var/log/privoxy
    touch /var/log/privoxy/errorfile
    touch /var/log/privoxy/logfile
    chown -R privoxy:adm /var/log/privoxy
    fi
    If the order of the daemons in rc.conf is of any real importance here a copy of my setup
    ( @polipo @privoxy @syslog-ng !set-hw-addr !iptables @network netfs hddtemp @crond hal dbus @alsa @slim @tor )
    2nd ( mpd & mpc )
    I'm just wondering if there's a way to output the position of a track in the current playlist combined with a search. since mpc search <type> <query> only prints out full file path and name, but not the position in the playlist so that you could play it with mpc play. I thought of a method to print out the whole list with mpc playlist and pipe this output into a listing program, than grep out the song I'm looking for all that in a little bash script, to replace mpc search.
    Is there an integrated mpc search function that works the way I imageine it and my idea therefore redundant, or if not, is it realizable the way I picture it; does such a listing program exist?
    3rd ( cairo-compmgr )
    Since I'm already posting here I thought I'd mention my older problem which I  still couldn't solve.
    1st) I need to start cairo-compmgr(-git) in sudo mode to be able to edit any settings or activate the gui in any way. how do I automatically start the program on startup in sudo mode? I tried editing ~/.fluxbox/startup & ~/.fluxbox/init, even tried adding it in /etc/rc.d/ and /etc/rc.conf in order to start it as a daemon (lol, noob) but none of that worked properly obviously Any ideas? I don't want to start it manually and "waste" a terminal window for that every time I boot.
    2nd) I can change opacity (transparency) in both versions only per hotkey, and when I do so the settings don't get saved, they even get reset to normal opacity as soon as another window gets selected. does anybody know if there's a config file or any way to save opacity settings for certain windows & programs, so that they automatically get loaded when cairo starts and stay applied until it gets closed?
    [or generally: how do I configure the Plugins? ]
    the last "problem" which occurs only with cairo-compmgr-git:
    When I rightclick the ccm icon in the task bar and disable the composite desktop, the whole program kills itself oO
    In the old version the option "Composite desktop"'s box just got un-checked and I could easily restart ccm by rightclicking the logo again and re-enabling the "Composite desktop" option.
    Any clues on that by any chance?
    I'm using Fluxbox by the way, if that's of any importance for any of the problems. hope I didn't forget any important information if so please remind me
    Would be thankful for any kind of help
    have a nice weekend
    deF
    //edit:
    concernig the tor / privoxy problem, I managed getting all the daemons to start up at bootup again, my iptables situation remains the same though.
    I went through all the config files again and played around with chown and chmod a little and for now the system is stable, everytime I reboot all the daemons start without any problems.
    but when i start chromium with --proxy-server=localhost:8118 now, I get the following error message
    The following error occurred while trying to access http://torcheck.xenobite.eu/index.php?:
    504 Connect to torcheck.xenobite.eu:80 failed: SOCKS error: network unreachable
    Generated Sat, 23 Apr 2011 04:49:08 CEST by Polipo on archzor.localdomain:8118.
    notably with all programs running now, tor, polipo, privoxy (and by now dansguardian as well)..
    I'm tired so I'll go asleep now, maybe I'll find something tomorrow in the logfiles or whatever, so far:
    every kind of help is still very appreciated
    ²
    /var/log/polipo/polipo.log
    Disabling disk cache: No such file or directory
    Couldn't bind: Address already in use
    Couldn't establish listening socket: Address already in use
    Couldn't bind: Address already in use
    Last edited by deF291 (2011-04-23 03:13:48)

    okay I've finally been able to get tor and all the other programs to work according to my plan the only thing that's still making problems is that iptables doesn't work as I want it to, when I start chromium without proxy settings privoxy doesn't seem to forward the information to polipo.. do I need to add another rule to iptables.rules in order for the program to know it has to reroute the information again or how can I get this to work? and is there any way to run rtorrent with proxy support?
    anyway, problem 2 and 3 are still to be solved.
    and does anybody know where i can get a good dansguardian blacklist that was not designed for 6 year old children and for which I don't need to subscribe? I'm still getting these partypoker popups -.-
    //e: with iptables it's the same thing as described in the first post. https works, http doesnt. I get the output "Invalid header received from client." on http sites. still no idea why though.. (and the https-version of torcheck.xenubite says i'm tor unprotected while starting the browser with iptables)
    Last edited by deF291 (2011-04-23 16:16:31)

  • Having a few issues with my Satellite M105-S3004. Help please!

    1)Ok I've had my laptop for about 3 1/2 years. For a few weeks now everytime I turn on my computer I get this message:
    RegSvr32
    loadlibrary ("C:\Documents and Settings\All users\Application Data\dubstefu.dll") failed-The specified module could not be found
    2)I also have been trying to re-install the sims3 and when I put the disc in sometimes it will read and sometimes it won't. When it does begin to install it stops and gives me one of two messages:
    Feature transfer error-I/O device error
    or
    Data error-cyclic redundancy check
    Music CDs play, DVDs play, other games work, and the disc works in other computers.
    Please Please Please respond if you have any idea what I need to do to fix this. I'm very good at following instructions.

    Satellite M105-S3004
    1) I don't recognize what's trying to load. You can track it down this way. Open the System Configuration Utility (msconfig.exe), uncheck all the items on the Startup tab, and reboot. If the message does not appear, then one of the items we have stopped is the culprit. It's a matter of rechecking half the items, rebooting, and so forth.
    More (probably too much) about that utility here.
       How to configure Windows XP to start in a "clean boot" state
    You can safely ignore the nag message. Check it's Don't show box.
    2) Since you get a CRC error only on this drive, it's probably just slightly misaligned for that particular disc. You should be able to solve it by copying this disc to another blank using the drive in question.
    Let's see what the folks over here have to say. You should tell them you have Windows XP.
    -Jerry

  • Few issues with Qosmio G30-179 - remote and TV

    Hello, (I'm French and my English is bad)
    I have a Qosmio G30-179 and I can't use my remote when the computer is power on. But I can use the remote for turn power on my computer and I can use it when I use the TV or Media buttons (at the right of the power button.)
    Other problem: I don't receive anything when I seek a TV signal on Media player. Even if I'm in a place where I've already receive all TV channels. Maybe there are others problems undetected...
    All these functions have already worked and I realized they don't work little time ago. But I didn't use them for a long time ago, since I received my computer when it returned guarantee (I send it because it had a problem at RAM bars.)
    Then I think there was a problem with the support service. But I'm not sure.
    What do you think about it? Must I call them?
    Or this problem can be resolve easily?
    Thank you in advance.

    > All these functions have already worked and I
    > realized they don't work little time ago. But I
    > didn't use them for a long time ago,
    If all those functions are worked before I recommend you to use delivered recovery DVD and install OS again. After doing this your notebook will have factory settings again and, I hope, everything should work again as before.
    Try it!

  • I have just now upgraded to OBIEE 11.1.1.7.0. The applications seems to be stable. But I am facing few issues with the reports and dashboard.

    Hi All,
    Dashboard Items - Customize Column & Section width in css files,
    i am facing the same problem for Reports and Dashboards after upgrade the obiee 11.1.1.6.5 to 11.1.1.7.0,
    please can any one help on this
    i have seen the below blood by Dev,
    he have't give more details about the solution , can any one help ? thanks inAdvance

    Hi Guys,
    I am sure that a WIDTH tag has to be added in some +.css+ file but I am not sure which one. I have OBIEE 11.1.1.7.0 (Simple Install)
    I came accross two very informative url's.
    URL 1 > This post tells about customizing the prompt.
    http://obiee10grevisited.blogspot.in/2012/02/customizing-dashboard-prompts.html
    URL 2> This post describes how to edit the look and feel of the Subject Area container.
    http://obiee1000.blogspot.in/2012/03/customize-subject-area-container-obiee.html
    In a similar way, I feel that the section or column (Dashboard items) can be customized i.e. we can fixed the width, height, border, color etc etc...
    I would really appreciate any suggestions/advice in this regards.
    Thanks
    Dev

  • New To Nokia And Having Some issues With N79

    Hi
    I have bought a Nokia for the first time ever and fancied a change from Sony Ericsson due to software issues, however i have been experiencing a few issues with my N79.
    When listening to Music in the Music Player and change track, the phone will crash and keep restart it's self, so i tried searching online for the issue and didn't find much help, so i tried doing a Soft Reset wich didn't work.
    I then tried a Hard Reset and have noticed some icons are missing and the preinstalled Wallpapers, Ringtones and Videos have been deleted.
    I then downloaded and installed Nokia Software Updater and tried re-installing the phones software (wich is 11.049.53.1) thinking i would get back the Wallpapers, Ringtones and Videos ect but that didn't work...
    And now the phone has developed another bug... Whenever i use the GPS it asks to go online and i click yes, the phone will just crash and restart and i have to take the battery out to get it to go off.
    So far i am NOT very happy with the phone concidering the price i payed for it and having more software issues to deal with...
    Any help would be appreciated...

    Which map do you mean ??? And will it restore all the preinstalled content ???
    Ive only had this phone a week after paying nearly £300 and im having trouble with it already...
    Message Edited by jb1989 on 08-May-2009 01:40 AM

  • A number of issues with my Xperia Z1

    I have had my Xperia Z1 since around November 2013.
    I have been having a few issues with it. After calling my service provider they suggested I do a factory reset.
    That's where my first problem comes in. I have tried a number of times to back up my phone onto my computer using Sony Companion. It runs smoothly for about 90% of the process and then at the last stretch it will go from
    '30 minutes remianing' to '8 hours remaining' and the more time passes, the longer the back up says it will take.
    With that being said, I haven't been able to successfully back up my phone so I can reset it.
    Issue #2: My phone will sometimes just say it has no service. It bounces from having 5 full bars to zero, and then drops my calls. I called my service provider, they said it's a problem with the phone.
    Issue #3: When using the stock SMS app, all my texts (no matter what device I send to) my texts are sent doubled or tripled. On my actual screen is doesn't appear this way, but people complain all my texts are doubled.
    So I started using Google Hangouts, and that isn't working well either. All the texts are out of line. I'll get texts from over a month ago pop up in my notification and it disappears. Sender/receiever texts don't align and it gets confusing when my messages are delayed, even though it says it's been sent/receieved on time.
    Issue #4: The only way to correct my SMS issues is by restarting my phone. Which I sadly do about 10 times daily.
    When using the stock SMS app, it often crashed (it is now disabled). Same thing now with Hangouts. It will crash and not let me re open unless I power off/on. 
    I am not sure if this is where I should be posting about the number of issues I am having.
    Will my backup actually take 8+ hours (and to clarify, I disable backing up pictures/videos/music to save space).
    I put my phone in Airplane mode and leave it idle and it still says it will take all day to back up.
    Any help or suggestions is greatly appreciated. 

    Have you tried starting the phone in safe mode,see if there is any app acting up messing around with your phone?A backup should not take that long,but if you do have a lot of media,it is better to copy it directly to your pc and backup only small packs of data(messages,contacts,settings etc).I suggest using myphone explorer for messages and contacts.
    To start your phone in safe mode:
    http://talk.sonymobile.com/t5/FAQ/How-to-boot-your-phone-into-safe-mode/m-p/348008#U348008
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Lenovo G560 few issues

    Hello to all Archers! I have few issues with my lenovo g560.
    First of all, when browsing for example, the X suddenly freezes and dunno why... just freezes... The only thing that i can do is the force reboot...
    2. i have a mute led button which shine all the time, but the sound isn't muted. How can i fix this?
    3. My integrated mic is not found by alsa. Fix for this?
    Thanx!
    PS. On my desktop PC all works just fine, and not for now, but since 4 years. Arch is for me the most finest linux distro. May be i'm not enough  experianced with the laptop issues...

    Hello
    I got same notebook: with i3, gf310M. So:
    1) Same problem here. I've discovered that when you disable desktop compozition X is not freezeing. In my system X freezes mostly when I'm resizing windows
    2) Where's mute button?
    3) add to /etc/modprobe.conf:
    options snd-hda-intel model=asus
    options snd-hda-intel probe_mask=0xffff,0xfff2
    firs line set's alsa to work with conexant codec and second disables nvidia hdmi sound. after that open gstreamer-properties(part of gnome-media) and select proper mic
    Last edited by rzepaczyk (2011-05-29 15:34:26)

Maybe you are looking for