[Solved] a.out not recognizing the working directory

It's a little bit embarrassing because this issue doesn't seem terribly complicated, but I'm having trouble with executing the a.out file (Hello World) that gcc produces. I have to explicitly state the directory that a.out is in to run it, even though it's in the working directory. Other programs, such as Nano, recognize the working directory just fine and it is able to open files inside the working directory without having me explicitly state the full directory name.
Any help would be greatly appreciated.
Last edited by bananaman (2011-03-23 03:16:10)

The easiest and most secure way would be using the relative path to the executable:
./a.out
If you use a single directory for writing/testing your programs, you could add it to your user PATH. Not a major security risk, but if you do so, be careful what executables are in the dir.
~/.bashrc (or ~/.bash_profile):
[[ -d ~/cpp ]] && export PATH="$PATH:~/cpp"
Adding the current working directory to PATH is a security risk, so I wouldn't recommend it.
Last edited by sisco311 (2011-03-23 03:12:29)

Similar Messages

  • Periodic Message: You have some checked-out files in the working directory

    Hi,
    we are recieving a periodic message (appearing every 5 minutes) saying:
    "You have some checked-out files in the working directory. We recommend that you check in the files after editing. Click here to checkin the files.
    After clicking on the message easyDMS is opened and Private- & Public-Folder are shown.
    There are no checked out files on the client.
    What happened?
    Thanks a lot!
    Edited by: B Lobascio on Feb 8, 2011 5:13 PM

    After changing the Working directory in easyDMS preferences the message did not apear anymore.
    That means that there have been some some damaged documents in origin working directory.
    Edited by: B Lobascio on Feb 16, 2011 10:35 AM

  • [SOLVED]mpd does not detect the music directory

    I recently installed mpd with the gmpc gui, set my "music_directory" in /etc/mpd.conf to the location of all of my music (which contains lots of other folders and subfolders), but there's no listing of the audio files in the database in gmpc.
    Here's the /etc/mpd.conf if that helps:
    # An example configuration file for MPD
    # See the mpd.conf man page for a more detailed description of each parameter.
    # Files and directories #######################################################
    # This setting controls the top directory which MPD will search to discover the
    # available audio files and add them to the daemon's online database. This
    # setting defaults to the XDG directory, otherwise the music directory will be
    # be disabled and audio files will only be accepted over ipc socket (using
    # file:// protocol) or streaming files over an accepted protocol.
    music_directory "/var/lib/mpd/music"
    # This setting sets the MPD internal playlist directory. The purpose of this
    # directory is storage for playlists created by MPD. The server will use
    # playlist files not created by the server but only if they are in the MPD
    # format. This setting defaults to playlist saving being disabled.
    playlist_directory "/var/lib/mpd/playlists"
    # This setting sets the location of the MPD database. This file is used to
    # load the database at server start up and store the database while the
    # server is not up. This setting defaults to disabled which will allow
    # MPD to accept files over ipc socket (using file:// protocol) or streaming
    # files over an accepted protocol.
    db_file "/var/lib/mpd/mpd.db"
    # These settings are the locations for the daemon log files for the daemon.
    # These logs are great for troubleshooting, depending on your log_level
    # settings.
    # The special value "syslog" makes MPD use the local syslog daemon. This
    # setting defaults to logging to syslog, otherwise logging is disabled.
    log_file "/var/log/mpd/mpd.log"
    # This setting sets the location of the file which stores the process ID
    # for use of mpd --kill and some init scripts. This setting is disabled by
    # default and the pid file will not be stored.
    pid_file "/var/run/mpd/mpd.pid"
    # This setting sets the location of the file which contains information about
    # most variables to get MPD back into the same general shape it was in before
    # it was brought down. This setting is disabled by default and the server
    # state will be reset on server start up.
    state_file "/var/lib/mpd/mpdstate"
    # The location of the sticker database. This is a database which
    # manages dynamic information attached to songs.
    #sticker_file "~/.mpd/sticker.sql"
    # General music daemon options ################################################
    # This setting specifies the user that MPD will run as. MPD should never run as
    # root and you may use this setting to make MPD change its user ID after
    # initialization. This setting is disabled by default and MPD is run as the
    # current user.
    user "mpd"
    # This setting specifies the group that MPD will run as. If not specified
    # primary group of user specified with "user" setting will be used (if set).
    # This is useful if MPD needs to be a member of group such as "audio" to
    # have permission to use sound card.
    #group "nogroup"
    # This setting sets the address for the daemon to listen on. Careful attention
    # should be paid if this is assigned to anything other then the default, any.
    # This setting can deny access to control of the daemon.
    # For network
    #bind_to_address "any"
    # And for Unix Socket
    #bind_to_address "~/.mpd/socket"
    # This setting is the TCP port that is desired for the daemon to get assigned
    # to.
    #port "6600"
    # This setting controls the type of information which is logged. Available
    # setting arguments are "default", "secure" or "verbose". The "verbose" setting
    # argument is recommended for troubleshooting, though can quickly stretch
    # available resources on limited hardware storage.
    #log_level "default"
    # If you have a problem with your MP3s ending abruptly it is recommended that
    # you set this argument to "no" to attempt to fix the problem. If this solves
    # the problem, it is highly recommended to fix the MP3 files with vbrfix
    # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
    # point gapless MP3 playback can be enabled.
    #gapless_mp3_playback "yes"
    # This setting enables MPD to create playlists in a format usable by other
    # music players.
    #save_absolute_paths_in_playlists "no"
    # This setting defines a list of tag types that will be extracted during the
    # audio file discovery process. Optionally, 'comment' can be added to this
    # list.
    #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
    # This setting enables automatic update of MPD's database when files in
    # music_directory are changed.
    #auto_update "yes"
    # Limit the depth of the directories being watched, 0 means only watch
    # the music directory itself. There is no limit by default.
    #auto_update_depth "3"
    # Symbolic link behavior ######################################################
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links outside of the configured music_directory.
    #follow_outside_symlinks "yes"
    # If this setting is set to "yes", MPD will discover audio files by following
    # symbolic links inside of the configured music_directory.
    #follow_inside_symlinks "yes"
    # Zeroconf / Avahi Service Discovery ##########################################
    # If this setting is set to "yes", service information will be published with
    # Zeroconf / Avahi.
    #zeroconf_enabled "yes"
    # The argument to this setting will be the Zeroconf / Avahi unique name for
    # this MPD server on the network.
    #zeroconf_name "Music Player"
    # Permissions #################################################################
    # If this setting is set, MPD will require password authorization. The password
    # can setting can be specified multiple times for different password profiles.
    #password "password@read,add,control,admin"
    # This setting specifies the permissions a user has who has not yet logged in.
    #default_permissions "read,add,control,admin"
    # Input #######################################################################
    input {
    plugin "curl"
    # proxy "proxy.isp.com:8080"
    # proxy_user "user"
    # proxy_password "password"
    # Audio Output ################################################################
    # MPD supports various audio output types, as well as playing through multiple
    # audio outputs at the same time, through multiple audio_output settings
    # blocks. Setting this block is optional, though the server will only attempt
    # autodetection for one sound card.
    # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
    # other audio outputs.
    # An example of an ALSA output:
    #audio_output {
    # type "alsa"
    # name "My ALSA Device"
    ## device "hw:0,0" # optional
    ## format "44100:16:2" # optional
    ## mixer_type "hardware" # optional
    ## mixer_device "default" # optional
    ## mixer_control "PCM" # optional
    ## mixer_index "0" # optional
    # An example of an OSS output:
    #audio_output {
    # type "oss"
    # name "My OSS Device"
    ## device "/dev/dsp" # optional
    ## format "44100:16:2" # optional
    ## mixer_type "hardware" # optional
    ## mixer_device "/dev/mixer" # optional
    ## mixer_control "PCM" # optional
    # An example of a shout output (for streaming to Icecast):
    #audio_output {
    # type "shout"
    # encoding "ogg" # optional
    # name "My Shout Stream"
    # host "localhost"
    # port "8000"
    # mount "/mpd.ogg"
    # password "hackme"
    # quality "5.0"
    # bitrate "128"
    # format "44100:16:1"
    ## protocol "icecast2" # optional
    ## user "source" # optional
    ## description "My Stream Description" # optional
    ## genre "jazz" # optional
    ## public "no" # optional
    ## timeout "2" # optional
    ## mixer_type "software" # optional
    # An example of a recorder output:
    #audio_output {
    # type "recorder"
    # name "My recorder"
    # encoder "vorbis" # optional, vorbis or lame
    # path "/var/lib/mpd/recorder/mpd.ogg"
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # An example of a httpd output (built-in HTTP streaming server):
    #audio_output {
    # type "httpd"
    # name "My HTTP Stream"
    # encoder "vorbis" # optional, vorbis or lame
    # port "8000"
    # bind_to_address "0.0.0.0" # optional, IPv4 or IPv6
    ## quality "5.0" # do not define if bitrate is defined
    # bitrate "128" # do not define if quality is defined
    # format "44100:16:1"
    # max_clients "0" # optional 0=no limit
    # An example of a pulseaudio output (streaming to a remote pulseaudio server)
    audio_output {
    type "pulse"
    name "My Pulse Output"
    server "remote_server" # optional
    sink "remote_server_sink" # optional
    ## Example "pipe" output:
    #audio_output {
    # type "pipe"
    # name "my pipe"
    # command "aplay -f cd 2>/dev/null"
    ## Or if you're want to use AudioCompress
    # command "AudioCompress -m | aplay -f cd 2>/dev/null"
    ## Or to send raw PCM stream through PCM:
    # command "nc example.org 8765"
    # format "44100:16:2"
    ## An example of a null output (for no audio output):
    #audio_output {
    # type "null"
    # name "My Null Output"
    # mixer_type "none" # optional
    # This setting will change all decoded audio to be converted to the specified
    # format before being passed to the audio outputs. By default, this setting is
    # disabled.
    #audio_output_format "44100:16:2"
    # If MPD has been compiled with libsamplerate support, this setting specifies
    # the sample rate converter to use. Possible values can be found in the
    # mpd.conf man page or the libsamplerate documentation. By default, this is
    # setting is disabled.
    #samplerate_converter "Fastest Sinc Interpolator"
    # Normalization automatic volume adjustments ##################################
    # This setting specifies the type of ReplayGain to use. This setting can have
    # the argument "off", "album" or "track". See <http://www.replaygain.org>
    # for more details. This setting is off by default.
    #replaygain "album"
    # This setting sets the pre-amp used for files that have ReplayGain tags. By
    # default this setting is disabled.
    #replaygain_preamp "0"
    # This setting enables on-the-fly normalization volume adjustment. This will
    # result in the volume of all playing audio to be adjusted so the output has
    # equal "loudness". This setting is disabled by default.
    #volume_normalization "no"
    # MPD Internal Buffering ######################################################
    # This setting adjusts the size of internal decoded audio buffering. Changing
    # this may have undesired effects. Don't change this if you don't know what you
    # are doing.
    #audio_buffer_size "2048"
    # This setting controls the percentage of the buffer which is filled before
    # beginning to play. Increasing this reduces the chance of audio file skipping,
    # at the cost of increased time prior to audio playback.
    #buffer_before_play "10%"
    # Resource Limitations ########################################################
    # These settings are various limitations to prevent MPD from using too many
    # resources. Generally, these settings should be minimized to prevent security
    # risks, depending on the operating resources.
    #connection_timeout "60"
    #max_connections "10"
    #max_playlist_length "16384"
    #max_command_list_size "2048"
    #max_output_buffer_size "8192"
    # Character Encoding ##########################################################
    # If file or directory names do not display correctly for your locale then you
    # may need to modify this setting.
    #filesystem_charset "UTF-8"
    # This setting controls the encoding that ID3v1 tags should be converted from.
    #id3v1_encoding "ISO-8859-1"
    # SIDPlay decoder #############################################################
    # songlength_database:
    # Location of your songlengths file, as distributed with the HVSC.
    # The sidplay plugin checks this for matching MD5 fingerprints.
    # See http://www.c64.org/HVSC/DOCUMENTS/Songlengths.faq
    # default_songlength:
    # This is the default playing time in seconds for songs not in the
    # songlength database, or in case you're not using a database.
    # A value of 0 means play indefinitely.
    # filter:
    # Turns the SID filter emulation on or off.
    #decoder {
    # plugin "sidplay"
    # songlength_database "/media/C64Music/DOCUMENTS/Songlengths.txt"
    # default_songlength "120"
    # filter "true"
    Last edited by vlad951 (2011-05-07 09:36:11)

    vlad951 wrote:
    Thanks, I successfully launched mpd as a user and it detected all of my music. However, if I launch mpd with the mpd.conf that I created in my home directory, it launches, but outputs the following:
    [vladislav@vladislav .mpd]$ mpd ~/.mpd/mpd.conf
    listen: bind to '0.0.0.0:6600' failed: Address already in use (continuing anyway, because binding to '[::]:6600' succeeded)
    Is this normal?
    *sigh* i answer this for the 3rd time in a row... this is no error it just says that binding to your ipv6 interface happened before the binding to ipv4.
    If you want to use your ipv4 interface hardcode it in mpd.conf
    bind_to_address "127.0.0.1"
    you can also have several binds:
    bind_to_address "127.0.0.1"
    bind_to_address "192.168.1.13"
    to make it listen on localhost and the external IP of your network card.
    If your music is on the same machine as your mpd i recommend to use a unix socket in addition.
    bind_to_address "/path/to/some/file/that/does/not/exist/yet"
    and make your client connect to that file instead of the IP. Speeds things up a log e.g. in ncmpcpp
    and btw: you can save your mpd.conf file as ~/.mpdconf and mpd will automatically use it.
    Last edited by Rasi (2011-05-07 08:41:30)

  • My AppleTV stopped working after power outage. Light is on and I rebooted and reset w remote but it keeps giving me a pic of the Hdmi cord like it is not recognizing the hdmi as being plugged in. I've unplugged it several times.

    My AppleTV stopped working after power outage. Light is on and I rebooted and reset w remote but it keeps giving me a pic of the Hdmi cord like it is not recognizing the hdmi as being plugged in. I've unplugged it several times.

    It is in recovery mode. The picture is telling you to connect to iTunes via micro usb cable in order to restore.
    http://support.apple.com/kb/HT4367?viewlocale=en_US&locale=en_US

  • HT1583 After the Burn, I tried to play the DVD on my iMac, but will not recognized the DVD.  It worked on my DVD player connected to my TV.  First time it happened. ok.

    After  completing the Burn process, I tried to play the same DVD to the same computer, but did not recognized the DVD media.  It worked ok on the DVD player connected to my TV.  I've been burning DVD for a quite a awhile, this is the first time it happened.

    Hi
    This usually depends on
    • BURN SPEED - not set down to x2 or max x4 - BEST IS N OT BEST - it gives max burn errors = BAD DVD
    • Brand of DVD used - MeMorex, NoName etc are known problem makers - I only use Verbatim
    • Type of DVD used - DVD+/-RW and DVD+R and DL-DVDs - can give a variety of problems - I only use SL-DVD-R
    • Low free space on the Start-Up (Macintosh HD) Hard Disk - also gives bad result
    - interlaced SD-Material (as on old CRT-TV (tube)) - I never go less than 25Gb
    - HD-material - then 4 - 5 times more seems to be a good safe minimum.
    Yours Bengt W

  • HT5219 it is frustrating that thunderbolt is not recognized while working in the windows 7 on MacPro - will this issue be ever resolved? if so when?

    It is frustrating that thunderbolt is not recognized while working in boot camp windows 7 on MacPro - will this issue be ever resolved? if so when?

    I second this question.

  • Trying to move my iTunes Music and other media from the main drive on my pc to an external hard drive but iTunes is not recognizing the new file location?  Ideas?

    Trying to move my iTunes Music and other media from the main drive on my pc to an external hard drive but iTunes is not recognizing the new file location?  Ideas?

    Hello there, Underwriter.
    The following Knowledge Base article provides in-depth instructions on how to migrate your content to an external drive:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Particularly of note for your situation:
    External drive
    This option requires more work than Home Sharing, but it creates a backup of your iTunes library on the external drive in addition to moving your content.
    Notes before you start:
    You can use most iPods as an external drive.
    Windows operating systems don't recognize Mac OS-formatted disks (HFS or HFS Plus formats). Because of this, you can't use a Mac-formatted iPod or external drive to move your music to a Windows PC. See iPod: How to determine iPod's hard disk format if you're not sure how your iPod is formatted.
    Mac OS X can read Windows-formatted iPods and drives. This means there are many ways to migrate your information from your old Windows-based PC to your new Mac.
    Mac OS X: To be sure external drives appear on your desktop, choose Preferences from the Finder menu. Be sure the options for "External disks" and "Hard disks" are enabled.
    Part 1: Locating and consolidating the iTunes Media folder
    Part 2: Copy iTunes folder from the old computer:
    Part 3: Get iTunes ready on your new computer
    Part 4: Back up any music that's already on your new computer
    Part 5: Copy music to your new computer
    Part 6: Add preexisting music that was on the new computer back into the library
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I Tunes not recognizing the I Pod, I Pod is frozen.

    Hi thank you for Holping me with the Error 1417 and 1418,
    Before i can try thos solutions I have A new problum.
    I Tunes is not recognizing the I Pod, and I Pod is frozen on the "Do not disconnect" screen.
    Thanks
    DELL   Windows XP   3.2 Ghz Pentium D With 60GB Ipod Photo

    First of all try Resetting your iPod. Hold down the
    MENU and SELECT (centre) buttons for five or ten
    seconds until you see the Apple logo appear then the
    menu button to go to the normal display. Once you've
    done that, if everything is working again, have a
    look at this troubleshooting article: iPod shows up in Windows but not in iTunes
    You, my friend, are a life saver!!! I had the same problem today and I was freaking out. I was watching a video and went back to the menu and that's when it froze. None of the buttons would do anything. It sat like that with the backlight on for about three hours so the battery is just about drained now. I never knew about the Menu and Select button reset method until now.
    It worked beautifully, thanks!!!!
    Pieces and Parts   Windows XP Pro  

  • How to set the working directory for reports in linux

    Hi All,
    Can you anyone help me to set the working directory for oracle application server 10g reports? I am using RHEL4 and AS10g. Actually i want to run my reports from my define
    working directory. How can I do this?
    Thanks in advance
    Arif

    Hi,
    your rep_srv.conf should look like something like
    +<?xml version = '1.0' encoding = 'ISO-8859-1'?>+
    +<!DOCTYPE server PUBLIC "-//Oracle Corp.//DTD Reports Server Configuration //EN" "file:D:\oracle\FRHome_1/reports/dtd/rwserverconf.dtd">+
    +<server version="10.1.2.0.2">+
    +<!--Please do not change the id for reports engine.-->+
    +<!--The class specifies below is subclass of _EngineClassImplBase and implements EngineInterface.-->+
    +<cache class="oracle.reports.cache.RWCache">+
    +<property name="cacheSize" value="50"/>+
    +<!--property name="cacheDir" value="your cache directory"-->+
    +<!--property name="maxCacheFileNumber" value="max number of cache files"-->+
    +<!--property name="ignoreParameters" value="parameter names to be ignored in constructing cache key, separated by comma ','"-->+
    +</cache>+
    +<engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="3" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="90000" jvmOptions="-Xmx512M -Xss512K">+
    +<!--property name="sourceDir" value="your reports source directory"/-->+
    +<!--property name="tempDir" value="your reports temp directory"/-->+
    +<!--property name="keepConnection" value="yes"/-->+
    +</engine>+
    +...+
    some more definitions
    +..+
    +<!--pluginParam name="proxy" type="file">proxyinfo.xml</pluginParam-->+
    +<pluginParam name="xmlpds" type="file">xmlpds.conf</pluginParam>+
    +<pluginParam name="jdbcpds" type="file">jdbcpds.conf</pluginParam>+
    +<pluginParam name="textpds" type="file">textpds.conf</pluginParam>+
    *<environment id="APP1">*
    *+<envVariable name="REPORTS_PATH" value="/application1/reports"/>+*
    *+</environment>+*
    *+<environment id="APP2">+*
    *+<envVariable name="REPORTS_PATH" value="/application2/reports"/>+*
    +</environment>+
    +</server>+
    The environment ids you can choose yourself and you have to put them in there yourself too (here I put two environments for two different applications "1" and "2").
    If you call a report from Forms, then you have to code something like
    ADD_PARAMETER(p_list,'ENVID',TEXT_PARAMETER,'APP1');
    Details depend on how you call your reports, my example is for using a parameter list and calling a report out of application1
    Hope that helps.
    Volker

  • My Toshiba Satellite p775-s7320 not recognizing the CD/DVD player (ODD)

    Hello all,
    I am having the problem as listed in the title in that my toshiba satellite p775-s7320 is not recognizing the built-in CD/DVD player anymore. I have the latest Bios upgrade from Toshiba. The last time this worked was earlier this year during the summer. Nothing abnormal or apparent has happened to the laptop to change anything internally, except the Bios upgrades.
    Interestingly enough, there is power to the CD/DVD mechanism and the open/close features work perfectly, but the Bios can't "see" the ODD. So because the Bios doesn't see it as being attached, and the System doesn't "see" because the Bios doesn't, it doesn't matter that the Open/Close function works, because putting a good CD in with data on it is of no value.
    I was considering trying to revert the Bios to an earlier one, but simply trying to load the older Bios through the Windows Bios software is a No-Go because the software won't allow me to go to an earlier Bios flash.
    I'm at the end of the line with common options, other than trying to switch out the Cd/DVD for a brand new one. Something I don't want to do if I can avoid it, but I would as a last resort. As well, loading a fresh image is out of the question as I have too much accumulated software on my harddrive and don't really think the problems stims from that.
    Otherwise, any other solutions may be worthwhile to try. I would really like to flash the Bios to an earlier time when the machine worked well, but I dont know how.
    Thanks for taking a look. BTW, I have removed and replaced the current CD/DVD several times with no change in recognition by the Bios.
    houdinihar

    any other solutions may be worthwhile to try
    Try the Microsoft fix-it : http://support.microsoft.com/mats/cd_dvd_drive_problems It is used to fix problems with CD or DVD drives. (Note This Fix it solution does not support Windows 8.1.) 
    For more things to try see this Microsoft support page:  http://support.microsoft.com/kb/314060/en-us  It gives possible reasons for your problem and several methods to fix the issue.
    Your support page is here :  http://support.toshiba.com/support/modelHome?freeText=3132880
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • No luck importing from SonyHandycam DCR-DVD650?  I am using USB import to my MacBook that is running OSX 10.6.8. The MacBook is not recognizing the camera.  Any ideas what the issue could be?

    I am not having any success in importing my videos from Sony Handycam DCR-DVD 650 to my mac book.  I am using the USB connection.  The macbook is not recognizing the camera.  The macbook is running OSX 10.6.8.  Any ideas on what the problem could be?

    http://support.apple.com/kb/HT2361 There's a recommendation that when using this camera to record in the 'Standard' format instead of VR format. So if you know what the setting was you used to record the disk that's a starting point.
    According to this website the camera should be compatible with iMovie '11
    http://help.apple.com/imovie/cameras/en/index.html?lang=en_US
    So here's some steps to take to get the Mac to recognize your camera.
    1. Try it more than a few times, sometimes it can take 2-4 attempts to get iMovie to recognize a camera for the first time.
    2. Always get the power adapter for your camera out of the bag. Hook it to the wall outlet, then plug your camera into that. Don't run it off the battery.
    3. With the camera plugged into the wall, in DV playback mode. Hit play and just let it play video out continuously, then reboot the Mac. As soon as you see the desktop, launch iMovie. Go to File Menu > Import from Camera and see if the Capture window opens with your video playing through.
    4. Make sure iPhoto doesn't try to launch itself automatically when it detects your camera has been connected to the Mac. Sometimes it tries to steal the videos off of a camera and 'blocks' iMovie from seeing the camera when it's attached. So make sure iPhoto hasn't interecepted your camera and is not running at all when you launch iMovie
    No guarantees, but some things to try

  • Acrobat Pro "save as" function in the file menu does not show the current directory of the file

    I have installed CC but Acrobat Pro gives me headaches.
    The "save as" function in the file menu does not show the current directory of the file but something I have worked on in the past.
    It forces me to navigates through my hard disk for this very straightforward thing in normal conditions. I precise: Acrobat is the only software reacting like that.
    I use Windows7 professional 64bits.

    I use what seems to be the latest version available on the Cloud:
    To illustrate my point, I open a directory with explorer and double-click on the only PDF in there:
    So here it is, open:
    When I do a "Save as", it takes me to a totally different place on the disk!
    Very annoying...
    Thanks for your time!
    JJ

  • Bought a brand new battery from an authorized Apple Premium Reseller but the laptop is not recognizing the new battery

    Bought a brand new battery from an authorized Apple Premium Reseller but the laptop is not recognizing the new battery

    Yes, it says no battery installed. The battery icon with an X and system profiler saying no batter installed.
    Tried the SMC Reset - didn't work!

  • I have a canon 7d and my aperture version 3.4.5 is not recognizing the raw format? The Can not review any raw photo in the adjustments/raw fine tuning controls.

    I have a canon 7d and my aperture version 3.4.5 is not recognizing the raw format? The Can not review any raw photo in the adjustments/raw fine tuning controls.

    When i click on the adjustments everything is grayed out and the messages states " Image Not Found'.
    Are you seeing broken arrows or yellow warning triangles, when you enable badge overlays?
    That looks, like your original image files were missing.  Are your images referenced or managed?
    Create a smart album with the rules "Files status is missing" or "Files status is offline". This will show you any images, where the original raw files cannot be found.

  • My computer is not recognizing the e drive. it won't read the disc or open the drive.

    My computer is not recognizing the E drive. It won't read a CD and it the drive will not open so I can remove the disc. The E drive is not showing up under My Computer
    HP Pavillion dv6000   Windows 7 64-bit

    When did it started? is it showing under device manager?
    you can try system restore first and go back to the date when your notebook is still working fine...
    or you can try this...
    hope this helps...
    ~reikableu~
    ...KUDO's to me and if this resolves the issue, please tag this as "AcceptedSolution"
    ~I MAYBE working for HP Consumer Notebook Support but any opinion stated are not at anyways connected to those of HP.~

Maybe you are looking for