Lastlog file management

My /var/log/lastlog files are growing like weeds. On one of my systems that's just over one year old the lastlog file is over 1.6GB. yes. Gig.
I don't see any sign in the daily/weekly/monthly scripts that the file is getting rotated. I tried renaming the file, but a subsequent logon just recreated the file AT THE SAME SIZE.
How do I clean up this file (or utmp/wtmp if necessary)?

Hi MacMuse,
I think the size of the lastlog file will be approximately 28bytes*(largest uid of users who have ever logged in).
What is your uid on your Mac? (use the 'id' command if you don't know your uid).
If your uid has a "normal" value (such as 501), then I have no idea why your lastlog file is so large.
If your uid is very large, then it is unavoidable that the lastlog file becomes very large once you login.
On most UNIX/LINUX systems the loatlog file is a "sparse file" and does not take up large disk space even if there is a user with very large uid. But HFS+ on MacOS X does not support the sparse file and so I think your lastlog file is actually using a large disk space.
I tried renaming the file, but a subsequent logon just recreated the file AT THE SAME SIZE.
So your last log file will be "THE SAME SIZE" if it exists and once you login.
But I think the lastlog file will not be automatically re-created if you remane (or remove) it. After you rename the file, please try shutdown and reboot.
PowerMac G4   Mac OS X (10.4.8)  

Similar Messages

  • Using bash as your file manager?

    Hello,
    My belief is that all file managers suck. There are no exceptions to this. So, for the past few months, I've been sourcing a file with a bunch of tricks I've invented / found through browsing the web to make using just bash as a file manager much more convenient.
    Here's what I currently use:
    # fm v1.9.1 by Kiah Morante
    # A very simple file manager.
    # Depends on pycp/pymv, http://github.com/yannicklm/pycp and feh
    # 'source' this file in a BASH shell
    showHidden=0 # Hidden files not shown
    showDetails=0 # ls is replaced with ls -lh if showDetails is 1
    shopt -s autocd # cd to a dir just by typing its name
    PROMPT_COMMAND='[[ ${__new_wd:=$PWD} != $PWD ]] && list; __new_wd=$PWD' # ls after cding
    # Shortcuts
    source ~/.config/fm/shortcuts # Call all custom shortcuts
    alias ..='cd ..'
    alias ...='cd ../..'
    alias ....='cd ../../..'
    alias h='cd ~'
    alias n='cd "$n"'
    # Keybindings
    bind '"\C-l":"list\C-m"'
    bind '"\C-h":"hide\C-m"'
    bind '"\C-o":"details\C-m"'
    bind '"\C-f":"makedir\C-m"'
    bind '"\C-n":"n\C-m"'
    bind '"\C-y":"cpwd\C-m"'
    bind '"\C-p":"cd "$OLDPWD"\C-m"' # Hint: You could also type '~-'
    # FM prompt appearance
    if [[ $(whoami) == 'root' ]]; then
    # So that the user knows if they have root privileges:
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;31m\]root\[\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    else
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    fi
    # Functions
    # Usage
    fmhelp () {
    echo "hide - toggle hidden (hidden by default)
    ls - lists contents of dir(s) passed in args.
    lsd - list directories
    cd - changed to directory \$1
    cp \$@ \$2 - copies file from \$1 to \$2
    mv \$@ \$2 - moves file from \$1 to \$2
    rm \$@ - deletes \$@
    sc \$1 \$2 - make a shortcut called \$1 pointing to \$2. If no \$2 is passed, it is evaluated as \$PWD
    cpwd - copy current working directory
    .., ..., .... - cd .. etc.
    o \$1 - opens \$1 with xdg-open
    hm - how many files are in the current directory
    details - show file details (ls -lh)
    fmhelp - this help menu
    n - Intelligent guess of the next dir you wish to cd to. Last $1 in open, list, or makedir; last argument in copy or move; pwd before a cd
    ~- - BASH shortcut for \$OLDPWD
    img - feh frontend with the following usage:
    img -t \$2 - views the dirs/images specified in \$2..\$n as clickable thumbnails
    img -s \$2 \$3 - views the images specified in \$3..\$n as a slideshow with a slide change speed of \$2 seconds
    img \$@ - views the dirs/images specified
    Shortkeys:
    Ctrl-f - mkdir
    Ctrl-h - hide
    Ctrl-l - ls
    Ctrl-n - cd \$n
    Ctrl-o - details
    Ctrl-p - cd \$OLDPWD
    Ctrl-y - cpwd
    Ctrl-u - clear line # urxvt default"
    # Toggle display hidden files
    # If $showHidden is 1, hidden files are shown
    hide () {
    showHidden=$(( 1 - $showHidden ))
    list
    # Toggle display file details
    # If $showDetails is 1, file details are shown
    details () {
    showDetails=$(( 1 - $showDetails ))
    list
    # ls
    listToggle () {
    if [[ $showHidden == 1 && $showDetails == 1 ]]; then
    ls -C --color -A -lh "$dir"
    elif [[ $showHidden == 1 && $showDetails == 0 ]]; then
    ls -C --color -A "$dir"
    elif [[ $showHidden == 0 && $showDetails == 1 ]]; then
    ls -C --color -lh "$dir"
    else
    ls -C --color "$dir"
    fi
    list () {
    clear # Unclutter the screen
    # List pwd if no $1
    if [[ $@ == "" ]]; then
    set '.'
    fi
    # List multiple folders:
    for dir in "$@"
    do
    listToggle
    done
    n="$1" # See 'n' in fmhelp
    # use feh to view thumbnails/images/slideshow
    img () {
    case "$1" in
    -t) nohup feh --thumbnails "${@:2}" --thumb-height 120 --thumb-width 120 -S filename -d --cache-thumbnails -B black > /dev/null 2>&1 & ;;
    -s) nohup feh "${@:3}" -S filename -d -B black --slideshow-delay "$2" > /dev/null 2>&1 & ;;
    *) nohup feh "$@" -S filename -d -B black > /dev/null 2>&1 & ;;
    esac
    list
    # cp
    copy () {
    if [[ $showHidden == 1 ]]; then
    pycp --interactive --all "$@"
    else
    pycp --interactive "$@"
    fi
    list
    n="${@:(-1)}" # n is the last argument (where stuff is moved to)
    # mv
    move () {
    if [[ $showHidden == 1 ]]; then
    pymv --interactive --all "$@"
    else
    pymv --interactive "$@"
    fi
    list
    n="${@:(-1)}"
    makedir () {
    if [[ $1 == "" ]]; then
    read -e n
    set "$n"
    fi
    if mkdir -- "$1"; then
    list # Update pwd to show new dir(s) that have been made.
    n="$1"
    fi
    # rm
    remove () {
    rm -rfI "$@"
    list
    # open files
    o () {
    # To use xdg-open
    #nohup xdg-open "$1" > /dev/null 2>&1 &
    if [ -f "$1" ] ; then
    case "$1" in
    *.tar.bz2) tar xjf "$1" ;;
    *.tar.gz) tar xzf "$1" ;;
    *.bz2) bunzip2 "$1" ;;
    *.rar) rar x "$1" ;;
    *.gz) gunzip "$1" ;;
    *.tar) tar xf "$1" ;;
    *.tbz2) tar xjf "$1" ;;
    *.tgz) tar xzf "$1" ;;
    *.zip) unzip "$1" ;;
    *.Z) uncompress "$1" ;;
    *.7z) 7z x "$1" ;;
    *.pdf) nohup zathura "$1" > /dev/null 2>&1 & ;;
    *.html) nohup luakit "$1" > /dev/null 2>&1 & ;;
    *.blend) nohup blender "$1" > /dev/null 2>&1 & ;;
    *.avi) nohup mplayer "$1" ;;
    *.wmv) nohup mplayer "$1" ;;
    *.rmvb) nohup mplayer "$1" ;;
    *.mp3) nohup urxvtc -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.flv) nohup mplayer "$1" ;;
    *.mp4) nohup mplayer "$1" ;;
    *.ogg) nohup urxvt -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.wav) nohup audacity "$1" > /dev/null 2>&1 & ;;
    *.jpg) img "$1" ;;
    *.jpeg) img "$1" ;;
    *.JPG) img "$1" ;;
    *.png) img "$1" ;;
    *.gif) nohup gpicview "$1" > /dev/null 2>&1 & ;;
    *) nohup urxvt -si -sw -sh 30 -e vim "$1" > /dev/null 2>&1 & ;;
    esac
    else
    echo "'$1' is not a valid file"
    fi
    n="$1"
    # Add shortcuts
    makeShortcut () {
    if [[ $2 == "" ]]; then
    set $1 .
    fi
    echo ""$1"=\""$2"\"
    alias "$1"='cd \""$2"\"'
    " >> ~/.config/fm/shortcuts
    source ~/.config/fm/shortcuts
    # Copy pwd to clipboard
    cpwd () {
    echo \"$(pwd)\" | xclip
    # List directories
    lsd () {
    ls -F "$@" | grep \/$
    # Command aliases
    alias mv="move"
    alias sc="makeShortcut"
    alias cp="copy"
    alias ls="list"
    alias rm="remove"
    alias mkdir="makedir"
    alias hm="ls -l . | egrep -c '^-'"
    list # ls when fm starts
    Could all of you fellow file manager-haters post your little tricks, whether just a few lines added to ~/.bashrc or fully fledged files that you source like mine?
    Last edited by greenmanwitch (2011-02-07 19:58:40)

    3]) wrote: once you have video files cluttered all throughout your hard drive and folders all over, thats where the 'bash' filemanager system lacks its use in terms of effectiveness.
    Actually, I found this to be one of the best advantages of using bash is that it forces a user to think about file organization and making useful naming schemes for files.
    For example, instead of having 1000+ media files in one directory I subcategorize theme by genre or whatever, and then probably subcategorize them again.
    Then I usually rename the files to something meaningful, like if I have 50 pictures of my kids birthday, just do a for each loop on the directory and rename all the files donovan_birthdayX.jpg where X is an integer incrementation.
    essentially. just don't "have files cluttered all throughout you hard drive and folders all over". and your life will be much happier regardless of how you manage your files.

  • I would like to find a file manager/ image browser like ACDSee 32

    Coming from the Windows environment (it is where I make my living) I have found the Mac environment to be significantly different and pose a considerable learning curve especially when it comes to file management. I like to be able to view and manage files from within the same application but have yet to find something that will allow me the freedom I am used to. Ideally I am looking for something like ACDSee 32 (the last good version) which acts like a typical file manager but has a full sized preview pane as well. This allows you to preview a picture then drag and drop it into a folder of your choosing. The software also allows you to do some minor edits and create folders as well.
    Preview on my MacBook is a still born idea, iPhoto want to take all of my photos and store them in a proprietary environment (not happening) and Xie is a very nice file viewer but does nothing else. Any useful suggestions of a software that will do what I would like it to do would be appreciated.
    Thank you.

    Photoshop.

  • How do I... (1) "play" a ppt; (2) "see" my sub-folder​s and their files in "Docs To Go" or "File Manager"?

    This is written for the Playbook blog writer in the hope that he will see it here and post a blog answer. However, a reply from anyone would be appreciated. Thanks.
    [2 questions about PPBB OS 2.0+]
    Hi. Thanks for your very informative blog. I would appreciate it if you would consider writing blog tips to answer the following:
    1) Why can't I organize my files in "Documents" or "File Manager" to "see" them in their sub-folders?
    BBPB allows me to create SUB folders in the Documents folder, through my pc's access to the "Documents" folder in the Playbook. However, then I cannot "see" these created sub-folders on my BBPB after I disconnect my BBPB from my PC.
    All the files I downloaded into these "sub" folders end up all together in the file list in "DOCS TO GO", either in "Documents" or "Music" or "Video" or "Pictures" ---- but these files are NOT separated into the sub-folders I created. The same thing happens in "FILE MANAGER" i.e. all files on the Playbook are in ONE place only.
    Is the Playbook OS ever going to allow one to view sub-folders and what is in them, other than using the pc to do it? For example, it would be desirable to put all my ppt files into one folder.
    2) How do I "play" a PPT file in the BBPB?
    The BBPB "User Guide" says that I can "view, edit, or play" Powerpoint Presentations. However, although it describes how to "view" or "edit" individual slides, it does not say how to "play" ("run") a slideshow. How do you "play" a self-running slideshow?
    For example, in Windows, you can click "play.bat" (in a saved "presentation cd" folder on a cd or USB stick) to run the ppt with sound and pictures saved in that folder (you don't need the Powerpoint program itself for this, since you are using the "pptview.exe" file in the same folder to "play" it). However, after downloading all the files in this "presentation cd" folder to the Playbook, I could only see one of them, the ppt file itself ---- and there is no icon in the Playbook to "play" the slideshow, it seems. Help?!
     Thank you.
    Solved!
    Go to Solution.

    First, I use an app called "File Browser" to view those subfolders.
    As for running a powerpoint, I can open a ppt file and it runs in Documents to go. Next to the "Close" button there are three icons. The third one runs the ppt file as a slideshow.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Some videos are semi-missing - they do not show up in File Manager apps or another app

    I have what I will call three FILER apps: File Browser, Air Browser and File Commander.  I also have MovieSRTPlayer.  Those apps appear to not register the presence of some video files that I have definitely copied to my PB.  The MovieSRTPlayer will overlay a .srt file's text over a video allowing the pb to show subtitles.  It works as long as it can find the video and srt files.
    I am definitely transferring a series of video files to the pb's video folder.  I am also transferring a companion file to that folder.  The companion file is a subtitle file in the form of an .SRT file.
    THREE file manager type apps do NOT show those files as present in the video folder.  The Video app itself does show and play those video files. 
    I have copied the files using both wifi-sharing and when they did not show up that way, I copied them using the usb cable to the pb's Z: drive and the video folder.
    As stated the dam! files play in the video app.  But they do not appear in the various filer apps.  And they also do not show in another app, one that will display the subtitle (.srt file) file overlaying the video.  In all instances it is as if the pb does not register the presence of those files on the pb.
    Now, what is interesting is that when this first cropped up, 7 files were missing - just a mix of video (no .srt files involved).  That is they showed in the video app and played but the filer programs did not show them.  I managed last night and this morning to get 7 of those to finally show by copying/moving/deleting and recopying.  But now I'm running into this brick wall again.  I have repeatedly copied two video (avi files) and their companion .srt files to the video folder.  They are in that folder (I've looked using usb and wifi-sharing) and they play in the PB's video app.  They are most certainly on my pb.
    Oh, and yes, I've rebooted a number of times. 
    Ideas?

    I have what I call 3 file manager apps.  File Browser, Air Browser and File Commander (the older free version). 
    They all show or don't show the same thing.  So files are missing.  And SIZE is not the sole determining factor.  When I was testing MovieSRT and "lost" some files I copied and renamed avi and .srt files.  So there are two extra .srt files in the Video folder.  But while they are 32kb (kilobytes) and 58kb respectively, they do NOT show up in the File managers.  The other two identical files with the names matching the .avi files do show up.  The one very large mp4 (2gb) does not show up.  A subfolder I created just as a test does not show up.  But the large mp4 and subfolder were showing up while I was actively copying the 2gb file - they would show up as the file was being copied - the filemanagers showed the file getting larger and larger and while doing so the "missing" subfolder also kept showing up.  Then once the large file was completely copied, both it and the subfolder "disappeared" - again, the large mp4 does show in the Video app and it plays.
    My persistence probably is based on the fact I was a computer programmer many eons ago!  Also, I was trying to get YOUR app to work and the avi files were not showing up in your listing but they were showing and playing in Video app (but no subtitles).  Finally, after copying/moving/re-copying over and over including moving and copying to the PB's Print folder (just since it was empty) and copying it back to the video folder (now 2 copies), the files would finally show up.  Peculiar - yup!
    Oh, one other thing - the 3 file managers all show what I will call the virtual Playbook-Demo video in their listings - your app does NOT show it.  Obviously, it is not located in the Video Folder but somewhere in the bowels of the PB.  So, the filemanagers  are relying on some "file structure" that is not fully correct.  But your app does not appear to show it.

  • File Management in C5-03

    Recently i was buying Nokia C5-03 because it has both 3g & Wifi as well as the price is
    affordable. i am happy with this phone except some issues regards to file management. unlike the basic Nokia OS, here i couldn't find a way to manage my files easily. as an example, if i want to move some files from Image Gallery to a New Folder by Marking what i want to move, there is no option maybe still i could not. as well as does anybody know, if there's 3rd party file management software to download i beleive it will assist me on this concern.
    Solved!
    Go to Solution.

    Sorry but i don't have idea wher to post my problem. I have C503 and problem with the camera( always when i record video and sometimes with pictures) . During recording a video everithing is ok but when i want to watch( on telephone and on pc) recording is very bad ( slow, no sound, i see pixels and video is not clear) .When i use camera to shot pictures sometimes telephone just don't want to store my images ( no to card and no to tel memory ) .
    Camera setings is on very high, 5 mega pixel for images and TV quality for video recording.
    Sorry if my english is not so good, best regards!
    PS: My C503 is purchased in april 2011 from authorised distributor and in may was already bean in service beacuse changing the display and softver problem.

  • How delete unwanted system sync in file manager?

    Hello!  As a result of testing Z10 10.1.0.2014, Blackberry Link wifi sync of files with my Windows PC, I have extra repositories listed in File Manager on the Z10.  The list shows "Device", "Media Card", "Box", and also "LT2", "LT2-1 (offline)" and "LT2-2".  The string LT2 represents the PC's hostname. 
    I would like to delete the "LT2" and "LT2-1" entries from File Manager's list, as the Link feature does not work for them (early tests).  Also I would then like to rename "LT2-2" (which does work) to just "LT2".
    How can I do that?  If not presently possible, please consider this a feature request.
    I think this is a File Manager feature request, not a Blackberry Link request.
    Thanks,
    krobe8
    Ken Roberts
    [email protected]

    Hello? Re-poster ?
    /sapdb/SID/saplog and /sapdb/SID/m_saplog are 98% used
    You're filesystem usage isn't growing!
    Anhow - Abuse button pressed...

  • Web File manager not working

    The web file manager in NSS322 does not work correctly.  The admin button doesnt work.  I get some limited use when I click compatibility view but not ideal

    Kriss,
    Please call into SBSC @ 1-8866-606-1866 and speak with next available engineer on this issue.
    Thanks
    Jasbryan

  • Changing the default file manager in XFCE

    How would I go about using Nautilus as the default file manager in XFCE instead of Thunar? I know it can be started up with 'nautilus --no-desktop', but how do I make this the default when opening folders from the desktop, menus, etc..?
    The main reason I want to do this is because Thunar doesn't seem to remember a folders last setting. For example, there are folders which I would like to permanently view as a list, sorted by date; but there are plenty of other folders where this is not suitable. Nautilus remembers settings for each folder, Thunar doesn't, and it gets annoying changing the view mode each time. Also network browsing is easier in Nautilus, and I also like the way it tells you how fast file transfers are going.
    Thanks very much,

    Well, it might be considered a dirty hack but it has worked for me in gnome before so it should also work in xfce.  Just edit the thunar.desktop file in /usr/share/applications and replace the Exec=thunar to Exec=nautilus --no-desktop and save the file.  Then any time thunar is launched, nautilus will be launched instead.
    Otherwise, you can edit the menu with the menu editor and change the File manager command and do the same in the panel icon properties.  Both methods will work.

  • I forgot my hidden file manager password,How can i get back my files

    I forgot Hidden file manager password,how can i get back my my data

    If you are able to Get Info on the folder of interest go the the very bottom section Sharing and Permissions.
    You can gain access to this area by clicking on the lock in the lower right corner of the Get Info window.
    Once you have input the admin password for the computer you should be able to edit the permissions on that file/directory. 

  • Can't see email messages in file manager

    I've been testing email on my new phone (6682) and now I'd like to delete all the messages in my inbox. nothing shows up in the messages folder in file manager on my PC even though I have about 30 emails on the phone. I can view all other data (images, contacts, etc.)
    Additionally, I can't seem to delete the emails directly from my phone. It keeps saying it will keep the headers in memory....and I don't want to keep them. There must be a way. Nokia phone support (believe it or not)could not help me after 45 minutes on the phone. Their solution was to completely reset the phone *#7370#. Please advise if you can.
    -Phone Nokia 6682
    -PC Suite 6.8
    -Windows XP
    Thanks

    In all serie-60 phones when you choose to delete the e-mail (and select "Phone") it will delete the content of the e-mail and keep the header of the e-mail until you connect to the e-mail server again. After that it will be erased from the phone.
    It is not a phone "feature", it is how e-mails usually works when the are downloaded from a server. The mail is not deleted until you connect to the server next time, because the server need to know if it is going to keep a copy of the mail or not. It is working the same way with an exchange server except that it is going so fast so you can´t "see it"....
    The views I present are my OWN and not of any organisation I may belong too.

  • Nokia lumia file manager

    Nokia windows 8 phones doesnot give permission or access to its file system. Everytime one need to connect to pc inorder to copy move files. Files downloaded by uc browser or iexplore cannot be seen. Without file manager it is a **bleep**. Who says it a smart phone? It is a **bleep** piece

    hi, you can leave feedback over at Microsoft as it is to do with WP8, not Nokia: http://windowsphone.uservoice.com

  • How to synchronize File Manager Server when I install Agile on distributed?

    The Environment I install is : two Agile Server , two File manager Server ,one Web Proxy Server, one DB Server .
    The Agile version I install is Agile 9.3.1 for Linux ,the Middleware is weblogic 10.3.2 .
    Now I finish install two Agile Server ,and successful make two server compose a cluster.
    Now I will install two File manager Server ,I want to ask what's the method let me synchronize two file manager Server ?
    Does the File manager has this mechanism to let the file keep synchronize on two file manager server?
    I find a PDF name "Agile PLM Capacity Planning Guid" V 9.3.1 ,it says there are two software can synchronize file manager server , is XXCOPY and RoboCopy, but the two softwares only support Windows . Is there a software support synchronize file manager server on Linux ?
    帖子经 954937编辑过

    Hi I believe you have the wrong forum.
    This forum is for the Agile PLM for Process product suite, not for the Agile A9 suite. For Agile A9 or Primavera questions, you can use Oracle Support, Support Communities, Yahoo Groups for Agile API or WRAU.
    This forum is for Agile PLM for Process, which is part of the same Agile family but a different product.
    Thanks.

  • Is there any downside to using a reference type library if I use Time Capsule and will do file management only from within Aperture?

    Have done a lot of reading to get prepared to convert to Aperture 3 and have this question regarding setting up my library type.
    I'm not a professional -just a heavy user hobbyist.
    It appears that the major factors in using reference style is to backup the images with Time Capsule and always do moves or deletes from within the Aperture application.
    If my architecture matters here's what I have that may be involved in photo management and editing:
    iMac (latest 27" high power version with lots of memory)
    Internal 2TB HD where the library is stored
    External (FireWire) 2TB HD where the images are stored
    External (FireWire) 6TB HD backup drive
    In the future an iPad for remote work on images (when/if available) and a Mac laptop (for same remote use)
    I see major downside issues to letting the library manage my files - such as inaccessibility (or awkward accessibility) to the images for other programs, and performance issues when the library gets large (thousands of images or 100+ gb in size)
    The chief complaints I've seen regarding using a reference mode is the broken link issues created if file management is done outside of Aperture (adds, deletes, moves of files) and the inability to use the Vault function for backup.
    One feature that I imagine I'd like to have is maximum integration with Final Cut Pro X and that's one area I haven't seen much on and would be interested to hear about if that integration is affected with the choice of managed vs referenced library types. (I like to produce film clips that are combinations of pics and video and want to be set up so that is done in the easiest fashion when working in FCP X)
    I'm sure I've not seen all sides of this issue and would like to see some discussion around this question.
    Thanks to everyone contributing!
    Craig

    Goody, Goody, you hit a few of my favorite subjects! Herewith some comments, with the usual caveats - true to the best of my knowledge and experience, others may have different results, YMMV, and I could be wrong.
    I run Aperture on two machines:
    -- 2007 Mac Pro with 2x2.66 GHz Xeon, 21 GB of RAM, a 5770 GPU, and multiple HD. I have about 11,000 images, taking up 150 GB. (Many are 100 MB TIFF, scanned slides)
    -- 2006 Mac Book Pro with 1 2.0 GHz Core Duo, 2 GB of RAM and a 240 GB SSD.
    Two very different machines.
    -- Aperture Libraries are all the same - Managed or Referenced. If Managed, then the Master image files are inside the Package, if Referenced, they are outside, and you can have any combination you want. Managed is easier, but Referenced is not hard if you are the least bit careful.
    -- While the sheer size of an Aperture Library is not a big issue, the location on disk of the different components can have a tremendous impact on performance.
    -- Solid State Drives (SSD) read and write faster than regular Hard Disks (HD) and, what is more important, empty HD read and write much faster than full HD.
    -- Aperture speed requires a combination of RAM, CPU, graphics processing unit (GPU) speed, and disk speed. The more RAM you have, the less paging you will see. With enough RAM, the next bottle neck is CPU (speed and cores) and GPU speed. But even then you will still have to fetch an image (longer if you pull the full resolution Master, read and rewrite the Version file, and update the Preview and Thumbs.
    So what works?
    -- RAM, RAM, and more RAM. 4 GB will work, but you will page a bit. 8 GB is much faster. On my old MacPro the sweet spot was about 16 GB of RAM.
    -- Keep your Library on your fastest (usually internal) drive. Keep that disk as unloaded as possible. How do you keep it unloaded? Either buy BIG, 1 TB+ or move your Masters off onto another disk. The good news here is that as Master files are written only once and never rewritten, speed of this disk, as opposed to the disk that holds the Library, is not important. There is a one second pause as the Master is read into memory and, if you have enough RAM, that is it - the Master will never be paged out. If, on the other hand, you do not have enough RAM, and you do a lot of adjusting at full resolution, then the speed of the disk that holds your Masters will become very important due to paging.
    -- I found that I picked up a tiny bit of speed by keeping the Masters on a dedicated disk. Thus, in your configuration, if you can dedicate that 2 TB FW HD to your Masters, you should see very nice performance.
    Final notes on backups and archives:
    -- One conventional wisdom is that you should make an archive copy of every image file before or as you load them into your system. (Aperture in this case.) This archive is then never touched or deleted.
    -- An alternative approach is that you do not keep such an archive, but only the images that you have in your Aperture Library. And when you delete from the Library, you no longer keep a copy anywhere.
    I do the following:
    -- Card to Aperture. Card is then kept at least 24 hours until all of my backups have run. (I use three - Time Machine, Clone, and off site.)
    -- I do not keep archive copies. If I decide to delete a file, my only recourse is to recover it from Time Machine during the six month cycle of my Time Machine backups. Thereafter, it is lost.
    There are merits to both approaches.
    Hope this is clear, correct, and responsive to your needs.
    DiploStrat

  • Set Default Sort in File Manager

    Hi,
    When i go to File Manager, Media Card, Photos, the default "sort" is set to Name and "order" Ascending. If i want to change it to "sort" date and "order" descending, i select date and then it jumps back to the actual pictures. I have to go back into the menu to do the second selection "sort" descending". So can the development team create an option where you change all the settings first and then you save them which then brings you back to the actual pictures? And also look into the option of remembering your preferred sort/order preferences? because once you go out of file manager and go back in, you have to do these steps again. 
    if I am overlooking this feature (maybe it's already a setting somewhere which i missed) feel free te let me know.
    Thanks

    Hi,
    It's not about set of key field in MDM Import Manager but the reason is that you can not select more than 1 category(Lookup Taxonomy) in maintable for one record. thats why error is coming because for this Property Multi-valued always No.
    Even, you can try this in Data Manager manually create three Category A, B and C in taxonomy mode on selecting Sub table Categories, then on selecting main table, when you select category field(which is lookup to categories table)for a particular record you could able to select only one category A, B or C.
    i would suggest make a Attribute of type text having three values A, B and C and mark this as Multi-Valued in Attribute Detail and link this Attribute with your category. in this way you can attach three values A, B and C with your Record.
    Other thing you can do,make this category field as (Lookup Hierarchy not lookup taxonomy) in main table to Subtable(Hierarchy) then for this field in main table you can set Property Multi-valued = Yes in MDM console and then after Import using MDM Import Manager finally only one record will get created in Data Manager as:
    Name Category
    1         A;B;C
    Hope it will Help you,
    Rewards if Useful.....
    Mandeep Saini
    Edited by: Mandeep Saini on Jun 20, 2008 8:46 AM

Maybe you are looking for