How do I move a file with 'no access' permissions?

I have a file on a computer that I do not have administrator access on. The file's permissions are -r--------, so the system can read the file only and no one else can read or write the file (or execute the file, but it's a text file so that's not really applicable).
Basically, I'm trying either to change the permissions (remember, I am not the administrator of this computer, so Get Info>Permissions doesn't work, and chmod +r "file" in Terminal doesn't work either) or to move the file to another computer (where I'm the admin) where I can change the permissions.
Having no access to a file is really annoying, because it can't even be moved, or at least easily. I've tried copying to various folders, airdropping, sharing via iMessage, opening the file in various applications, compressing the enclosing folder, burning it to a disk (I have a MBA so that doesn't work lol), creating an alias, moving it to the trash, and even dragging the file into a rich text file in TextEdit. Of all those things I've tried, the only successful attempt was to drag the file into a TextEdit document, but I got the rtf file onto the other computer and had no idea how to extract the file I had seemingly just copied into the rtf document.
I also tried copying the enclosing folder (and enclosing folders many layers out) but the copies always failed because I need to be an administrator to copy that single file deep within the folders. I guess it was worth a shot
Is there some obscure way of moving this file? Or of changing the permissions? Remember I have absolutely zero admin access to this computer (long story).
Anything you can come up with will help! You don't need the whole backstory to my predicament but basically I'm transferring the system key for the system keychain so I can open the system keychain on the computer with admin access. Thanks!

Contact the machine's administrator. Only they can change the permissions.

Similar Messages

  • How do I move music folders with individual music files from windows 7 to itunes folder so that they are recognizable and playble?

    How do I move music folders with individual music files from windows 7 to the itunes library so the files are usable in itunes?

    All of the following programs should work with Vista.
    Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.
    SharePod is also freeware.

  • How do I move all files from an old PPC to a new Mac Mini?

    How do I move all files from an old PPC to a new Mac Mini?

    The new mini has a Firewire 800 port. Likely the PPC version only has Firewire 400.  The OP will need a converter cable which is why I was asking first about what hardware is available and how much is being copied.
    Probably go with using the external hard drive if you decide all you want are data files.
    If you want to migrate:
    Kappy: A Basic Guide for Migrating to Intel-Macs - http://discussions.apple.com/message/10257343
    Mac OS X 10.3, 10.4: Transferring data with Setup Assistant / Migration Assistant FAQ - http://support.apple.com/kb/HT1554
    Setting-up a new Mac from an old one or its Backups - http://web.me.com/pondini/AppleTips/Setup.html

  • How do I move a file directly from the desktop to a folder in OX 10?

    I am new to Mac and the Mountain Lion software.  Having worked exclusively with PC operating systems, I am familiar with how to work with files in Windows, but am having trouble doing similar actions in OX 10.  How do I move a file directly from the desktop to a folder in OX?  Although this answer is likely in a video tutorioal (somewhere), I do not have the time to sit an arbitrarily watch generic OS videos that give a broad brush overview, without answering specific queries.  Any help out there?

    You might fun http://www.apple.com/support/macbasics/ to be of help to get used to doing things the Mac way.
    Allan

  • How do I move a file from "Recents" in Adobe Reader for Android to a folder in "Documents"?

    How do I move a file from "Recents" in Adobe Reader for Android to a folder in "Documents"?
    Files from Google Drive are appearing in "Recents" where I cannot organize them hierarchically.
    I cannot find a user manual for Adobe Reader for Android with this level of detail.

    Hi John,
    Files opened via Google Drive are not listed in ‘Documents' section of Adobe Reader, because they are read only files. If you really want to save these files to ’Documents' then please follow below steps -
    Open the file from Google drive in Adobe Reader.
    Tap on the Comment icon placed at top toolbar(Second icon from the beginning)
    You would encounter a 'Read-Only document’ dialog, tap on Save button.
    Once you performed above steps , your file will be saved in /Download/Adobe Reader/ folder.
    Hope this will solve your problem.
    Thanks,
    Adobe Reader Team

  • Just bought a MacBook Pro how do I move my files.

    I got the 13" MBP (my first mac) with 160gb hdd
    I have my pc with two HDDs totaling aboout 600GB of stuff.
    The HDDs are SATA and not usb and they are both ntfs formatted.
    How do I move those files over if they are in NTFS format and are sata i really want all my music and movies.

    You could but that would be fairly slow and cumbersome. My recommendation is to get yourself a good quality Firewire 800 external drive and save your data files there. I would recommend either OWC Mercury Line, Lacie Quadra D2 or G Tech G Drive. This solution would be a little more expensive initially but would prove it's worth in the long term. All of these drives have similar features and are all high quality products.
    If you haven't already carefully go over this information to prepare:
    Switch 101
    Mac 101
    Hope this helps some.
    Regards,
    Roger

  • How to transport/move a table with data from development to Test to Production

    Hi,
    How to transport/move a table with data from development to Test to Production..? Export-Import a Delivery Unit does only the structure and not the data
    Reg
    Sri

    Hi Sri,
    You cannot transport Data via Transport route in HANA, you can only transport code changes/Structure via DU. For Data movement, you either have a do a export/import from a flat file or replication from a Source System to HANA.
    Thanks Much,
    Abhishek

  • I have an older macbook circa 09 and purchased a new macbook pro 2012. The older one has been backed up to an older time capsule. How do i move the files to my new macbook?

    I have an older mackbook pro circa 2009, i thought it died on me it just went completely black. I later found out just a bad battery i purchased a new one in the interim. Now that i have discovered the problem i bought an older time capsule and backed up the older macbook i now want to transfer my personal files to my new macbook pro to maintain one personal mackbook. How can i move the files from my time capsule to my newer macbook pro?
    thank you in advance for your help!!

    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • How to load unicode data files with fixed records lengths?

    Hi!
    To load unicode data files with fixed records lengths (in terms of charachters and not of bytes!) using SQL*Loader manually, I found two ways:
    Alternative 1: one record per row
    SQL*Loader control file example (without POSITION, since POSITION always refers to bytes!)<br>
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode.dat
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001111112234444
    01NormalDExZWEI
    02ÄÜÖßêÊûÛxöööö
    03ÄÜÖßêÊûÛxöööö
    04üüüüüüÖÄxµôÔµ Alternative2: variable length records
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode_var.dat "VAR 4"
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001501NormalDExZWEI002702ÄÜÖßêÊûÛxöööö002604üuüüüüÖÄxµôÔµ Problems
    Implementing these two alternatives in OWB, I encounter the following problems:
    * How to specify LENGTH SEMANTICS CHAR?
    * How to suppress the POSITION definition?
    * How to define a flat file with variable length and how to specify the number of bytes containing the length definition?
    Or is there another way that can be implemented using OWB?
    Any help is appreciated!
    Thanks,
    Carsten.

    Hi Carsten
    If you need to support the LENGTH SEMANTICS CHAR clause in an external table then one option is to use the unbound external table and capture the access parameters manually. To create an unbound external table you can skip the selection of a base file in the external table wizard. Then when the external table is edited you will get an Access Parameters tab where you can define the parameters. In 11gR2 the File to Oracle external table can also add this clause via an option.
    Cheers
    David

  • How can I move mp3 files from my ext.drive to my iPad via MB Air 11 ?

    How can I move mp3 files from my ext.drive to my iPad via MB Air 11 ?
    Thx

    You could drag your files to your macbook air's desktop then plug in you iPad...? I don't really know about this as i don't have a iPad. =S

  • MY hard drive crashed and i lost all my files. How do i move my files from my phone or ipad back to my new hard drive?

    MY hard drive crashed and i lost all my files. How do i move my files from my phone or ipad back to my new hard drive

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • I have e9 running a cpu A. I have e11 now running on cpu B. How do i move my files from A to B?

    I have elements 9 running on computer A. I now have elements 11 running on computer B. How do i move my files from computer A to B?

    Do a full backup using the organizer's backup command on computer A. Then restore that to computer B.
    EDIT It will probably go smoothest if you use some kind of removable drive for the backup location.

  • How do I move data files from old iPhone? Specifically, the password files for the App mSecure from my old iPhone 3Gs to iPhone 4S?

    How do I move data files for mSecure (a password saver app) from old iPhone 3GS to new iPhone 4S?

    That article is about using your iPod as an external hard drive, to move files from one computer to another computer.  It is not related to your question.
    You can't use iTunes to move song files from iPod to computer, except for songs you purchased from the iTunes Store (and you can also re-download purchases).  However, there are third-party methods and utilities that can move song files from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    Once the song files are on your current computer, add them to that computer's iTunes library by dragging the files (or folder containing the files) to the iTunes window.  After confirming everything is there (and fixing the data issue you mentioned) you can sync the iPod.  You may want to do a Restore on the iPod, if it might have a data corruption issue, which will erase the iPod's hard drive, re-install the latest software, and set it to defautl settings.

  • How do I move my files from my PC to the Cloud?

    How do I move my files from my PC to the cloud?

    i use a Photo Sync... Buy at AppStore... $2.99 only 
    Very easy to transfer photo from iPhone to Pc or from Pc to iPhone. That awesome!

  • How do I move music files from the startup disc to iTunes in the other internal hard disk os 10.5.8?

    How do I move music files from the startup disc to iTunes in the other internal hard disk os 10.5.8?
    The music I want to move was in iTunes but is now just files. I had to reinstall a new iTunes and lost all my old music.
    Thank you!

    That article is about using your iPod as an external hard drive, to move files from one computer to another computer.  It is not related to your question.
    You can't use iTunes to move song files from iPod to computer, except for songs you purchased from the iTunes Store (and you can also re-download purchases).  However, there are third-party methods and utilities that can move song files from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    Once the song files are on your current computer, add them to that computer's iTunes library by dragging the files (or folder containing the files) to the iTunes window.  After confirming everything is there (and fixing the data issue you mentioned) you can sync the iPod.  You may want to do a Restore on the iPod, if it might have a data corruption issue, which will erase the iPod's hard drive, re-install the latest software, and set it to defautl settings.

Maybe you are looking for

  • Image processor - rotate to fit?

    Anyone know what happened to the Rotate to Fit feature in bridge/tools/photoshop/image processor? I have to make several web photo galleries and this most important feature seems to be missing with CS4.

  • Quicktime Broadcaster won't let me broadcast

    I have an iBook G3 running Mac OS 10.3.9 and I am getting video from the iSight camera fine but when I try to broadcast, I get this irritating audio squeal and "Broadcaster Error: Connection Failed (-5420)". What could be wrong?

  • Header Text in electronic bank statement

    Hello, SAP Comunity! I want to fill  header text of FI document, which is generated during upload of electronic bank statement. As it is now, header text is filled automatically by short key, but I want to enter my own information, which is available

  • ?xml version="1.0" encoding="UTF-8"? generates error=unsupported encoding

    Why does the header with encoding set to UTF-8 get rejected by the Oracle XML C++ V2 Parser when one of the features of this version is UTF-8 support?

  • Properties-file with a relative path...

    Hello everybody, my question is as follows: I have a directory-structure like below: root_dir | -- source | -- classes | -- libs | -- xmlfiles | myproperties.propsIn words: my root_dir (is actually a subdirectory in my fs) contains folders like sourc