Udev automount rules and sd cards

Hi
I use the udev automount rule (the first one) from the arch wiki:  http://wiki.archlinux.org/index.php/Ude … SB_devices
it works fine for usb sticks and it also mounts sd cards in my card reader, but it does not unmount them.
usb sticks are unmounted, sd cards not. both are /dev/sdx devices.
thanks for any help

This
# Get a label if present, otherwise specify one
ENV{ID_FS_LABEL}!="", ENV{dir_name}="%E{ID_FS_LABEL}"
ENV{ID_FS_LABEL}=="", ENV{dir_name}="usbhd-%k"
is "missing" from the udev rules for SD cards. Maybe try removing those lines <shrugs>
Card readers may be tricky.  But what is the error anyway? Maybe they're just slower and take more time to sync? How do you know they're not unmounted?

Similar Messages

  • Udev rules and group / permission errors [solved] [outdated]

    Latest udev is a miracle to me. It ignores every group ore permission settings. Anyone else having same experiences?
    Last edited by Moo-Crumpus (2008-09-29 05:17:40)

    Let's assume that you have two files with udev rules. The basic udev.rules and 00.udev.rules (with custom rules).
    Udev first reads all rules from 00 file and then rules from the basic file.
    This means that if you have a custom rule for a given device you should copy all rules that apply to it from the basic file to the 00 file (not only lines with GROUP). This is because with OPTIONS="last_rule" udev will stop processing rules for this device.
    All rules are read and then applied in the order from the top to bottom except SUBSYTEM which is applied as the last rule (kind of held in a buffer). This is the reason why my cd burner /dev/hdc had permissions for disk group and not optical.
    This is my 00.udev.rules (it still needs some cosmetic changes but it works and of course I don't have all the devices):
    SUBSYSTEM="video4linux", GROUP="users"
    SUBSYSTEM="sound", GROUP="users"
    SUBSYSTEM="printer", GROUP="users"
    SUBSYSTEM="block", GROUP="disk"
    BUS="ide", KERNEL="hd[a-z]", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%c{1} %c{2} %c{3} %c{4} %c{5} %c{6}"
    BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-devfs.sh %k %b %n", SYMLINK="%c{1} %c{2}"
    BUS="ide", KERNEL="hdc", SYSFS{removable}="1", PROGRAM="/bin/cat /proc/ide/%k/media", RESULT="cdrom*", NAME="%k", GROUP="users", SYMLINK="nagrywarka dvd cdrw", OPTIONS="last_rule"
    BUS="ide", KERNEL="hd[a-z]", SYSFS{removable}="1", PROGRAM="/bin/cat /proc/ide/%k/media", RESULT="cdrom*", NAME="%k", GROUP="users", OPTIONS="last_rule"
    BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-floppy.sh %k", RESULT="floppy", NAME{all_partitions}="%k", GROUP="users", OPTIONS="last_rule"
    BUS="scsi", KERNEL="sr[0-9]*", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%c{1} %c{2} %c{3} %c{4} %c{5} %c{6}"
    BUS="scsi", KERNEL="scd[0-9]*", PROGRAM="/etc/udev/cdsymlinks.sh %k", SYMLINK="%c{1} %c{2} %c{3} %c{4} %c{5} %c{6}"
    BUS="scsi", KERNEL="sr[0-9]*", SYSFS{type}="5", NAME="scd%n", GROUP="users", OPTIONS="last_rule"
    BUS="scsi", KERNEL="sg[0-9]*", SYSFS{type}="5", NAME="%k", GROUP="users", OPTIONS="last_rule"
    KERNEL="fd[0-9]*", NAME="fd%n", GROUP="users", SYMLINK="floppy/%n fd%nu1440 fd%nu720 fd%nh1200 fd%nu360", OPTIONS="last_rule"
    BUS="usb", SYSFS{serial}="CN16J1Q3HWSX", KERNEL="lp[0-9]*", NAME="usb/%k", GROUP="users", SYMLINK="drukarka_hp_845c drukarka", OPTIONS="last_rule"
    BUS="usb", KERNEL="sd*", PROGRAM="/etc/udev/usb-storage.sh %k", RESULT="1", NAME="%k", GROUP="users", OPTIONS="last_rule"
    KERNEL="rtc", NAME="misc/%k", SYMLINK="%k", GROUP="users", MODE="0664", OPTIONS="last_rule"
    KERNEL="agpgart", NAME="misc/%k", SYMLINK="%k" GROUP="users", OPTIONS="last_rule"
    KERNEL="nvidia*", GROUP="users", OPTIONS="last_rule"
    KERNEL="fb[0-9]*", NAME="fb/%n", GROUP="users", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="card[0-9]*", NAME="dri/%k", GROUP="users", OPTIONS="last_rule"
    KERNEL="3dfx*", NAME="%k", GROUP="users", OPTIONS="last_rule"
    KERNEL="dvb*", PROGRAM="/etc/udev/dvb.sh %k", NAME="%c", GROUP="users", OPTIONS="last_rule"
    KERNEL="video[0-9]*", NAME="v4l/video%n", GROUP="users", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="radio[0-9]*", NAME="v4l/radio%n", GROUP="users", SYMLINK="radio%e", OPTIONS="last_rule"
    KERNEL="vbi[0-9]*", NAME="v4l/vbi%n", GROUP="users", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="vtx[0-9]*", NAME="v4l/vtx%n", GROUP="users", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="controlC[0-9]*", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="hw[CD0-9]*", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="pcm[CD0-9cp]*", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="midi[CD0-9]*", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="timer", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="seq", NAME="snd/%k", OPTIONS="last_rule"
    KERNEL="audio*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="dmmidi*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="admmidi*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="dsp*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="adsp*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="midi*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="amidi*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="mixer*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="sequencer*", NAME="sound/%k", SYMLINK="%k", OPTIONS="last_rule"
    KERNEL="pktcdvd", NAME="pktcdvd/control", GROUP="users", MODE="0660", OPTIONS="last_rule"
    KERNEL="pktcdvd[0-9]*", NAME="pktcdvd/pktcdvd%n", GROUP="users", MODE="0660", OPTIONS="last_rule"
    The problem with /dev/hdc was that first udev (version 057) was reading a rule from my 00 file (BUS="ide", KERNEL="hdc"...) with GROUP=users. Then it was reading SUBSYSTEM="block", GROUP="disk" rule from the basic file (but it wasn't executed at that time). And then it was reading BUS="ide", KERNEL="hd[a-z]", SYSFS{removable}="1"... with GROUP=optical. Then it was executing SUBSYTEM rule (hdc is a block device). That's why only disk group had an access to /dev/hdc (with OPTIONS="last_rule" in the basic file in the GROUP="optical" line it would ignore SUBSYSTEM rule).
    There are also other rules that you should add (IMO) to your custom rules if  you are changing something. In my case it's for example BUS="ide", KERNEL="hd[a-z]", PROGRAM="/etc/udev/cdsymlinks.sh %k"... which creates symlinks for cd drives. This rule must be above other rules (the number of the symlinks is now unlimited - previously it was 5 IIRC).
    So now the rules are mixed together in the lexical order (except SUBSYTEM rules which are executed at the end) unless OPTIONS="last_rule" is used or second (and other) rule has a NAME filed (only one rule for a given device can have NAME filed. Every other rule for the same device with NAME field is ignored IIRC). It also means you can now split rules for a device into several rules - only one of them can have NAME filed and the last should have OPTIONS="last_rule".
    Since in your case you have custom rules only for a well defined usb devices (not /dev/sd*) IMO it should work as you think (only add OPTIONS="last_rule").
    I hope it's now perfectly clear  8) 

  • Holiday rule in time card approval and workflow

    HRMS application
    windows 2003
    EBS 11.5.10.2
    db 10.2.0.4
    We have customized our workflow for time card approval.
    If time card is not approved by monday 10 AM by my supervisor and time card is pushed to my supervisors boss.
    If monday is holiday and and my supervisor does not approve by 10 AM tuesday, time card is pushed to my supervisors boss. if My supervisors boss does not approve by 1PMnon Tuesday, time card is pusshed ot HR.
    I would like to know where this is customozed. I do not see any documentation on this.
    And also I can not see prvious ccouple of weeks timecard in drop down self service time entry screen. I can only see lates and forward.
    Quick help is appreciated.
    Thanks.
    Edited by: user539835 on Jul 12, 2011 1:12 PM

    Any help on this please.
    Atleast I need to see previous 2 weeks timecard dates in dropdown list of time entry screen.
    right now it shows July 11th 2011 -july 17th 2011 and 12 weeks going forward.
    quick help is appreciated.
    Tahnks.

  • ATI and Nvidia cards together?

    Is it possible to run an Nvidia card with an ATI card simultaneously? I have a 2007 mac pro with the stock 7300gt. I need another graphics card for a third monitor and would like to purchase the new ATI 3870. Does anyone here have an Nvidia and ATI card running together? Are there any issues? Thanks.

    Hi Ashuta,
    With respect, I think you confused it. I replied to dualrecto's question. As I didn't want to assume what he meant, I took the opportunity to answer to it in relation to both OS X and Windows. His question concerned the 7300 and the 3870, not the latter and 8800.
    I haven't seen any info that the 8800 and the 3870 could run together in OS X. However, as was written in the Macnn post that I linked to in the second of the two Apple Discussions links you included, the "no-mixing of video card rule" apparently doesn't apply to the newer Mac Pros. Since the ATi 2600 and the nVidia 7300 work simultaneously under OS X perhaps the 8800 and the 3870 will also work under OS X (and saying that, perhaps it will be possible to run also the combo dualrecto is seeking).
    Whether you should switch to the 3870: I guess it depends on what you want to use the cards for. The 8800 is superior in 3D rendering provided the application can take advantage of it's OpenGL functions. Which is why it does well as a gaming card. If not, it seems the 3870 is a better bet: http://www.xlr8yourmac.com/Graphics/ATI3870_Mac_PC_review/radeonhd3870review.html.
    Good luck!
    /p

  • Discussion on the psychological quality and skill card game

    Three dozen ha card game originated in Hunan, and then gradually spread to all parts of the country. Three dozen of HA with Changsha words three playing a Habbo, other local general called the three play, the game is similar to the two deck upgrade. The difference lies in that upgrading is playing on, and three HA is involved in all four biddable, to make to the highest points so far no one by the name of mark, and the highest score by calling cards, cards are called, the other three person leisure family, family three people playing catch by idle, so called the three dozen ha ( three a ).
    I play three games from two to 00, six years, has been five years, although the time is not long, but time flies., imperceptibly spent five years. In order to promote and popularize three dozen ha card game, www.liqunqipai.net has grown three dozen ha Games team, let more like three dozen ha card game friend master some basic skills, to achieve knowledge sharing, technology exchange, learn from each other, common purpose to improve, I will combine their three play, play card game real on the three play, play, game psychological qualities and skills, I only play a role, but the students surpass the teacher. Look, and blue.
    One, play cards to keep good state of mind, must not be happy playing cards
    In the first game before holding a learning mentality, take the length of others, fill oneself short, so as to constantly improve their technical level.
    Why do some people play playing cards for years three, technical level not long Jin? This is what causes it? There are two possible reasons : the first is the arrogant, always feel that I was a veteran, which have as novice. Always hold me veteran game player, his mind is often play cards to win, chaos random grab playing, if win good blame everyone and everything but not oneself, lost. Even individual game player when the mouth is not clean. So, his technical level always mark time, technological level has always been difficult to raise. Second reasons: some game player to play a few the implicit, didn't want to improve technology. The game player regardless of the hand is good, but often put the card points is very high, don't let you play cards, all take a license plate, no surrender. The game 's level of technology will never high.
    Why do some game player to play three playing card is not a long time, but played well? I think the main factors are: the playing cards, academic and aspirant, be good at summing up, progress quickly. However, such people are often a good attitude, winning no cards, the purpose I come to everybody study, go on a pilgrimage for Buddhist scriptures, but also in the cards is also very modest, play, thinking and thinking, not HERSHEY'S not just random grab playing. Therefore, the good state of mind, often catch up from behind. At the same time, if you follow some master cards, are generally very carefully, not barking licensing and licensing.
    In two, playing cards to play technology skills to think more
    To play well in three dozen ha card game is easy, as long as the master rules do not one or two hours to learn. However, to really play three dozen ha card game is not an easy thing, more than one day. This requires long-term practice, repeatedly thinking, serious summary. I will now play in three playing cards, in practice, have experience greatly is to grasp the "two guan ":
    It should be a good grasp of the bid. I want a game of cards. Quality is the key. We must first look at the hands of the brand? If the hands of the trumps have more than two pairs, and often the main can also, vice licensing generally have larger dyad, or have a small drag words, this card you can bold play. If the hand 's two or three pair cards, often not much, vice licensing neither point card, and no two pairs, if rob playing, sometimes may win, but it was just luck. In most cases ten nine. For example: I have a friend and play cards, hands on, Wang, and a pair of 7 cards, but too bad not to get success. So bid points called high for good? This called the call is much higher, because each bureau hand is not the same, so you can't lump together. In short, when the hand is a bit better can be called a little higher, if the hand is not good can be called the low point or not bid, this is for each hand, concrete analysis of concrete problems, flexible control.
    Secondly, we should grasp the play off. When you got a good hand, cannot explain you a high level of technology, can only show you a seat position and good luck. If you have a good hand, this is a good beginning, if you don't play were also beaten. If the card is not very good, as long as you are careful to discard or discard, can also battle " or leisure family. The past is an idiom: afraid of " serious " two characters. Why when someone speaks others be absent-minded, even expressions about " pig" and so on, I think is to discard or discard is a bit of a problem.
    In three, playing cards to tell the whole coordination should have team spirit
    Why talk about playing cards to say overall fit, have team spirit? Why don't I will be third major points included in the second points, and specifically included one? This shows that the overall cooperation is important. Speak of here is the main leisure family overall coordination complexes. Particularly for playing three dozen ha licensing leisure home without coordination and spirit hard hit. Three dozen ha card to fight alone, leisure family three should be with the collective as one can defeat. Especially to remind leisure family, must not be selfish, when personal hero. Otherwise, you can't play a few people will do not play with you.
    In short, the above is my play playing card game in three, a bit experience, not necessarily exactly, just for your reference. At the same time, also welcome everybody to master Ni Wensan ha forum, learn together, work together to improve. Thank you.
    ( text by www.liqunqipai.net Liqun chess provided)

    iTunes Store: Invalid, inactive, or illegible codes if you are using a iTunes Gift Card.
    OR
    iTunes Store: My credit card's security code or zip code does not match my bank's records if you are using a Credit / Debit card issued by a bank.

  • The Crew –Racing with Your Coolest MSI Gaming Motherboard and Graphics Card

    Most gaming fans are crazy about racing games, and there is a new game title just launched to fulfill gamers’ dream. We want to share with you the experience from Taiwan user who assembles a rig with a brand new MSI Z97 Gaming 5 motherboard and 960 graphics card, along with a hardware and game (The Crew) benchmarks. You may find the original article from:
    https://forum-tc.msi.com/index.php?topic=113352.0
    The Crew - Launch Trailer
    PC configuration:
    CPU: Intel i5-4670K
    RAM: Avexir DDR3-1600 8G*2
    VGA: MSI GTX960 GAMING 2G
    SSD: Kingston HyberX 3K SSD 240G
    CPU Cooler: SilverStone AR01
    The MSI Z97 Gaming 5 motherboard box
    Overview of the motherboard: Black and Red color scheme, it’s also the favorite color combination from MSI’s user reservation.
    The PCI-E slots and bandwidth are enough for a two-way SLI setting.
    Killer Ethernet, outstanding performance on internet access, especially reduce the lag issue.
    The new arrival MSI GTX960 GAMING 2G graphics card
    New cooling design: ZeroFrozr
    The dragon symbol on LED panel
    With MSI Gaming series motherboard plus graphics card, you can enable a Gaming App to overclock CPU and GPU. There are 3 modes to choose.
    6-month free trail of the XSplit game caster software, free bundled with MSI gaming motherboard and graphics card
    Done with assembling, quiet nice color combination and clean cable arrangement.
    An overview of the very gaming look system.
    Some benchmark results before racing with The Crew.
    CPU and GPU info on CPU-Z and GPU-Z applications:
    3DMark Fire Strike score: 6441
    3DMark Fire Strike Extreme score: 3384
    3DMark Fire Strike Ultra score:1262
    The excel performance proof the brand new 960 graphics card comes with good a high Cost/Performance Value.
    Now, check out this test benchmark score of the renowned game “The Crew”.
    The game presents an ultra-quality display, 60 Frames Per Second (FPS)
    FPS: Average frames is at:
    Frames: 3859 - Time: 76828ms - Avg: 50.229 - Min: 43 - Max: 56
    The comments of the game for your reference:
    There are many types of missions that can be chosen from the America’s map.
    Street racing, high-speed collision, breakaway from police, sky jumps, zigzagging, etc… make the game quite dynamic.
    Now, when it comes to multi-player matches, the performance has exceeded expectations. Perhaps, it is the killer Ethernet that’s working the magic. Thus, this game is highly recommended if you have the right rig.
    The downside is that the display intricacy is not as refined as GTA V and in addition, the game FPS is limited at 60 FPS. However, the overall gaming flow and performance is better than good.
    The user's comment for using MSI Gaming 5 motherboard and 960 graphics card:
    (The following commends are translated from user’s article, does not represent the viewpoint of MSI) ^^
    Recently, MSI GTX 960 just launched so the initial price tag is still adjustable.
    According to the current product line, it seems like this GPU is going to replace 750Ti. So once all the stocks (750Ti) at the store empties, we are most likely to see a price drop on GTX960.
    Once the price hits the sweet spot, it’s time to try out GTX960 SLI’s performance.
    The CP value on MSI GTX960 and GAMING 5 MB is pretty high. But the XSplit software that comes with the product is a bit annoying since the authentication steps are divided into 2 parts to go through for using it.     
    Enough said, anyways, GAME ON!

    NVIDIA 960 card  + GAMING 5 motherboard = best bundle for budget gaming!
    it would be nice to see more testing of hardware-demanding games!

  • Processor and graphics card upgrade for hp dc5100 MT(EF633US)

    Can someone kindly tell me a variety of Intel processors and graphic cards which i can install in my pc coz right now i'm using Intel pentium 4 CPU 2.80 GHz and Intel 82915G/GV/910GL express chipset. but i would like to upgrade to a faster processor and a graphics card which can play games which require large graphic memory (eg FIFA 2013,GTA 5.etc)

    Hi:
    Personally, I wouldn't invest the money to upgrade that PC.
    You would be better off getting an off lease newer dc5800 MT or dc7800/dc7900 model that has a PCIe x16 video slot.
    The killer for your model is you can only install a PCI graphics card.
    Very inefficient and pretty expensive for what you get in return.
    After you install the required microcode update, the best processor I know for sure you can install would be the P4 650.
    Below is the link to the quickspecs.  The supported processors are listed on page 7.
    I do not know of anyone who that has installed the 651 or 661 processors and got them to work--even though the specs state they are supported.
    You can try the 651 or 661 and if you do, please let me know if they worked for you.
    http://h18000.www1.hp.com/products/quickspecs/12145_ca/12145_ca.pdf

  • PSU and Video card upgrade for HP e9280t

    Hello, I wanted to upgrade my PSU and video card. The PSU I would like to get is the SeaSonic S12II 620 Bronze 620W (http://www.newegg.com/Product/Product.aspx?Item=N82E16817151096&Tpk=17-151-096) but I wasn't sure if my computer could handle and hold the PSU. The video card I would like to get is the EVGA 01G-P3-1561-AR GeForce GTX 560 Ti (http://www.newegg.com/Product/Product.aspx?Item=N82E16814130604) but im not sure if my computer can handle this too. I have a HP Pavilion Elite e9280t CTO Desktop PC (http://h10025.www1.hp.com/ewfrf/wc/product?cc=us&lc=en&dlc=en&product=4066665) can someone please tell me if I can upgrade to the PSU and Video card?

    Stuart, welcome to the forum.
    The truth is, any video card that will run properly with the 300W PSU in the computer, will not be much better than the integrated video.  Most newer mid-level cards require a PSU with a minimum of 400W watts.  I have searched for other members many times without any luck.  If you want to upgrade the PSU, it will give you far more options.
    Please click "KUDOS" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • J2me and java card, need help to communicate

    we are trying to put together a reader to read smartcards using j2me and we figure that it would be easiest if we could develop it to work with java cards rather than standard smart cards, the problem is we get garbage when we communicate to it, the chip sends us crap, any suggestions what might be wrong, any calls we might be missing, has anyone worked with j2me and java cards or smart cards, any help would be appreciated.
    einar

    .... reader app and the ME behind it .... smells like mobile ....
    First of all - if you want to have one mobile application running on this just make sure that whatever is written in ME can use drivers from the reader chip ....
    Workin on the PC is something completely different. There was one good example how to develop one host application in Java provided with the JCOP tools long ago ... I don't know if this is now in the new Eclipse tools.
    But - there was a small API provided that can give you good hints what to do - and - once you have it on the reader side - you can easily integrate ME methods with this ...

  • I am trying to add a game to my sons I touch pad. It is a free game. It asks for verification of password and credit card info. Every time, it tells me that my time has expired. Help.

    I am trying to add a game to my sons I touch pad. It is a free game. It asks for verification of password and credit card info. Every time, it tells me that my time has expired. Help.

    It asked me that too.Don't worry and just put it in. Itunes doesn't charge unless your son buys something. The password happens to me all the time. Credit card was only once. Just make sure your son knows not to buy anything without permission so he doesn't accidently charge you something.

  • Unable to find Transfer Rules and Data Source for 0PERSON Info Source

    Hi,
    I'am working on SALES ANALYSIS Configuration with the help of SAP Best Practices.
    I'am trying to load Master Data Attributes/Texts/Hierarchies.
    I'am able to load for allmost all the InfoPackages which i created for particular DataSource.
    Now i need to load master data for 0PERSON InfoObject under that Person (Attributes) and Person (texts) are there,for this 2 Transfer Rules and the DataSource has to be defined by default as it is defined for other Attributes/Texts/Hierarchies.But i'am unable to find a DataSource and Transfer Rules to create a infopackage for PERSON Attributes and Texts.
    Please gudie me with a solution in order to get these Transfer Rules and DataSource for this Attributes and Texts.
    With regards,
    Pradeep.B

    Hi,
    Install the corresponding master data objects from Business content. Go to data source find out the needed datasource, replicate it. If you want you can migrate it also.
    If still you are not getting 0person masterdata object datasource & transformation structure, then you have to create the transformation, Infopackage.
    Hope if you will install the business content again, it will solve your problem.

  • Want to add Video and Graphic Card to my computer system

    I Notice that one of the users' in the Apple discussion Board is Listed, (AndyO) he has help me many times in the Past and was succesful in my problrm solution, would he might be able to help me with this?
    I had Purchased the Game Spore Creature Creator the Starter Kit which is just the Creature creator game and not the actual game itself. I wasn't able to install the the game on my computer because I don't have the right or not at all Video and Graphic Card install on my computer. I had Contacted the Company "EA" that puts out the Game Spore, this is what they said what the game requirements are: The minimum system requirements for Spore and Spore the Galactic Edition for Mac are as follows:
    * Mac OS X 10.5.3 Leopard or higher
    * Intel Core Duo Processor
    * 1024 MB RAM
    * At least 345 MB of hard drive space for installation, plus additional space for created creatures. (260 MB for the Trial Edition)
    * Video Card - ATI X1600 or NVidia 7300 GT with 128 MB of Video RAM, or Intel Integrated GMA X3100
    This game will not run on PowerPC (G3/G4/G5) based Mac systems (PowerMac).
    For computers using built-in graphics chipsets, the game requires at least: an Intel Integrated Chipset GMA X3100 or Dual 2.0GHz CPUs, or 1.7GHz Core 2 Duo, or equivalent
    Supported Video Cards
    ATI Radeon(TM) series
    * X1600, X1900, HD 2400, HD 2600
    NVIDIA GeForce series
    * 7300, 7600, 8600, 8800
    Intel(R) Extreme Graphics
    * GMA X3100
    and that I need to upgrade my system. Basically I need; ATI Radeon 1600 or NVIDIA Geforce 7300 and a INTEL Extreme Graphic Video Card-GMA X3100, in order to be able to install and play this game. Since I already have this game, I would like to be able to upgrade my computer system which brings me to ask; does somone know or refer me to a web site that has and sells these Video and Graphic Card and supports for the Mini Mac?
    Plus they say that I need a 1020 of MB of Ram, I Have already found that 1024 MB of Ram but I just need those Video and Graphic Cards for my computer system. I am adding my computer system Profile to my discussion board to show you what I have on my system, would you be able to tell me if I would be able to add these Video and Graphic card and the memory or Ram 1024 to my computer system?
    Note: Here is a web site that I am looking at to add the 1024 MB of Ram to my computer system:
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=24188 41&CatId=2453
    what do you think?
    Here is part a copy info of my computer system Profile:
    Trisha Foster’s Mac mini
    10/10/08 5:39 PM
    Hardware:
    Hardware Overview:
    Model Name: Mac mini
    Model Identifier: Macmini2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 1 GB
    Bus Speed: 667 MHz
    Boot ROM Version: MM21.009A.B00
    SMC Version: 1.19f2
    Serial Number: YM8073Q**
    Network:
    AirPort:
    Type: AirPort
    Hardware: AirPort
    BSD Device Name: en1
    IPv4 Addresses: 169.254.247.182
    IPv4:
    Addresses: 169.254.247.182
    Configuration Method: DHCP
    Interface Name: en1
    Subnet Masks: 255.255.0.0
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    Ethernet:
    MAC Address: 00:1f:5b:3e:ce:93
    Media Options:
    Media Subtype: Auto Select
    Bluetooth:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: Bluetooth-Modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    FTP Passive Mode: Yes
    Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    IPv4 Addresses: 192.168.1.102
    IPv4:
    Addresses: 192.168.1.102
    Configuration Method: DHCP
    Interface Name: en0
    NetworkSignature: IPv4.Router=192.168.1.1;IPv4.RouterHardwareAddress=00:21:29:c3:12:ae
    Router: 192.168.1.1
    Subnet Masks: 255.255.255.0
    IPv6:
    Configuration Method: Automatic
    DNS:
    Domain Name: cruzio.com
    Server Addresses: 74.220.64.45, 74.220.64.55
    DHCP Server Responses:
    Domain Name: cruzio.com
    Domain Name Servers: 74.220.64.45,74.220.64.55
    Lease Duration (seconds): 0
    DHCP Message Type: 0x05
    Routers: 192.168.1.1
    Server Identifier: 192.168.1.1
    Subnet Mask: 255.255.255.0
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    Ethernet:
    MAC Address: 00:16:cb:af:11:7f
    Media Options: Full Duplex, flow-control
    Media Subtype: 100baseTX
    FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    Ethernet:
    MAC Address: 00:1f:5b:ff:fe:17:17:2a
    Media Options: Full Duplex
    Media Subtype: Auto Select
    Software:
    System Software Overview:
    System Version: Mac OS X 10.5.5 (9F33)
    Kernel Version: Darwin 9.5.0
    Boot Volume: Macintosh HD
    Boot Mode: Normal
    Computer Name: Trisha Foster’s Mac mini
    User Name: Trisha Foster (tiger)
    Time since boot: 59 minutes
    ATA:
    ATA Bus:
    PIONEER DVD-RW DVR-K06:
    Capacity: 423.4 MB
    Model: PIONEER DVD-RW DVR-K06
    Revision: Q614
    Removable Media: Yes
    Detachable Drive: No
    BSD Name: disk2
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    Low Power Polling: Yes
    Mac OS 9 Drivers: No
    Partition Map Type: Unknown
    S.M.A.R.T. status: Not Supported
    Volumes:
    SPORE:
    Capacity: 368.7 MB
    Media Type: CD-ROM
    Writable: No
    File System: ISO Rockridge
    BSD Name: disk2s0
    Mount Point: /Volumes/SPORE
    Audio (Built In):
    Intel High Definition Audio:
    Device ID: 0x83847680
    Audio ID: 8
    Available Devices:
    Headphone:
    Connection: Combo
    Speaker:
    Connection: Internal
    Line In:
    Connection: Combo
    S/P-DIF Out:
    Connection: Combo
    S/P-DIF In:
    Connection: Combo
    Bluetooth:
    Apple Bluetooth Software Version: 2.1.0f17
    Hardware Settings:
    Trisha Foster’s Mac mini:
    Address: 00-1f-5b-72-12-aa
    Manufacturer: Cambridge Silicon Radio
    Firmware Version: 3.1965 (3.1965)
    Bluetooth Power: On
    Discoverable: Yes
    HCI Version: 3 ($3)
    HCI Revision: 1965 ($7ad)
    LMP Version: 3 ($3)
    LMP Subversion: 1965 ($7ad)
    Device Type (Major): Computer
    Device Type (Complete): Macintosh Desktop
    Composite Class Of Device: 3154180 ($302104)
    Device Class (Major): 1 ($1)
    Device Class (Minor): 1 ($1)
    Service Class: 385 ($181)
    Requires Authentication: No
    Services:
    Bluetooth File Transfer:
    Folder other devices can browse: ~/Public
    Requires Authentication: Yes
    State: Enabled
    Bluetooth File Exchange:
    Folder for accepted items: ~/Downloads
    Requires Authentication: No
    When other items are accepted: Ask
    When PIM items are accepted: Ask
    When receiving items: Prompt for each file
    State: Enabled
    Incoming Serial Ports:
    Serial Port 1:
    Name: Bluetooth-PDA-Sync
    RFCOMM Channel: 3
    Requires Authentication: No
    Outgoing Serial Ports:
    Serial Port 1:
    Address:
    Name: Bluetooth-Modem
    RFCOMM Channel: 0
    Requires Authentication: No
    Diagnostics:
    Power On Self-Test:
    Last Run: 10/10/08 4:41 PM
    Result: Passed
    Disc Burning:
    TEAC CD-W540E:
    Firmware Revision: 1.0F
    Interconnect: FireWire
    Burn Support: Yes (Apple Supported Drive)
    Cache: 8192 KB
    Reads DVD: No
    CD-Write: -R, -RW
    Write Strategies: CD-TAO, CD-SAO, CD-Raw
    Media: Insert media and refresh to show available burn speeds
    PIONEER DVD-RW DVR-K06:
    Firmware Revision: Q614
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2000 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -R DL, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media:
    Type: CD-ROM
    Blank: No
    Erasable: No
    Overwritable: No
    Appendable: No
    FireWire:
    FireWire Bus:
    Maximum Speed: Up to 400 Mb/sec
    OXFORD IDE Device LUN 0:
    Manufacturer: Oxford Semiconductor Ltd.
    Model: 0x42A258
    GUID: 0x1D200500648AF
    Maximum Speed: Up to 400 Mb/sec
    Connection Speed: Up to 400 Mb/sec
    Sub-units:
    OXFORD IDE Device LUN 0 Unit:
    Unit Software Version: 0x10483
    Unit Spec ID: 0x609E
    Firmware Revision: 0x444133
    Product Revision Level: 1.0F
    Sub-units:
    OXFORD IDE Device LUN 0 SBP-LUN:
    Graphics/Displays:
    Intel GMA 950:
    Chipset Model: GMA 950
    Type: Display
    Bus: Built-In
    VRAM (Total): 64 MB of shared system memory
    Vendor: Intel (0x8086)
    Device ID: 0x27a2
    Revision ID: 0x0003
    Displays:
    L1916HW:
    Resolution: 1280 x 800 @ 60 Hz
    Depth: 32-bit Color
    Core Image: Hardware Accelerated
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Rotation: Supported
    Memory:
    BANK 0/DIMM0:
    Size: 512 MB
    Type: DDR2 SDRAM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0xAD00000000000000
    Part Number: 0x48594D503536345336344350362D59352020
    Serial Number: 0x0000**
    BANK 1/DIMM1:
    Size: 512 MB
    Type: DDR2 SDRAM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0xAD00000000000000
    Part Number: 0x48594D503536345336344350362D59352020
    Serial Number: 0x00001*
    Power:
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 10
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 10
    Sleep On Power Button: Yes
    Automatic Restart On Power Loss: No
    Wake On LAN: Yes
    Hardware Configuration:
    UPS Installed: No
    Printers:
    Canon MP830:
    Status: Idle
    Print Server: Local
    Driver Version: 4.8.3
    Default: Yes
    URI: usb://Canon/MP830?serial=19702D
    PPD: Canon MP830
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    Serial-ATA:
    Intel ICH7-M AHCI:
    Vendor: Intel
    Product: ICH7-M AHCI
    Speed: 1.5 Gigabit
    Description: AHCI Version 1.10 Supported
    Hitachi HTS541612J9SA00:
    Capacity: 111.79 GB
    Model: Hitachi HTS541612J9SA00
    Revision: SBDAC7MP
    Serial Number: SB2EF9L7G3**
    Native Command Queuing: Yes
    Queue Depth: 32
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk0
    Mac OS 9 Drivers: No
    Partition Map Type: GPT (GUID Partition Table)
    S.M.A.R.T. status: Verified
    Volumes:
    Macintosh HD:
    Capacity: 111.47 GB
    Available: 63.14 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk0s2
    Mount Point: /
    USB:
    USB High-Speed Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBEHCI
    PCI Device ID: 0x27cc
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0xfd
    Keyboard Hub:
    Version: 94.15
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Apple, Inc.
    Product ID: 0x1006
    Serial Number: 000000000000
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB RECEIVER:
    Version: 25.10
    Bus Power (mA): 100
    Speed: Up to 1.5 Mb/sec
    Manufacturer: Logitech
    Product ID: 0xc50e
    Vendor ID: 0x046d
    Apple Keyboard:
    Version: 0.69
    Bus Power (mA): 100
    Speed: Up to 1.5 Mb/sec
    Manufacturer: Apple, Inc
    Product ID: 0x0220
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    iPod:
    Version: 0.01
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Apple Inc.
    Product ID: 0x1291
    Serial Number: aa1186ca1738fd28eef1eeb1b22754********
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB2.0 Hub:
    Version: 7.02
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Product ID: 0x0606
    Vendor ID: 0x05e3
    USB 2.0 3.5" DEVICE:
    Capacity: 153.39 GB
    Removable Media: Yes
    Detachable Drive: Yes
    BSD Name: disk1
    Version: 0.01
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Macpower Technology Co.LTD.
    Mac OS 9 Drivers: Yes
    Partition Map Type: APM (Apple Partition Map)
    Product ID: 0x0073
    Serial Number: BC0*
    S.M.A.R.T. status: Not Supported
    Vendor ID: 0x0dc4
    Volumes:
    miniStack:
    Capacity: 153.26 GB
    Available: 42.96 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk1s10
    Mount Point: /Volumes/miniStack
    MP830:
    Version: 1.15
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Canon
    Product ID: 0x1713
    Serial Number: 197*
    Vendor ID: 0x04a9
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27c8
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x1d
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27c9
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x3d
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27ca
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x5d
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27cb
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x7d
    Bluetooth USB Host Controller:
    Version: 19.65
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple, Inc.
    Product ID: 0x8205
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    IR Receiver:
    Version: 1.10
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple Computer, Inc.
    Product ID: 0x8240
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    AirPort Card:
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme (0x168C, 0x86)
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 1.4.4
    Current Wireless Network: Trisha's iPod
    Wireless Channel: 11
    Firewall:
    Firewall Settings:
    Mode: Allow all incoming connections
    Locations:
    Automatic:
    Active Location: Yes
    Services:
    AirPort:
    Type: IEEE80211
    BSD Device Name: en1
    Hardware (MAC) Address: 00:1f:5b:3e:ce:93
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    IEEE80211:
    Join Mode: Automatic
    JoinModeFallback: Prompt
    PowerEnabled: 1
    PreferredNetworks:
    SecurityType: Open
    SSID_STR: Apple Store
    Unique Network ID: 4BCBEE2D-83B9-4CC1-B110-8D0E8E5DF49C
    SecurityType: Open
    SSID_STR: linksys
    Unique Network ID: F2551FD6-95A7-4F98-9F7F-758A89DBD931
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    FTP Passive Mode: Yes
    PPP:
    ACSP Enabled: No
    Display Terminal Window: No
    Redial Count: 1
    Redial Enabled: Yes
    Redial Interval: 5
    Use Terminal Script: No
    Dial On Demand: No
    Disconnect On Fast User Switch: Yes
    Disconnect On Idle: Yes
    Disconnect On Idle Time: 600
    Disconnect On Logout: Yes
    Disconnect On Sleep: Yes
    Idle Reminder: No
    Idle Reminder Time: 1800
    IPCP Compression VJ: Yes
    LCP Echo Enabled: No
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: No
    Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:16:cb:af:11:7f
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:1f:5b:ff:fe:17:17:2a
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Exceptions List: *.local, 169.254/16
    Can someone Please help me with any suggestions or otherwisde I will have to go to a Apple store and ask for help there.
    Thank You,
    Trisha Foster
    <Edited by Moderator>

    Hi Trisha,
    The only modern Mac's with video cards are the Mac Pro and Xserve (server) systems. They both are priced quite a bit higher than any Mac Mini.
    Some systems, like the Mac Book Pro laptop can be ordered with different graphics cards, but that has be done when the system is built, as it is not replaceable once the system is built. To find out which systems, go to store.apple.com. For each system that you select, you can see if there's an option for a better video card.
    David

  • Set up rule and lost mail!

    I thought I was doing a 'good' thing when I set up a rule in Mail that said if the email address does not contain my exact email address, please move it to the junk folder. I set it up for both my cable company's email address and for my Mac address. Went back into Mail- all messages gone from both accounts!! Wiped out. So I went back into Rules and removed both rules. The Mac mail reappeared but my cable company emails did NOT reappear. Now I can probably recover them cuz I back up every morning but since the backup this morning, of course I have gotten some emails which did not get backed up. What happened?! Where did they go? Can I get them back? Ugh! Judy

    I tried rebuilding the mailbox and that didn't help. Judy

  • I stopped using iCloud after another family member received all my contacts. Now I want to restart using iCloud. How do I prevent this happening again? We share the same Apple id password and credit card but different usernames.

    I stopped using iCloud after another family member received all my contacts. Now I want to restart using iCloud. How do I prevent this happening again? We share the same Apple id password and credit card but different usernames.

    If two of you shared the same contacts you were logged in with the same Apple ID. In order to avoid this you need to use different Apple IDs, and be using separate Macs or separate user accounts on the same Mac.
    One or other of you should create a new Apple ID at http://appleid.apple.com for which you will need a non-Apple email address which hasn't been associated with another Apple ID.

  • HT204053 We have two Iphone 4S but we set each one up with different accounts, how can we share purchased or downloaded music from and iTunes card without purchasing twp different cards?

    We have two Iphone 4s with different accounts, what would we need to do to share music from and Itune card if one of us purchased and the other did not?

    Put all of the music on the computer(s) to which you sync, then sync to your idevices

Maybe you are looking for

  • How to upload size 4k file to oracle BLOB field

    hi all, i'm using Oracle 9i, Orcale JDBC thin Driver and ibm websphere to develop a java application.i have used java EJB/CMP to insert images into BLOB field in oracle. i used byte[] mapping to BLOB.i did it successfully. however, i'm facing another

  • Discoloration in display

    Anyone having a problem like this with a 24" cinema display?  It first turns on looking perfect, after a few minutes, this starts to appear and gets worse.  The picture below is after a few hours of being on.  Doesn't matter which laptop or OS I use,

  • Creating war file

    Hi I have tomcat project created in eclipse IDE. can anyone tell me how to create war file for my tomcat project Thanks sneha

  • Is there a known issue with windows 8 supporting itunes?

    each time I update itunes I lose my itunes store connection and therefore can't update apps etc. Is this a known issue with windows 8 users?

  • X-Fi not being recogni

    I bought an X-Fi yesterday with a 5. speaker set up, only the X-Fi is not being recognized. it is an X-Fi Xtreme music, i put it in my PCI slot, space away from my graphics card, and it is connected to the power supply in a 4 pronged slot. It is not