Change cpufreq settings when unplugged.

Hi, I am new to using these cpufreq scaling programs.  I have installed cpufreq-utils and have it working in that when the mode is set to ondemand, it uses the cpu power accordingly, and when set to powersave, it stays on the lowest frequency.  My question is, how do I get it to switch when the ac power is unplugged. 
I would guess that I have to get the command
cpufreq-selector -g "governer"
to run the proper setting everytime there is a change in the ac cord.  But how do I do this?
Also, I the screen does not dim when the cord is unplugged, so I assume that these commands will go in the same place.  What is the command to manually dim the screen? and where do I put these two commands?
Last edited by semperfiguy (2008-01-31 23:59:56)

Ive had my laptop for about one month and the command smartctl -a /dev/sda |grep Load_Cycle returns:
193 Load_Cycle_Count 0x0032 099 099 000 Old_age Always - 11205
Is this good or bad? I dont want to mess up my hard drive using laptop mode tools.  Here is my config:
# Configuration for Laptop Mode Tools
# There is a "system" to the configuration setting names:
# CONTROL_something=0/1 Determines whether Laptop Mode Tools controls
# something
# LM_something=value Value of "something" when laptop mode is active
# NOLM_something=value Value of "something" when laptop mode is NOT
# active
# AC_something=value Value of "something" when the computer is running
# on AC power
# BATT_something=value Value of "something when the computer is running
# on battery power
# There can be combinations of LM_/NOLM_ and AC_/BATT_ prefixes, but the
# available prefixes are different for each setting. The available ones are
# documented in the manual page, laptop-mode.conf(8). If there is no LM_/
# NOLM_ in a setting name, then the value is used independently of laptop
# mode state, and similarly, if there is no AC_/BATT_, then the value is used
# independently of power state.
# Some options only work on ACPI systems. They are marked ACPI-ONLY.
# Note that this configuration file is a fragment of bash shell script: you
# can use all the features of the bash scripting language to achieve your
# desired configuration.
# IMPORTANT: Laptop Mode Tools modules have separate configuration files, that
# can be found in /etc/laptop-mode/conf.d. Please look through these
# configuration files as well!
# Configuration debugging
# Set this to 1 if you want to see a lot of information when you start/stop
# laptop_mode.
VERBOSE_OUTPUT=0
# When to enable laptop mode
# "Laptop mode" is the mode in which laptop mode tools makes the computer
# consume less power. This includes the kernel "laptop_mode" feature, which
# allows your hard drives to spin down, as well as various other settings which
# can be tweaked by laptop mode tools. You can enable or disable all of these
# settings using the CONTROL_... options further down in this config file.
# Enable laptop mode when on battery power.
ENABLE_LAPTOP_MODE_ON_BATTERY=1
# Enable laptop mode when on AC power.
ENABLE_LAPTOP_MODE_ON_AC=0
# Enable laptop mode when the laptop's lid is closed, even when we're on AC
# power? (ACPI-ONLY)
ENABLE_LAPTOP_MODE_WHEN_LID_CLOSED=0
# When to enable data loss sensitive features
# When data loss sensitive features are disabled, laptop mode tools acts as if
# laptop mode were disabled, for those features only.
# Data loss sensitive features include:
# - laptop_mode (i.e., delayed writes)
# - hard drive write cache
# All of the options that follow can be set to 0 in order to prevent laptop
# mode tools from using them to stop data loss sensitive features. Use this
# when you have a battery that reports the wrong information, that confuses
# laptop mode tools.
# Disabling data loss sensitive features is ACPI-ONLY.
# Disable all data loss sensitive features when the battery level (in % of the
# battery capacity) reaches this value.
MINIMUM_BATTERY_CHARGE_PERCENT=3
# Disable data loss sensitive features when the battery reports its state
# as "critical".
DISABLE_LAPTOP_MODE_ON_CRITICAL_BATTERY_LEVEL=1
# Controlled hard drives and partitions
# For spinning down your hard drives, laptop mode will remount file systems and
# adjust hard drive spindown timeouts. These parameters specify which
# devices and partitions are affected by laptop mode.
# The drives that laptop mode controls.
# Separate them by a space, e.g. HD="/dev/hda /dev/hdb". The default is a
# wildcard, which will get you all your IDE and SCSI/SATA drives.
HD="/dev/sda"
# The partitions (or mount points) that laptop mode controls.
# Separate the values by spaces. Use "auto" to indicate all partitions on drives
# listed in HD. You can add things to "auto", e.g. "auto /dev/hdc3". You can
# also specify mount points, e.g. "/mnt/data".
PARTITIONS="auto /dev/mapper/*"
# If this is enabled, laptop mode tools will assume that SCSI drives are
# really SATA drives that only _look_ like SCSI drives, and will use hdparm
# to control them. Set this to 0 if you have /dev/sd devices and you want
# laptop mode tools to use the "sdparm" command to control them.
ASSUME_SCSI_IS_SATA=1
# Hard drive behaviour settings
# These settings specify how laptop mode tools will adjust the various
# parameters of your hard drives and file systems.
# Maximum time, in seconds, of work that you are prepared to lose when your
# system crashes or power runs out. This is the maximum time that Laptop Mode
# will keep unsaved data waiting in memory before spinning up your hard drive.
LM_BATT_MAX_LOST_WORK_SECONDS=600
LM_AC_MAX_LOST_WORK_SECONDS=360
# Should laptop mode tools control readahead?
CONTROL_READAHEAD=1
# Read-ahead, in kilobytes. You can spin down the disk while playing MP3/OGG
# by setting the disk readahead to a reasonable size, e.g. 3072 (3 MB).
# Effectively, the disk will read a complete MP3 at once, and will then spin
# down while the MP3/OGG is playing. Don't set this too high, because the
# readahead is applied to _all_ files that are read from disk.
LM_READAHEAD=3072
NOLM_READAHEAD=128
# Should laptop mode tools add the "noatime" option to the mount options when
# laptop mode is enabled?
CONTROL_NOATIME=0
# Should laptop mode tools control the hard drive idle timeout settings?
CONTROL_HD_IDLE_TIMEOUT=1
# Idle timeout values. (hdparm -S)
# Default is 2 hours on AC (NOLM_HD_IDLE_TIMEOUT_SECONDS=7200) and 20 seconds
# for battery and for AC with laptop mode on.
LM_AC_HD_IDLE_TIMEOUT_SECONDS=20
LM_BATT_HD_IDLE_TIMEOUT_SECONDS=20
NOLM_HD_IDLE_TIMEOUT_SECONDS=7200
# Should laptop mode tools control the hard drive power management settings?
CONTROL_HD_POWERMGMT=0
# Power management for HD (hdparm -B values)
BATT_HD_POWERMGMT=255
LM_AC_HD_POWERMGMT=255
NOLM_AC_HD_POWERMGMT=255
# Should laptop mode tools control the hard drive write cache settings?
CONTROL_HD_WRITECACHE=0
# Write cache settings for HD (hdparm -W values)
NOLM_AC_HD_WRITECACHE=1
NOLM_BATT_HD_WRITECACHE=0
LM_HD_WRITECACHE=0
# CPU frequency scaling and throttling
# Laptop mode tools can automatically adjust your kernel CPU frequency
# settings. This includes upper and lower limits and scaling governors.
# There is also support for CPU throttling, on systems that don't support
# frequency scaling.
# This feature only works on 2.6 kernels.
# Should laptop mode tools control the maximum CPU frequency?
CONTROL_CPU_FREQUENCY=1
# Legal values are "slowest" for the slowest speed that your
# CPU is able to operate at, "fastest" for the fastest speed,
# "medium" for some value in the middle, or any value listed in
# /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_frequencies.
# The "governor" can be any governor installed on your system, this usually
# includes "ondemand", "conservative", and "performance". The
# "IGNORE_NICE_LOAD" setting specifies that background programs that have
# a low priority ("nice level") should not cause the CPU frequency to
# be increased. (You generally want this to be enabled in battery mode.)
BATT_CPU_MAXFREQ=medium
BATT_CPU_MINFREQ=slowest
BATT_CPU_GOVERNOR=ondemand
BATT_CPU_IGNORE_NICE_LOAD=1
LM_AC_CPU_MAXFREQ=fastest
LM_AC_CPU_MINFREQ=slowest
LM_AC_CPU_GOVERNOR=ondemand
LM_AC_CPU_IGNORE_NICE_LOAD=1
NOLM_AC_CPU_MAXFREQ=fastest
NOLM_AC_CPU_MINFREQ=slowest
NOLM_AC_CPU_GOVERNOR=ondemand
NOLM_AC_CPU_IGNORE_NICE_LOAD=0
# Should laptop mode tools control the CPU throttling? This is only useful
# on processors that don't have frequency scaling.
# (Only works when you have /proc/acpi/processor/CPU*/throttling.)
CONTROL_CPU_THROTTLING=0
# Legal values are "maximum" for the maximum (slowest) throttling level,
# "minimum" for minimum (fastest) throttling level, "medium" for a value
# somewhere in the middle (this is usually 50% for P4s), or any value listed
# in /proc/acpi/processor/CPU*/throttling. Be careful when using "maximum":
# this may be _very_ slow (in fact, with P4s it slows down the processor
# by a factor 8).
BATT_CPU_THROTTLING=medium
LM_AC_CPU_THROTTLING=medium
NOLM_AC_CPU_THROTTLING=minimum
# Syslog configuration control
# Syslog daemons have a tendency to sync their log files when entries are
# written to them. This causes disks to spin up, which is not very nice when
# you're trying to save power. The syslog.conf can be tweaked to *not* sync
# a given file, by prepending the log file name with a dash, like this:
# mail.* -/var/log/mail/mail.log
# Using the following options, you can let laptop mode switch between
# different syslog configurations depending on whether you are working on
# battery or on AC power. To set this up, start by configuring these options
# for your syslog daemon, and then run lm-syslog-setup to create the various
# files. Then edit the laptop mode-specific syslog configuration files to
# remove the syncs only when laptop mode is active.
# Should laptop mode tools control which syslog.conf should be used?
CONTROL_SYSLOG_CONF=0
# Laptop mode tools controls syslog.conf by replacing /etc/syslog.conf (or
# whatever you specify in SYSLOG_CONF) by a link to the files configured here.
# NOTE: these files are NOT created by default, and if they do not
# exist this feature will not work. You can run the script
# /usr/sbin/lm-syslog-setup to set things up.
LM_AC_SYSLOG_CONF=/etc/syslog-on-ac-with-lm.conf
NOLM_AC_SYSLOG_CONF=/etc/syslog-on-ac-without-lm.conf
BATT_SYSLOG_CONF=/etc/syslog-on-battery.conf
# Signal this program when syslog.conf has been replaced.
SYSLOG_CONF_SIGNAL_PROGRAM=syslogd
# This is the syslog configuration file that should be replaced by a link to
# the other files.
SYSLOG_CONF=/etc/syslog.conf
# X display settings
# Using these settings, you can let laptop mode tools control the X display
# standby timeouts.
# This requires that you have installed the "xset" utility. It is part of the
# X.org server distribution and included in the package xorg-server-utils.
# The X settings are not automatically applied on login, and this is
# impossible fix for the user, since laptop mode tools must operate as root.
# Therefore, it is recommended to add the following line to /etc/X11/Xsession
# as well:
# /usr/sbin/laptop_mode force
# Should laptop mode tools control DPMS standby settings for X displays?
CONTROL_DPMS_STANDBY=0
# These settings specify the standby timeout for the X display,
# in seconds. The suspend and poweroff timeouts are somewhat
# larger values derived from these values.
BATT_DPMS_STANDBY=300
LM_AC_DPMS_STANDBY=1200
NOLM_AC_DPMS_STANDBY=1200
# Terminal settings
# Using these settings, you can let laptop mode tools control the terminal
# blanking timeouts. This only works for linux virtual consoles.
# Should laptop mode tools control terminal blanking settings?
CONTROL_TERMINAL=0
# Terminal device files that should be affected. (One terminal is enough, this
# affects all consoles. )
TERMINALS="/dev/tty1"
# These settings specify the blanking and powerdown timeouts. Note that
# the powerdown timeout is counted from the moment the screen is blanked,
# i.e. BLANK_MINUTES=2 and POWERDOWN_MINUTES=5 means the screen powers
# down after 7 minutes of inactivity. The range for all these settings is
# 1 to 60 minutes, or 0 to disable.
BATT_TERMINAL_BLANK_MINUTES=1
BATT_TERMINAL_POWERDOWN_MINUTES=2
LM_AC_TERMINAL_BLANK_MINUTES=10
LM_AC_TERMINAL_POWERDOWN_MINUTES=10
NOLM_AC_TERMINAL_BLANK_MINUTES=10
NOLM_AC_TERMINAL_POWERDOWN_MINUTES=50
# LCD brightness settings
# Using these settings, you can make laptop mode tools automatically adjust
# your LCD's brightness settings. The settings are extremely simple -- they
# only allow for the execution of a command, nothing more. The reason for this
# is that LCD brightness settings are very different between laptop vendors.
# Suggestions for commands:
# * If your system has the file "/proc/acpi/video/VID/LCD/brightness" (VID may
# be VID1 or similar), use this file as BRIGHTNESS_OUTPUT, and use
# the command "echo <value>". The possible values can be listed using the
# command:
# cat /proc/acpi/video/VID/LCD/brightness
# * If you have a file /sys/class/backlight/.../brightness, then you can use
# that file as BRIGHTNESS_OUTPUT, and the command "echo <value>".
# As far as I understand it the values are between 0 and
# the value contained in the file /sys/class/backlight/.../max_brightness.
# * For Toshiba laptops, use the command "toshset" with the -lcd or -inten
# command. Read the toshset(1) manual page for more information on the
# parameters for this command. If you use this command, set
# BRIGHTNESS_OUTPUT to "/dev/null".
# Should laptop mode tools control LCD brightness?
CONTROL_BRIGHTNESS=0
# Commands to execute to set the brightness on your LCD
BATT_BRIGHTNESS_COMMAND="echo [value]"
LM_AC_BRIGHTNESS_COMMAND="echo [value]"
NOLM_AC_BRIGHTNESS_COMMAND="echo [value]"
BRIGHTNESS_OUTPUT="/proc/acpi/video/VID/LCD/brightness"
# Auto-hibernation settings
# Using these settings, you can make laptop mode tools automatically put your
# computer into hibernation when the battery level goes critically low.
# This feature only works on ACPI, and only works on computers whose batteries
# give off battery events often enough.
# Should laptop mode tools perform auto-hibernation?
ENABLE_AUTO_HIBERNATION=0
# The hibernation command that is to be executed when auto-hibernation
# is triggered.
HIBERNATE_COMMAND=/usr/sbin/hibernate
# Auto-hibernation battery level threshold, in percentage of the battery's
# total capacity.
AUTO_HIBERNATION_BATTERY_CHARGE_PERCENT=2
# Enable this to auto-hibernate if the battery reports that its level is
# "critical".
AUTO_HIBERNATION_ON_CRITICAL_BATTERY_LEVEL=1
# Start/Stop Programs settings
# Laptop mode tools can automatically start and stop programs when entering
# various power modes. Put scripts accepting "start" and "stop" parameters
# in the directories /etc/laptop-mode/batt-stop, batt-start, lm-ac-stop,
# lm-ac-start, nolm-ac-stop and nolm-ac-start. Laptop mode will call the
# scripts in a state-"stop" directory with the "stop" parameter when entering
# the state in question, and it will call the same scripts with the "start"
# parameter when leaving the state. Scripts in a state-"start" directory are
# called with the "start" parameter when the specified state is entered, and
# with the "stop" parameter when the specified state is left.
# Should laptop mode start and stop programs?
CONTROL_START_STOP=1
# Settings you probably don't want to touch
# It is usually not necessary to change these parameters. They are included
# for completeness' sake.
# Change mount options on partitions in PARTITIONS? You don't really want to
# disable this. If you do, then your hard drives will probably not spin down
# anymore.
CONTROL_MOUNT_OPTIONS=1
# Dirty synchronous ratio. At this percentage of dirty pages the process
# which calls write() does its own writeback.
LM_DIRTY_RATIO=60
NOLM_DIRTY_RATIO=40
# Allowed dirty background ratio, in percent. Once DIRTY_RATIO has been
# exceeded, the kernel will wake pdflush which will then reduce the amount
# of dirty memory to dirty_background_ratio. Set this nice and low, so once
# some writeout has commenced, we do a lot of it.
LM_DIRTY_BACKGROUND_RATIO=1
NOLM_DIRTY_BACKGROUND_RATIO=10
# kernel default settings -- don't touch these unless you know what you're
# doing.
DEF_UPDATE=5
DEF_XFS_AGE_BUFFER=15
DEF_XFS_SYNC_INTERVAL=30
DEF_XFS_BUFD_INTERVAL=1
DEF_MAX_AGE=30
# This must be adjusted manually to the value of HZ in the running kernel
# on 2.4, until the XFS people change their 2.4 external interfaces to work in
# centisecs. This can be automated, but it's a work in progress that still
# needs some fixes. On 2.6 kernels, XFS uses USER_HZ instead of HZ for
# external interfaces, and that is currently always set to 100. So you don't
# need to change this on 2.6.
XFS_HZ=100
# Seconds laptop mode has to to wait after the disk goes idle before doing
# a sync.
LM_SECONDS_BEFORE_SYNC=2
All the hard drive power saving options are disabled correct? just a paranoid kid double checking to see if he understands right.

Similar Messages

  • OSxMavericks Mini Display Port Won't Return to Original Display Settings When Unplugged

    I have a new MacBook Pro 13" Retina Display and display the screen on my Samsung TV. I have never had any problems with the display adjusting from the Samsung output back to the laptop settings when unplugged (on my old MacBook Air), but with OSxMavericks, it will not convert/adjust. When plugged in and displayed on the Samsung, the laptop display is very small; when subsequently unplugged, it is stretched and I have to manually reduce the size of each window. I would like it to be able to adjust to a larger display when plugged into the Samsung but then automatically adjust back to the smaller display when the mini displayport is unplugged. I feel that this is an easy setting to change, but I can't find it. Can anyone give me a tip? Thanks!

    I had a MacBook Pro 2010 that was running 10.9.1 and worked fine using mdp to hdmi. Now I changed it to a pro 2012 running 10.9.2 and the same wire no longer works.

  • Change default settings when user share file

    When users click on share file default setting is:
    Can edit and mark send an email invitation.
    Is there possible to change to:
    Can view and NOT mark an email invitation

    Hi,
    According to your description, you want to change default settings to
    can view and uncheck send an email invitation when user share file.
    To by default uncheck send an email invitation.  Go to the file "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\AclInv.aspx".
    You can change:
    <wssawc:InputFormCheckBox
    runat="server"
    id="chkSendEmail"
    Checked="True"
    LabelText="<%$Resources:wss,aclver_SendEmailCheckbox%>"
    To
    <wssawc:InputFormCheckBox
    runat="server"
    id="chkSendEmail"
    Checked="False"
    LabelText="<%$Resources:wss,aclver_SendEmailCheckbox%>"
    Here is a similar post, you can use as a reference:
    https://social.technet.microsoft.com/Forums/office/en-US/f250aa4a-94f0-4603-9da2-e9040d5d6133/how-to-by-default-uncheck-send-an-email-invitation-when-granting-access?forum=sharepointadmin
    To by default can view. Go to the file "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\AclInv.aspx".
    You can add the following code into the function _spBodyOnLoad():
    document. querySelector('[id$=DdlsimplifiedRoles]').value="role:1073741826";
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Easy way to change server settings when switching between home&office

    I have the following problem:
    When I'm at home my email server (imap/smtp) is mail.mani.pt,
    when I'm at the office I address it as 192.16.1.2
    Each time I switch locations I have to modify all the account settings in mail. This is a pain.
    Is there a easy way of doing this??
    In Windows I use an app called PortTunnel where I can redefine certain ports, i.e. localhost:25->192.168.1.2:25 etc
    So I only have to activate the different locations here (easy) and in the mail app the server is ALWAYS localhost.
    Is there a way to do this under Mac?

    If changing the incoming mail server on the fly is problematic, it should make no difference if a script or the user does it manually in the account preference. Since this is something that users may have to do for various reasons (travel, ISP changes, whatever), it would be very lame if Mail could not handle this gracefully.
    From what I can tell, Mail 2.x uses the initial mail server name in creating the account's folder but thereafter uses UID's & path names stored in ~/Library/Preferences/com.apple.mail.plist to reference its contents. (For those interested, the property is MailAccounts array.) As long as these don't change, there should be no problems.
    However, this suggests that .plist corruption or removing the .plist for troubleshooting could contribute to this kind of problem, so one should be very careful to use the initial mail server name if it becomes necessary to reconstruct the account.

  • How do i change sound settings when i purchase a song from itunes store?

    When i purchase songs from the ITunes store it automatically downloads the songs at 128bps. Well i read that if you listen to songs in your car with your ipod you want to set that to a higher setting, preferably 192bps or higher. Says if you use headphones that that setting is ok but in a car you want it higher because you'll lose sounds quality. I can't find where to change the setting on itunes. I did find import settings on itunes for CD's and i changed that to 224bps but i can't find where to change it for purchases from the itunes store. Can anyone help?

    As noted above iTunes Plus songs can be recognised by a plus sign beside them. If I recall the early launch information the iTunes Plus songs are predominantly EMI releases but other labels may also have iTunes Plus content available now: iTunes Plus FAQ

  • Why do I have to change printer settings when using Photoshop tiff?

    I'm creating a tithe envolope for my church. The text portions were created in the psd using the text tool of course. But, for our church logo, I used a 300 dip tiff, scaled and positioned it at the top left part of the layout. This is all being done inside a life-size area using guide lines to simulate the edges of the envelope. Then I save the entire thing out from Photosop as a tiff. I created a MS Word doc and used Insert>Picture to place the tiff at a place in the Word doc that puts it in the right location when envelopes are loaded into the laserjet printer.
    Here's the glitch. If I let the Word doc print at it's default resolution of 300 dpi, the church logo shows up looking very ragged/pixelated. Only by going through the hassle of resetting the printer properties each time to 600 dpi do I get a smooth, clean output. What's going on?

    Sounds like an issue with the print driver not retaining previous settings to me.
    Keep in mind that printer settings are saved with some kinds of documents (e.g., PSD files).  I'm not sure if that's the case with a TIFF, but if so, make sure you save the TIFF file after you print so the settings will be available next time you print it.
    There is a known issue with some drivers where you have to go through a few extra steps to get them to retain the settings you make in the Photoshop dialog, but I don't see how that might apply here.  To see if it does, do the following:
    File - Print.
    In the Photoshop print dialog, make whatever settings you like.
    Click the [ Print Settings... ] Button, and exit the print driver dialog with [ OK ].
    Click [ Print ].
    Save and Close your document.
    Open the document again.
    File - Print.
    Click the [ Print Settings... ] button.
    Is your dpi preference remembered?
    -Noel

  • Qosmio F60 - Change screen settings when using DVD player

    When I try to play DVD using BD DVD Player a message appears that tell me to change the screen setting I have followed their instruction to no availo. I am running Windows 7. The DVD plays on windows media ok.
    Any help would be appreciated

    Hi ametec,
    Was this BD DVD player preinstalled on your computer?
    Which message you getting exactly? Maybe you can upload a screenshot or something else
    In my opinion this problem is only related to this DVD player because on Media Player everything works
    For example I use VLC media player for all my audio and video files. Its a small freeware player that can play the most audio and video files. Furthermore its not necessary to use a special DVD player software.

  • Change my settings when logged in by microsoft acc...

    Hello, I'm loggin in using my Microsoft Account and I want to change some of my personal information (avatar, email address etc...) i hit and change email and a confirmation pop up appears. I put my Microsoft password in it but it wont let me change anything. What can I do ?

    I have the same problem ...
    I changed my main email account at microsoft and skype it in the data has not changed.
    I wanted to manually enter it calls for the password to your account, after entering the password for microsoft error pops up.

  • How Do I Stop HP X3500 Mouse Changing DPI Settings When I Hold Down Left + Right Buttons?

    I have purchased the HP X3500 wireless mouse, and frequently interact with applications which require me to simultaneously click on the left and right mouse buttons. Every time I do this the DPI value is changed (since holding them both down for 3 seconds each and moving the mouse changes the DPI). This is due to a feature with the mouse.
    How can I disable this? The mouse itself did not come with any bundled software.
    thx.

    In order to make use of the right-click inside an open session you have three options:
    Standard PC two button USB mouse
    Apple Magic Mouse: To enable right-click, clickSystem Preferences in the dock, click Mouse, and then enable Secondary click.
    Apple Magic Trackpad or MacBook Trackpad: To enable right-click, click System Preferences in the dock, click Mouse, and then enable Secondary click.
    Extracted from "Remote desktop Client on Mac: FAQ"
    http://technet.microsoft.com/en-us/library/dn473006.aspx

  • How do I change the settings when my fonts on printer are too small?

    Epson XP410 All in one printer
    Windows 8 system

    Just to let you know this is an HP Printer forum, not Epson. Please call the good folks at Epson for assistance. With that said, your font size is controlled by your printing software application and not the printer itself.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • How to change Boot settings when Windows is not starting?

    Ich bitte um Hilfe,
    Ich habe unabsichtlich in der msconfig Anwendung bei start--> Erweiterte Optionen--> maximaler Speicher ein Häckchen rein gemacht und somit unabsichtlich den max Arbeitsspeicher
    (wie mir erst später klar wurde) auf ca 2000 MB gestellt.
    Leider ist es nun nicht mehr möglich den laptop zu starten, dies führt immer zu einem bue-screen und der HP Fehlerbehebung.
    Was kann ich tun um das wieder um zu ändern?
    Ich habe auch schon Versucht mit einem anderem OS zu starten (ubuntu auf SD karte) führt aber zu den selben Resultaten.
    Was kann ich tun um das wieder umzuändern? (Am Besten wäre ein Befehl fuhr die Armin Console)
    Vielen dank
    Erebos

    Please select your language from the drop down list at the top of the page to post your question in the language of your choice. The forum you posted in is for English only. If you do not find the desired language, support options for additional
    international locations can be found by following the link below:
    Bitte wählen Sie Ihre Sprache aus der Dropdown-Liste am oberen Rand der Seite, um Ihre Frage in der Sprache Ihrer Wahl buchen. Das Forum Sie im Thema ist nur für Englisch. Wenn Sie nicht finden, die gewünschte Sprache,
    unterstützt Optionen für zusätzliche internationale Standorte können über den Link unten:
    http://support.microsoft.com/common/international.aspx 
    Wanikiya and Dyami--Team Zigzag

  • SMTP Settings when NOT On Verizon FIOS

    I've had an ongoing issue with the SMTP settings in Microsoft Outlook.  When I'm ON FIOS I have to check "My outgoing server (SMTP) requires authentication".  When I take my laptop to work or somewhere NOT on FIOS I have to uncheck that setting.  Is there an alternate to outgoing.verizon.net that I can use the same bloody settings on no matter where I'm at?!??!!  Thanks!
    Doc

    somegirl wrote:
    I have never had to change my SMTP settings when leaving the Verizon Network. Server Requires Authentication should always have to be checked. I can send via a client on any connection with my settings this way.
    I have no answer either, but I agree with somegirl, I have never had to change any settings when I am off the Verizon network. I have a weekend house in AT&T DSL territory, plus free wi-fi access via a local cable ISP, and my normal settings with authentication turned on work fine on them for sending and receiving emails.Never any email issues other than I had to get AT&T to allow me to use a non-AT&T outgoing email server while using their network. And when I have used wi-fi access in hotels it has always worked just fine too.
    To the original poster:
    Probably not at all related, but what port do you have defined for the outgoing server? I used to have port 25 but changed that to 587 some months ago as Verizon supposedly has begun the process of changing from port 25 to 587 in an effort to reduce spam generated on the Verizon network.
    This is certainly a mystery to me. I hope you will let us know what the resolution is once you find it.
    Justin
    Verizon FiOS TV, Internet, and phone
    QIP6416-P1, IMG 1.7C, Build 09.83
    Keller, TX 76248

  • How to change Camera settings while NetStream is published with H264 codec

    Hi,
    when I'm using H264 codec I can't modify my cam.setMode(w,h, fps) because my stream hangs (second call to cam.setMode() uhangs video. When I'm using Sorenson codec that same code works fine.
    So my question is how can I change Camera settings when I'm publishing images from this camera with NetStream encoded with H264. I'm using Flash Player 11,3,300,270 Windows 7 64 bit ActiveX.
    Swf compiled to target Flash Player 11.3, swf-version=16.
    Regards

    Try to unpublish/pause publishing just before setting the things on camera and resume/publish again after the settings are applied.
    C

  • When Updating to IOS4 Do Not Say Yes to Udpate Changes to Settings

    I updated my iPhone 3g to IOS4 on release date. OK You can stop laughing at me know, I got screwed over but I was lucky.
    I couldn't get the OS to install using the update so I did the work around and downloaded the OS into iTunes and did a backup and then a restore. I had read a couple of threads that said this would work a lot faster than doing the update. I had waited nearly three hours for the update to finish so I figured it was the combination of my creaky old PC, iTunes and one of the apps on my phone so I tried the restore instead of update trick. It actually worked and only took about 30 minutes start to finish.
    BUT when it was done I got a dialog box telling me that I had changed my settings and did I want to apply this change to my phone <YES> or <NO>? Without thinking about it I clicked yes and my phone did another sync. I lost my address book, email and text messages all in one fell swoop. Can you spell panic and nausea? I thought you could.
    I was all over the web looking for ways to restore my stuff. I tried another sync because the last one I did before installing the new OS should have still been there...No Luck.
    I tried everything I could think of and nothing worked. I wasn't too worried about my email, because of course it was still out on the web (Gmail Rocks!!)
    Then it occurred to me, I had been using Gmail and GSync. I set up a new G-Sync account on my phone and set it to running. It took about 24 hours total, but all of my email, contacts and text messages restored themselves to my phone wirelessly.
    So I strongly recommend that you do not apply changes to your phone when you do the IOS4 update. At least not the first time around. I also do not recommend using the restore in place of update workaround. Just let the update run (and run and run and run and, well you get it)until it finishes. You should get a clean install and a total restore of your music, contacts, apps, email, etc. I have no idea why an update on an 8 Gb iPhone needs to take hours, but apparently it just does.
    So to sum up:
    If updating to IOS4 use the update in iTunes not restore
    At the end of the update DO NOT apply changes to settings
    DO use gmail and G-Sync or another email that backs up your address book to the web.

    Fixed it......
    The problem was my Apps library in iTunes was not populated with the apps on my phone after the update of iTunes and iOS4. Therefore, that is why I "lost" them visually. Now, had I gone and hit "Apply" I would have been screwed, since nothing was in my iTunes App library.....Sneaky.....
    In iTunes, File>"Transfer Purchases from iPhone"
    This populates the iTunes App library with the apps on your device. It will take a few minutes, but all of the apps will now show up when you go back and try to sync the iPhone.
    Screenshot of Success!
    http://i55.photobucket.com/albums/g134/leonardrock/Screenshot3.png
    Nice, I'm not stupid.
    Thanks for the chime-ins everybody!

  • I have an Iphone 4s from my work. Until 2 days ago, my iphone would notify me when I got an email or text. Now it does not notify me at all and some times it does not ring at all either. I have not changed any settings at all.

    My iphone just randomly stopped notifying me when I got an email, text or voicemail. Sometimes it will not even ring. I confirmed that the volume is turned on and I have not changed any settings at all. My software is up to date. In my job I need to know when I get an email without having to constantly activate the screen or open the email icon.
    Does anyone have any suggestions to fix this problem?

    First, is the Mute switch activated?
    Mute switch is above the volume buttons on the left side of iPhone.
    If you see red/orange color the the mute is ON.
    Also check Settings > Sounds > for New mail, Text Tone, etc.. have sound entries?
    If that's not the case try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

Maybe you are looking for

  • Crystal Report not Adopting all possible Dropdown Values from BEx Variable

    Hi all, I am having an issue in a Crystal report where the drop down parameter that is sourced from a BEx query variable does not include all the possible values in the cube (or in master data). After learning my lesson the first time of not changing

  • Displaying text in local web browser

    Hi, Been looking at a web forwarding program that accepts a GET request from a browser and goes off and gets the page from the remote server and then needs to feed that page back to the browser. I've got as far as getting the page back from the remot

  • Music library won't sync to iphone, how do I clean up my phone?

    My iphone music is a mess and won't sync with itunes.  I have tried - Downloading all manually that could from the cloud. Downloading all purchases manually. Turning of show all music.  *with a power off Manually deleting all songs.  Nothing works an

  • The Visual Elements - not enough memory

    I have a 3rd generation iPad running iOS 6.01 with 3.7GB of free memory, but when I try to "update" "The Visual Elements" app I get a message that says "There is not enough available local storage to download..".  I don't see how this is possible.  D

  • Nokia Lumia 925 Camera problem - Ranlie Basas

    I have bought Nokia Lumia 925, and i has camera problem. My Nokia Lumia, not working properly. Please help. Best regards, Ranlie Basas