KDE Dolphin's "Places" vs. symbolic links

I have a Netgear ReadyNAS Duo on my home network and it is comfigured to share via CFS (NFS is disabled).  From what I can tell this device is running a chopped down version of Debian.  If I create a link to a share using KDE's GUI tools, the share link appears in Dolphin's "Places".  While this is nice and convenient for when you're in Dolphin, it appears almost useless for anything else.  No other apps see the link to the share in their dialog boxes.  So I decided to go with the method of creating an empty directory (~/archives) and then I put in the applicable entry in /etc/fstab.  After discovering the noauto option for fstab, this works fine.
Here is where I am scratching my head:  As an example I have a directory within the share that is named "(1979) - Degüello".  When navigating the file tree using the Places link, the umlaut shows just fine.  However, when doing this via my mountpoint, the umlaut shows up as a symbol that looks like a question mark inside of a black diamond.  And I just noticed that it appears I have read-only access through the mountpoint, but full r/w access through places.
Am I not getting to my destination via smb in both cases?  And if I am, why am I seeing these discrepencies?  Any guidance would be greatly appreciated.

Here's an example where I just added an indice to the end of the file name if an item already exists with that name in the chosen folder.
tell application "Finder"
set the_sel to selection
end tell
if the_sel is {} then
display dialog "Nothing was selected."
return
end if
set folder_path to (choose folder with prompt "Choose a folder for the alias:") as string -- or make a new one
repeat with this_item in the_sel
set this_item to this_item as alias
set item_name to name of (info for this_item)
set i to 0
set t to ""
tell application "Finder"
repeat while exists item (folder_path & item_name & t)
set i to i + 1
set t to "_" & i
end repeat
end tell
set target_path to quoted form of POSIX path of (folder_path & item_name & t)
set source_path to quoted form of POSIX path of this_item
do shell script "ln -s " & source_path & space & target_path
end repeat
display dialog "The alias' have been created."
You might need to add error checking.
gl,

Similar Messages

  • Can I Create A Symbolic Link to folders stored on an SMB Share folder?

    Hello,
    I am very new to Unix and was hoping that someone could point me in the right direction with regards to Symbolic links and an SMB share folder ....
    Have purchased an ext. LAN Drive enclosure (http://www.macpower.com.tw/products/hdd3/pleiades/pd_usblan) which connects to my wireless router via ethernet like my G5 (main Mac) - our iBook connects via Airport. I have copied all my general documents/files to the SMB share folder on the ext. drive so that I can access them from the G5 and also the iBook.
    However I'd also like to be able to store my actual Mail folder (/Users/Mark/Library/Mail/), , Safari folder (/Users/Mark/Library/Safari) + my Address Book and other folders sitting in the Application Support folder on my SMB share so all important docs/folders are in the one place. I've tried storing these folders on the SMB share and putting an Alias to these back in Users/Mark/Library/Mail etc but of course an Alias doesn't work.
    Question 1: Can I create a symbolic link to these files if these are stored on an SMB share folder? If so, could you please tell me exactly what I'd need to type into Terminal? My SMB Share path is smb://STORAGE-XXXX/MARK
    I have copied my iPhoto library and iTunes library to the SMB share and are working fine.
    Question 2: Is it possible/worth attempting to move my whole home folder to the SMB share folder? Ideally, I'd like to be able to access my Mail from the iBook as well. If I could log into either the G5 or the iBook and access my latest Mail, Address Book and other Application Settings, that would be perfect. Would this be possible?
    Thanks
    Mark.
    Dual 1.8GHz G5 (Rev.B), 2Gig RAM, 9600XT   Mac OS X (10.4)  

    Dear Mark,
    Yes you can. The command to create a link will look something like this:
    $ ln -s thisFolder /Users/mark/thatFolder
    I did this while I was hosting a microsoft based game. This put all of the players into a common directory.
    SMB just resolved the link and everything worked fine.
    However, as I understand it, some other applications do NOT work very well with links. As I have NOT tried it with other applications, I fear I can be of NO help to you in this matter.
    The only way to find out which applications work with links is to try them and see what happens.
    Best of luck,
    Kurt

  • Symbolic links in jar

    hi
    i am facing some problem with symbolic links in JAR.
    1)i create a jar file of a directory which has symbolic links in it.
    2)when i unjar it the symbolic links are lost and instead those links contains the data which they were referencing to, which means that the links are dereferenced.
    Can any of u help me out of this? Do jar or zip maintains the symbolic link or not?
    thanks in advance.
    Vipul

    jar-files are typically moved away, so having a symlink in it would be a problem, cause it would mostly be invalid on the target host.
    A few hosts run windows which doesn't even know symbolic links.
    As jar is a kind of zip - how should you zip a symbolic link?
    The idea of symbolic links is, to show some files, which are in fact at some other place, as if they were there.
    Therefor jar 'believes' that those files are there.
    If it would check the file-type, and find out, it is a symlink, what should it do?
    If you don't move your zip around, what's the benefit of a jar?
    It's smaller, because it's packed.
    But you may not make a symlink smaller.

  • Can I move the common library or use a symbolic link so that Dropbox can sync it?

    A team of us are now using Fireworks for interaction design, and need to synchronise the common library so that the elements we use are up to date.
    1.  Is the common library the correct method? 
    2. we use dropbox, and I don't think I can tell dropbox to synchronise just the common library folder (as an isolated path from the rest of the dropbox tree...) - so, is there a trick using a symbolic link we could use so that dropbox thinks the common library is actually in it's own tree?  (OSX is BSD afterall...)
    We're on Mac OSX 10.7.X, running FW CS6 and using the latest dropbox for Mac.
    I look forward to hearing some ideas.  The question of teams using fireworks has been raised several times since 2009, and Adobe still hasn't got a solution.  The mind boggles as to whether or not Adobe takes Fireworks seriously - I hope they do...
    All the best,
    Dylan

    Thanks groove25.
    I did find that it is possible to use symbolic links and Dropbox to synchronise the common library across computers.  It does come with its idiosynchrasies though (excuse thepun).
    I'm going to have a go with what this thread recommends:
    http://hints.macworld.com/article.php?story=20120803093247391
    and leichter's explanation and walkthrough (nested in the thread) looks very helpful:
    There's a subtle point that, once you understand it, makes symlinks much more useful in Dropbox.
    The whole design of symlinks in Unix tries to make them invisible to programs that don't specifically try to manipulate them. So suppose 'sym' is a symlink to 'file'. If a program opens 'sym' for read, it actually gets the data in 'file'. If it appends to 'sym', it actually appends to 'file'. However, if it deletes 'sym', what disappears is the link 'sym', not the file 'file'. Opening 'sym' for writing as a new file - not appending to it - is equivalent to deleting the old file and creating a new one: It leaves 'file' unchanged and creates an entirely new file named 'sym' which no longer has any connection with 'file'.
    A link to a directory follows the same rules. Looking a file up using the symlink as the name really searches the linked-to directory. Creating a file through the symlink is like appending: It creates the entry in the linked directory. And so on.
    A program that wishes to do something special - like change where a symlink points - has to be aware that it's dealing with a symlink and use special OS calls for that exact purpose.
    Dropbox works with symlinks *but it doesn't do anything special with them*. So suppose you put that 'sym' linked to 'file' in your Dropbox directory. Dropbox comes along, finds a new file, and sends it to its servers. What does it send? Well, first the name 'sym', and then the "contents" - i.e., what it gets from reading 'sym' which is exactly the contents of 'file'. On the server, and then later on other clients, what you will find is a normal file named 'sym' with the contents of 'file'. *There is no connection with a file named 'file'.* If you change 'file' on the system where 'sym' links to it, the changes propagate. If you change it anywhere else, the changes propagate back - but Dropbox doesn't modify files in place, it writes entire new ones. So the effect back on the original system is to break the link and write a new file named 'sym' with the latest contents - but no connection to 'file'.
    I know of no way to keep a link to a *file* as a symlink across updates. But the story is different for *directories*. Unlike ordinary files, directories are normally updated in place (unless you explicit delete and recreate them). So you can do the following:
    1. Create directory 'dir' anywhere you like.
    2. Create symlink 'dirlink' pointing to 'dir' in your Dropbox folder.
    3. Wait for 'dirlink' to appear on all other clients. It will appear as an ordinary directory, not as a symlink. If the original 'dir' had files in it, those will now appear as files on the clients, too.
    4. On each client, rename 'dirlink' to 'dir' *in the place you want it to appear in your directory tree*. (Renaming only works if you are staying not the same device. Otherwise, you need to create 'dir' and move all the files.) This need not be the same on all clients, though it's easier to keep track of if it is.
    5. On each client, create symlink 'dirlink' pointing to 'dir'.
    Now you have a 'dirlink' on each client, which will to Dropbox look like a subdirectory - and it will sync all the files in that "subdirectory". Changes made on any client to any file in 'dir' aka 'dirlink' will be synced to all the other clients as well. Files created or deleted in 'dir' will be created/deleted on every other client as well.
    It's probably easiest to do all this while there are no files in 'dir'. Otherwise, Dropbox sometimes repeatedly syncs the same files until everything eventually settles down.
    The limitations here:
    - Some platforms (e.g., iOS) don't support symlinks. To them, 'dirlink' will just be an ordinary subdirectory.
    - Any time you add a new client, you have to go through the process for that client. Certain reset operations in Dropbox - anything that requires re-syncing every file in the Dropbox folder on a client - will require the same, because Dropbox doesn't know how to *create* symlinks - it'll just create an ordinary subdirectories.
    I've used this configuration for a couple of years. You have to watch out for the reset situations and such, but generally once you have it set up, it "just works".
    -- Jerry
    All the best,
    Dylan

  • Change symbolic link to something else

    Hi everybody.
    this is what i have: Using the "lndir" command in terminal I have a folder full of symbolic links to an external hard drive that is now unconnected. I want to be able to have spotlight index/search this folder so that if there is something on that hard drive i will know about it (its actually going to be nine drives and tons of files). But of course, spotlight will not index or find symbolic links, so what I want to do is run a script or unix command that changes these pointers into some other kind of file that spotlight will see. Same name, same place, but different type.
    Since i already have the physical folder layout of the disconnected drive, it doesnt matter to me if the links are destroyed, i just want to be able to search for a file name and know what drive/folder its in so I can avoid plugging in ten drives in a daisy chain.
    I was wondering if there is a script or unix command i can run that will make a copy of any file that has an "L" type designation or just copy the file name onto a misc other kind of file.
    Alternately, is there a way to change these symbolic links into regular "aliases" that spotlight can search? again it doesnt even matter to me if the aliases point to a dummy location.
    I'm not very good at command line syntax, so if you have any suggestions, please explain in dummy cabbage-head terms that I can replicate. if what i want to do is impossible or doable through some available widget or script, those answers would be super as well. Or if there is a better solution than the "lndir" command that can maybe make the same kind of directory copy but with aliases instead or symbolic links?
    any options or ideas welcome. thansk!

    no, you misunderstand. I do NOT want the files contents to be there (i'm not crazy), i just want the files NAMES to be there and searchable (an offline catalog). They are ALREADY on my home drive in the perfect structure but since they are a file type spotlight wont catalog (being just a symbolic link pointer file) i would like to change the file type to something it can see and thus find. I mean if there was a program or script or shell or something that would look at a file named SHADOWFILE.JPG and made say an empty textfile called SHADOWFILE.JPG.TXT, made the TXT suffix invisible and deleted the original SHADOWFILE.JPG, i would be left with a searchable file name. Or if these pointers can be turned into Aliases (even if they dont point to anything) then spotlight will find them. I know that you can turn an alias into a symbolic link, so is it unreasonable to do the reverse?
    If none of this is possible, I realize I can use standalone external catalogers, but that is just not as elegant as having a single search for both internal and external devices at the same time, basically it would require doing two searches instead of one. I think this is a worthy goal.

  • FTP does not see symbolic linked files

    I have an FTP site the drive that it's on cannot hold all my files so I used symbolic link(ln -s filelocation/filename) them from another drive. When I ftp into the site (Windows or Mac) the the symbolically linked files don't appear. How can't make these files visible?

    Hi Gene,
    I had the same problem with a symbolic link I placed into the "Movies" Folder, the links wasn't visible within Frontrow.
    I solved the problem by selecting the symbolic link in the Finder and creating an Alias of this symbolic link. The new Alias pointed on the original directory with all required permissions and was visible through Frontrow. I could delete the symbolic link itself as the Alias pointed to the new place.
    Should work in your case as well,
    Chris

  • Symbolic links for executables

    I installed nmap but it is not in my path. Where is the proper place to make executable with out having to use the whole path? I understand how to get it working and was just wondering if there is a typical location that Mac users put symbolic links for all users to be able to execute.
    Thank you.

    Normally, /usr/local/bin/ so updates don't delete them. Then, add it to your $PATH variable in .bash_profile, using:
    *export PATH=$PATH:/usr/local/bin*
    If you're using another shell, then modify it accordingly. BTW, Unix queries should be posted to that forum in OS X Technologies.
    For Kenichi Watanabe:
    Unix executables shouldn't be put into /Applications.

  • Nautilus symbolic link pathbar

    Hello,
    In Nautilus 3.6, the path bar and location bar show symbolic link locations as their real location. For example:
    /test (folder)
    ln -s /test /home/bryan/test
    If I went to Home and then the symbolic link test, Nautilus used to show the location as Home | test or /home/bryan/test (Nautilus 3.4)
    Now Nautilus shows the location as /test
    Is there a way to get Nautilus to not show the real path?

    I would like to supplement the above...
    If I set /home/bryan/.config/user-dirs.dirs like such:
    XDG_DOCUMENTS_DIR="$HOME/test"
    And run:
    xdg-user-dirs-update
    Then click test from the places menu, the pathbar is as I would expect.

  • Effect on symbolic link when changing volume name

    I just wanted to verify this information before I proceed with changing the name of my hard drive. I have 3 partitions of my MBP's internal drive. There is the system partition "Mac HD", a boot camp partition and a data only partition called "Storage". I have quite a few symbolic links on "Mac HD" which point to "Storage", where the data is stored. If I change the name of "Mac HD" and/or "Storage", will the symbolic links update to the new name of the volume automatically? Or, will the change of volume name break the symbolic links so I have to create them all over again? Everything I have read leads me to believe they will update, but I don't want to mess anything up and find out the hard way. A little confirmation would make me feel much better before I make the change.
    Thanks,
    sterling

    etresoft wrote:
    I don't want to get off on a tangent about pros and cons of cloning, I just want to plant a seed of worry to review it at a later date. It is one thing to restore a disk image for a kiosk machine, it is something else entirely to restore an image of some machine that has had people using it. Misconfiguration, corrupt filesystems, and failed hard drives are some of the most frequent causes of failures. Having a clone of a system that has just failed for one of those reasons doesn't give me a warm fuzzy. It would be a much better idea to have a procedure (or script) to build a new server from scratch and load it from a backup (not a bitwise clone) of known, good data.
    Our computer use is typical. There are only a few employees who use the computers regularly, and a few people others who use it less often. the daily use is mostly for back end management like bookkeeping and processing orders. The rest of the operations are design based, like graphics and documents. We don't have a business like a kiosk where people are all over the computers all day. With deep freeze on the system though, there is no worry about anyone doing anything to the system that would corrupt it. Also, the actual drives with the OS rarely get changed or backed up, because they remain the same for the most part. All of the files that are created like documents, designs, orders and such, are saved to storage. The storage is what I back up frequently, because that's where everything is stored. I may have a false sense of security, but I always thought I was more protected than most, because all of my files are stored on a drive without any operating system. I figured there is very little that can go wrong which could corrupt my data since the drive is data only. I always have 2 backups up both the OS drive and the data storage drive. One is like a daily backup, the other is more like once a week or so update which is kept in the safe. I always verify that the backup by opening a few files on it, but I never really know for sure that everything is safe because I can't open everything! I have no clue how to start a server based system backup like you are talking about, but it sounds like a much safer backup method. A little overkill for use considering we don't do that much on the computers? Maybe, but only because I would have to hire someone to come set it up for me. Maybe it's not so hard as it sounds, but I know I don't have the time to learn how to do something like that myself. I didn't realize the backup techniques I am using are so inferior. I feel like my data is pretty safe, but I guess I can look into other options.
    I don't consider it "fun", I consider it a "requirement".
    I am a bit of a prepper, okay a lot of a prepper. I am prepared for just about anything that can come my way. I do not consider testing my preps fun either. I was just saying, I anticipate that there will be some sort of loss when I restore, based on what you're telling me.
    Disasters do have a remarkable ability to strike when you are least prepared. There is a logical reason for that. The more prepared you are, the less disastrous the event.
    Agreed, 100%. That's why we're talking about it. I was starting to think that I was over thinking it! Clearly I'm not the only one!
    Interesting. Unfortunately, the symbolic link method is pretty invasive because it requires those links to be up and functioning before the clone. A better solution would be to identify all those files, and have a launchd script that replaces the original files with either modified versions or links at system boot time.
    With deep freeze, the symlinks are re-created every time I boot, even if they are broken before shutdown. So, it's pretty safe as long as they work before I freeze the system. I also have the two backups in case something goes wrong. I'm confident the links work. And the worst thing that can go wrong if they break is that I have to re-create the broken ones. either way, the data that is linked is still on my storage drive and both of my backups. The only thing I wouldn't be able to recover would be the symbolic link itself.
    You need to think of this in terms of the file system. The "name" of a volume doesn't really mean anything. What matters is the mount point. The mount point, however, depends on a particular hardware configuration. You could control it better with some clever mounting scripts, but it sure seems like there is a much easier way to accomplish your ultimate goal.
    I guess you're saying I could get by without deep freeze, and that it complicated things. Yes, it does. I am always trying to find workarounds because of it. However, I like the fact that my computer is the same every time I turn it on no matter what someone has done to it.
    You have extensive control over your mount points.
    I will have to look into this, because if I can get the firewire clone to run with the symlinks in place, I could have a fully working system with nothing more than a restart of the computer.
    That, I don't know. Restoring a disk image that has embedded symbolic links to another drive is a fragile solution. You know what files you need to symlink, write a script that will set up the links at boot time - or at any time. Exactly what files are these? I strongly think there is an even easier solution lurking around. Why are you so concerned about retaining user data through restarts? Why are you even restarting?
    There's actually not as many as I thought. I have symlinked data and prefs from mail, ical, address book, blackberry desktop. Then, some document folders. I could cut a lot of these down by linking my entire documents folder and building my hierarchy within that, but I've built my own which is neatly organized into the 4 departments of our business. It's really not that much. The only thing is that my mail, ical and address book won't work on the clone, because they are dependent on the simlinks. Everything else is just files that I would access directly from the storage drive anyway, so no loss there!
    Wow! I made it through here! I'll review over the ideas you recommended and see if I can actually implement any of them myself. My guess is, I don't have the skills to pull them off. I'll look into it though. thanks for your time, and I will let you know what happens.

  • HELP! Creating symbolic link to home folder for installer DMG

    Guys,
    I'm in a bit of a bind. I need to create a symbolic link for an installer DMG to distribute a communal Bookmarks.plist to all the computers in my department. Unfortunately 'ln -s ~/Library/Safari /Volumes/Bookmarks/.' doesn't do the trick! While it creates an alias that functions on my machine, when that DMG is compiled and distributed from the original sparse image, the alias fails to link to that location on whoever attempts to mount the DMG. Any ideas?? Thanks!

    Symbolic links break when you change the machine on which they were created. Use an standard Mac alias instead as I believe they will work as expected.

  • How can I stop from getting the "Firefox is already running" error message when trying to open links and FF has already been opened through a symbolic link?

    I use symbolic links and program shortcuts as a way to easily open different Firefox profiles ie. one for casual/personal use and another for work. This works well, but I get the "Firefox is already running, but is not responding" error message if I try to open external links with FF as my default browser. FF is actually open and running fine, but I guess it doesn't acknowledge this fact because of how I'm originally starting the process.
    I wasn't able to add the symbolically linked executables to the default program pane. Is there a way to bypass this error or other way to fix this?
    The solution to the question linked below is what I'm using to open the different FF profiles.
    http://superuser.com/questions/255312/pin-same-app-multiple-times-in-windows-7

    hello, this is probably happening when you run the default profile with the -no-remote switch.
    http://kb.mozillazine.org/Profile_in_use

  • Maintaining Multiple Arch Installs, Symbolic Links, BTRFS

    Hi again.
    A quick update on my previous post (https://bbs.archlinux.org/viewtopic.php?id=164627). The GRUB problem I was having seems to have stopped. I got a very useful recommendation regarding pacman and XBMC still hasn't been fixed, but is fully usable with the workaround I am using and have just gotten used to it so it's not so much of an issue now. I think now that it should be marked as solved but how do I do that? Was looking around but guess I'm just missing it.
    Anyway now I have a few more issues, or more just questions I guess that I would like help on. Recently I found an old laptop of mine and so to learn more about the Arch system I decided to try and install Arch. Now this laptop is around 5-6 years old and I haven't been able to get WiFi working fully for around 3 years and eventually upgraded 2 years ago to my current laptop. The WiFi was always 'soft-locked' until after about 4-5 restarts (in windows it was fine, but any Linux Distribution post Ubuntu 10.10 had the same issue). The issues still remains in other distributions even after "rfkill all". In Arch ever since running that command (the first boot from install media the issue occurred) this laptops WiFi has been brilliant. I also installed XFCE4 desktop for speed of set up. Now I'm looking to give my laptop to my younger brother before he heads of to University in September until he can afford a new one (or he breaks this one - somehow his laptops never last), as this old one now runs better than it ever did on Windows Vista. My girlfriend is also looking for me to install Linux again on her laptop (we used WUBI in the past) but a full install since her Windows Vista laptop is near unusable in Windows. So far I have got hamachi set up between my new and old laptop, this gives static IP addresses and will allow me to SSH into the laptop for upgrades every so often. I'm planning to do the same for my girlfriends laptop. Would I be stupid to do this via Arch? I've heard it breaks often and I don't want to have to be doing fixes for other peoples laptops as I won't have the time to do so. I guess the reason I want to use Arch is both laptops are quite old and Arch has breathed new life into my old one.
    Secondly I have symbolic links set up in my "Music" and "Video" folders in my home directory to their counterparts in my Windows partition. However my music player "Clementine" doesn't find every album in the music folder. Does symbolic links have "flaws" like this or is it more likely to be my music player behaving badly with symbolic links? I would try another music player but I can't seem to find one which plays FLAC files with external / embedded .cue files so can't really test this out. I can of course link directly to the location but I thought I would ask, just to learn more I guess.
    Now when I installed Arch using BTRFS file system I didn't know that I had to mount using compression immediately, I thought I could add it to the fstab at a later point - obviously not. Now I found a command which will defragment my drive and supposedly compress everything. However this command doesn't make any sense to me and I don't want to just run it without knowing what it does. Could anyone other me any insight into this please? Also does defragmentation after the fstab mount options have been added cause the compression?
    "find -xdev -type f -exec btrfs fi defrag '{}' \;"
    or I also found
    "btrfs filesystem defragment ~/stuff"
    Thanks for any help, I understand this post is quite long so I really appreciate it.
    Last edited by BradPJ (2013-06-13 10:19:47)

    Ah right thanks. I thought as much which is why I asked before I did so, I'll find another distribution. Just where I've been running Arch for a few weeks now and haven't had to do any maintenance at all really, but weren't too sure what I'd be in for in the long-run. I mean to be fair I was always planning on another distribution but as I was playing around at first on the old laptop I ended up with my current way to SSH in and just wondered if it would be viable to do it this way.
    I knew it would be a driver issue at the core of my problem, just weren't too sure if it something else could of been affecting it. Guess I'll try and find another distribution which runs near as new software to Arch as possible as it seems the issue has been fixed in newer versions of the kernel and drivers. Granted the old laptop had been unused for around a year so any update in the last year could of fixed it in this case. Thanks for your input!
    Last edited by BradPJ (2013-06-13 11:35:16)

  • Symbolic link error when exporting during heterogeneous system copy

    My enviroment is ECC6.0/Oracle 10.2.0.2/SUN Solaris 10 . I'm performing  heterogeneous system copy to Oracle 10.2.0.2/AIX 6.1 enviroment.
    I've succesfully exported & imported two systems ie DEV & Solutin Manager , but PRD system has an OS problem with symbolic links ie Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS
    I want to export both ABAP & JAVA stack but only the java stack is getting  picked.
    Below  is part of the resultng sapinst.log 
    Thanks
    INFO 2011-09-05 10:44:30.573
    Execute step verifyJavaHome of component |NW_Export|ind|ind|ind|ind|0|0|NW_getJavaHome|ind|ind|ind|ind|2|0
    INFO[E] 2011-09-05 10:44:33.851
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/._), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:44:33.851
    FSL-02061  Link /._ is invalid: Unable to link a link to itself.
    INFO 2011-09-05 10:44:46.118
    Execution of the command "/usr/j2sdk1.4.2_09/bin/java -classpath /tmp/sapinst_exe.29247.1315208256/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Mon Sep 05 10:44:45 EAT 2011
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=/usr/j2sdk1.4.2_09/jre/lib/sparc
    java.vm.version=1.4.2_09-b05
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=\:
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=unknown
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=/oracle/PRD/INSTDIR/sapinst_dir
    java.runtime.version=1.4.2_09-b05
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.endorsed.dirs=/usr/j2sdk1.4.2_09/jre/lib/endorsed
    os.arch=sparc
    java.io.tmpdir=/var/tmp/
    line.separator=\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    os.name=SunOS
    sun.java2d.fontpath=
    java.library.path=/usr/j2sdk1.4.2_09/jre/lib/sparc/client\:/usr/j2sdk1.4.2_09/jre/lib/sparc\:/usr/j2sdk1.4.2_09/jre/../lib/sparc\:/tmp/sapinst_exe.29247.1315208256\:/usr/openwin/lib\:/usr/lib
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.FileSystemPreferencesFactory
    os.version=5.10
    user.home=/
    user.timezone=Africa/Nairobi
    java.awt.printerjob=sun.print.PSPrinterJob
    file.encoding=ISO8859-1
    java.specification.version=1.4
    java.class.path=/tmp/sapinst_exe.29247.1315208256/JAR/ins-j2ee.jar
    user.name=root
    java.vm.specification.version=1.0
    java.home=/usr/j2sdk1.4.2_09/jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    java.vm.info=mixed mode
    java.version=1.4.2_09
    java.ext.dirs=/usr/j2sdk1.4.2_09/jre/lib/ext
    sun.boot.class.path=/usr/j2sdk1.4.2_09/jre/lib/rt.jar\:/usr/j2sdk1.4.2_09/jre/lib/i18n.jar\:/usr/j2sdk1.4.2_09/jre/lib/sunrsasign.jar\:/usr/j2sdk1.4.2_09/jre/lib/jsse.jar\:/usr/j2sdk1.4.2_09/jre/lib/jce.jar\:/usr/j2sdk1.4.2_09/jre/lib/charsets.jar\:/usr/j2sdk1.4.2_09/jre/classes
    java.vendor=Sun Microsystems Inc.
    file.separator=/
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeBig
    sun.cpu.endian=big
    sun.cpu.isalist=sparcv9vis2 sparcv9vis sparcv9 sparcv8plusvis2 sparcv8plusvis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc
    INFO 2011-09-05 10:44:47.076
    Execution of the command "/usr/j2sdk1.4.2_09/bin/java -classpath /tmp/sapinst_exe.29247.1315208256/JAR/ins-j2ee.jar:/tmp/sapinst_exe.29247.1315208256/JAR/sapxmltoolkit.jar -d64 com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2011-09-05 10:44:47.572
    Execute step verifyPolicy of component |NW_Export|ind|ind|ind|ind|0|0|NW_getJavaHome|ind|ind|ind|ind|2|0
    INFO 2011-09-05 10:44:47.715
    Execute step setNWOption of component |NW_Export|ind|ind|ind|ind|0|0|NW_getJavaHome|ind|ind|ind|ind|2|0
    WARNING 2011-09-05 10:44:47.944
    Could not determine a valid JAVA_HOME directory from the environment.
    INFO 2011-09-05 10:44:48.86
    Execute step assignUsersToSapinstGroup of component |NW_Export|ind|ind|ind|ind|0|0
    INFO 2011-09-05 10:44:48.890
    Account sapinst already exists.
    INFO 2011-09-05 10:44:48.894
    Account prdadm already exists.
    INFO 2011-09-05 10:44:48.917
    Account oraprd already exists.
    INFO 2011-09-05 10:44:49.73
    Execute step useDatabaseMethod of component |NW_Export|ind|ind|ind|ind|0|0
    INFO 2011-09-05 10:44:49.217
    Execute step setDatabaseMethodOra of component |NW_Export|ind|ind|ind|ind|0|0
    INFO 2011-09-05 10:44:49.341
    Execute step setDatabaseMethodDB6 of component |NW_Export|ind|ind|ind|ind|0|0
    INFO 2011-09-05 10:44:49.480
    Execute step mainExportParameters of component |NW_Export|ind|ind|ind|ind|0|0
    INFO[E] 2011-09-05 10:44:52.251
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/._), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:44:52.252
    FSL-02061  Link /._ is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.760
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/cntrl), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.761
    FSL-02061  Link /oracle/PRD/cntrl is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.762
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/._), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.762
    FSL-02061  Link /oracle/PRD/._ is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.763
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/sdubhibq), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.764
    FSL-02061  Link /oracle/PRD/sdubhibq is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.765
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/sduccayx), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.765
    FSL-02061  Link /oracle/PRD/sduccayx is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.766
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/inventory), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.767
    FSL-02061  Link /oracle/PRD/inventory is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.768
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/OPatch), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.768
    FSL-02061  Link /oracle/PRD/OPatch is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.769
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/assistants), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.770
    FSL-02061  Link /oracle/PRD/assistants is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.771
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/bin), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.772
    FSL-02061  Link /oracle/PRD/bin is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.773
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/clone), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.773
    FSL-02061  Link /oracle/PRD/clone is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.774
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/crs), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.775
    FSL-02061  Link /oracle/PRD/crs is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.776
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/css), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.777
    FSL-02061  Link /oracle/PRD/css is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.778
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/ctx), line (346) in file (syuxclink.cpp).
    INFO[E] 2011-09-05 10:45:01.778
    FSL-02061  Link /oracle/PRD/ctx is invalid: Unable to link a link to itself.
    INFO[E] 2011-09-05 10:45:01.779
    FSL-00001  System call failed. Error 90 (Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS) in execution of system call 'realpath' with parameter (/oracle/PRD/dbs), line (346) in file (syuxclink.cpp).

    Hi,
    In PRD system, u might have craeted many symbolic links in /oracle/PRD fileystem . This should be avoided. Symbolic link should not be created in /oracle/PRD ...
    Please check why symbolic links are created and get help from System Operation team . Please becareful to unlink symbolic links that are created by non-SAP. Make sure to perform full  offline backup .
    Please get the help from Unix System Operation team. Also it does not makes any sense to increase value of Unix parameter for maximum symbolic links.
    Regards
    APR

  • Support symbolic links (symlinks or Unix's 'ln -s') in the iTunes Media folder hierarchy

    As of iTunes version 12.0.1.26, iTunes has partial support for symbolic links in the iTunes Media folder hierarchy. I'd like Apple to enhance iTunes to treat any symlink or folder alias within the hierarchy the same as folders. With the Unix core under OS X, there is no clear reason to not support this feature.
    Why is this important? As more of us try to use iTunes as the single repository of all media, the library size becomes larger than is possible to hold on a single partition. The simplest and most convenient solution is to allow users to move large folders (e.g. Music, or Movies) to a different drive or partition, then put an alias or symlink in the original location within the iTunes hierarchy. Users with large collections or small partitions may need to split multiple times. Other users may want to put the bulk of their media on their home/work NAS and only keep a portion on their laptop for mobile access (think long overseas flights), but not have to constantly fiddle with iTunes.
    The point is not whether any one of these scenarios may be supported today though a crude hack or third-party tool. Support for symlinks would be relatively easy for Apple to implement and extremely flexible for advanced users.
    This is partially supported today. For example, if you do what I described above, iTunes will play all of your existing media. The part that is definitely broken is when you try to use the "Automatically Add to iTunes" folder, iTunes will not copy the file to a location under a symlink or alias. The new file will sit in the "Automatically Add to iTunes" folder and iTunes will generate multiple instances/tracks inside iTunes (e.g. movies appear in the "Unwatched" tab). While there are ways to work around this limitation, they are tedious and ultimately unnecessary if full symlink/alias support is provided.
    Best,
    Pete

    Click here and fill out the form.
    (119798)

  • Can I use symbolic links to share abook.mab file for two users

    If I delete any of the .mab files from one user profile and replace it with a symbolic link that points to the same file in the other profile will this synchronise my address books for the two profiles. I have win7.
    The object is to have two Windows User accounts sharing all the same email data. I have already have them pointed at the same message store.
    I also wish to know if deleting a .mab file will only cause it to be re-created.
    I am hesitant to experiment.
    Thanks

    Deleting any of the two default mab files, abook.mab (Personal Address Book) or history.mab (Collected Addresses) will result in new, empty files with these names being recreated automatically when TB is restarted.
    There are some ideas for sharing address books here:
    http://kb.mozillazine.org/Sharing_address_books

Maybe you are looking for

  • Intel i965 & DRI not working [solved]

    Hi, I have a Thinkpad X61s with an Intel X3100 (i965) and I can't get DRI to work. Here is the ouput from glxinfo: [root@neptuno ~]# glxinfo |grep direct direct rendering: No OpenGL renderer string: Mesa GLX Indirect Here is my xorg.conf: Section "Se

  • Error while creating folder inside the Public & Private Folders

    Dear Gurus, I am trying to create a new folder under Public & Private folder. But system is giving the error as " Please enter complete document key. Rollback was unsuccessful; the document is not assigtned to the folder." But system is creating the

  • Domain name and extension

    can anybody tell me how to find domain,extension,host name?

  • Cvs problem in flex builder 2.0

    Hi, everyone, I have installed my flex builder 2.0 without problem, and i have created some apps using it. It is really good. But the question is , when I set up a CVS client in flex builder, i can only do commit / update / synch, Why the Edit / Uned

  • How to launch the Create Incident page as the Home Page

    Hi All, My issue is to launch the Create Incident page as the Home Page in the Service Pro Role. To launch the Create Incident page as the Home Page is there any SPRO Configuration or we have to do through the code? Thanks & Regards, Venkat