Flagged Drives Create Access Privilege Issues


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Flagged Drives Create Access Privilege Issues
# 1  
Old 07-08-2010
Flagged Drives Create Access Privilege Issues

Upon trying to open up permissions between 2 accounts in Snow Leopard I caused the os to crash - restarting/turning off then on did nothing - the os would no longer load. I took it into Apple where they got the os back up and running with a slight twist. The secondary drive was flagged (a little lock icon appeared over the standard icon). Basically this rendered the drive unaccessible. I used:

chflags -R nouchg /Volumes/Macintosh\ HD\ 2

via in an administrative account. This fixed the problem of access for this particular drive but left a soon-to-be-found secondary problem. Every drive that I would mount ended up mounting in this flagged state. I would execute the command above and things would seem to be fine. The problem occurs if and when I copy files from an external drive to the secondary drive. If I try to open those files from the secondary, the application responsible for accessing the files cannot access the files and throws an access privilege error. My main reason for copying files from external drives to the secondary is to take advantage of internal bus speeds for apps that use a lot of realtime processing.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Find command with Ignore Access issues

Hi, I am using following command to find a specific file. find . -name "find*.txt" -type f -print I am issuing that command at root directory since I don't know in which sub folder that file is getting created from some other process. As I am not having access to all directories, my... (3 Replies)
Discussion started by: RameshCh
3 Replies

2. Shell Programming and Scripting

Create user with different privilege

Hi , I want to create 3 different user with below privilege in Solaris and Linux. 1) Read Only 2)Read and Write Only 3) Admin user Can you guys help me on this . (3 Replies)
Discussion started by: Naveen Pathak
3 Replies

3. Shell Programming and Scripting

Create user with access only to one command

Hi all, Is there any way to create linux user with access only one defined command? For example, I want new user has access only to ls command. (7 Replies)
Discussion started by: nypreH
7 Replies

4. Linux

Create LVM of 2 Hard Drives while installing Centos 6.4.

Hello, I have install 2 HDD in my server and now installing the Centos6.4. I want create the LVM of those 2 HDD's so while i'm doing this it is not allowing me to select these 2 disk's from allowable disk list. Same problem if i tried to make Software RAID with creating LVM. Please help. (1 Reply)
Discussion started by: purushottamaher
1 Replies

5. Homework & Coursework Questions

Security issues with universal access of file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: If you look at the permissions associated with a symbolic link, it has universal access. Does this lead to... (0 Replies)
Discussion started by: linux17
0 Replies

6. Linux

Is my data lost? Installed Linux, no longer can I access my hard drives.

Here's the story - I installed Linux on my Y drive, and all went well until I tried to boot into XP again. I can't access or install an operating system to my other three hard drives, C, X, and Z. I think that during the install my hard drives were changed to something other then NTFS, but... (4 Replies)
Discussion started by: Ironkey
4 Replies

7. UNIX for Dummies Questions & Answers

How to create/restrict a user with to have no privilege from other group

Hello experts I am new to Unix. Env : HPUX I need to create a user say testuser such that it does not have access to file/directories from the other group i.e the last 3 digits . How do I do that. Reason for such a request :- I have an existing user oracle which has default umask... (3 Replies)
Discussion started by: simonsimon
3 Replies

8. Linux

How to access WINDOWS drives from RED HAT 9???

Hello , I am using Red hat 9. I want to access the windows drives from my Linux. Can you please tell me the commands to mount those drives. Till now I am rebooting into windows, copying files into a pen drive and then again coming back to Red hat. help me please (7 Replies)
Discussion started by: nsharath
7 Replies

9. Shell Programming and Scripting

how floppy disks, CDs and flash drives (pen drives) are accessed in UNIX

hi how floppy disks, CDs and flash drives (pen drives) are accessed in UNIX? thanks (0 Replies)
Discussion started by: nokia1100
0 Replies

10. UNIX for Dummies Questions & Answers

Boot from cd-rom to access disk drives

Hello, I've booted a Digital Unix 4.0D system from cd-rom and I need to access the system's disk drives. I need to run the fixfdmn utility on the root domain so I need to create the root domain in /etc/fdmns. Could someone tell me how to access my system's disk drives after I've booted from... (1 Reply)
Discussion started by: xadamz23
1 Replies
Login or Register to Ask a Question
GHI(1)							      General Commands Manual							    GHI(1)

NAME
ghi - command-line interface to the GitHub Issues API SYNOPSIS
ghi command [arguments] [options] DESCRIPTION
This manual page documents briefly the ghi command. ghi is a command-line interface to the GitHub Issues API. It can be used to access all of GitHub's documented Issues API (v2) functionality from the command line: open, close and manipulate issues. If no command is given, the default action is list. If a number is given instead, the default action is show. COMMANDS
list [ -s open|closed|all ] Show open, closed or all issues (choose with -s, see below). Default is open. show number Show issue number. This command can be invoked also as ghi <number>. open [ number ], o [ number ] Create a new issue, and launch $EDITOR. If number is given, reopens that issue. open -m message, o -m message Create a new issue with message content (optionally, use for new lines; first line will be the issue title). close number, c number Closes issue number. edit number, e number Edit issue number with $EDITOR. label add|remove label number Add or remove label to/from issue number. You can use al or rl instead of, respectively, label add and label remove. search term, s term Search for term. comment number, m number Create a comment for issue number (with $EDITOR). OPTIONS
-h, --help Show summary of options. -v, --verbose Show issue details (only for show, list and search commands). Default is false. -V, --version Show program's version number and exit. -s STATE, --state=STATE Specify state (only for list and search (except "all") commands). Choices are: open (o), closed (c), all (a). Default is open. -r REPO, --repo=REPO, --repository=REPO Specify a repository. The format: "user/repo" or just "repo" (latter will get the user from the global git config). -w, --web, --webbrowser Show issue(s) GitHub page in web browser (only for list and show commands). Default is false. AUTHOR
github-cli was written by Sander Smits <jhmsmits@gmail.com>. This manual page was written by David Paleino <dapal@debian.org>, for the Debian project (and may be used by others). April 13, 2010 GHI(1)