Stability Issues (Freezes) and Mount SWAP Partition during Boot

Hi,
i'm having the following 2 Issues:
1. Stability issues, The System freezes randomly an i have no hint to get rid of the freezes.
2. At bootyp the Swap Partition won't be mounted. If the bootup ist completet and i type "swapon -a" - everything ist ok
Because i'm a Newbie - i don't know how i could get rid of these Problems.
If you can tell me what i could try or what i schould check - please tell me.
thx
sash

karol wrote:Define 'freeze'. For how long, what were you doing at that time, does systemd's journal, htop or iotop show what could be the cause, do you have to reboot to make it go away?
Post your /etc/fstab.
thx for you answer. I think i have to explain what i mean with "freeze" --> the pc isn't responding, that mean - no key input, no ssh responding. The PC has noch Graphical interface, only console and is uptodate and acts at home as my "server" thats why i cant say what it is exactly doing.
I think the only way is to get all log-files and search for the issue - what logs do i have to check?
How could i check why my swap partition couldn't be activatet at startup, but after login and "swapon -a" everything is fine?
uname -a
Linux server 3.15.9-2-ck #1 SMP PREEMPT Fri Aug 8 03:02:21 EDT 2014 x86_64 GNU/Linux
/etc/fstab:
# UUID=0eb5dbfa-94af-4614-ab65-f223bc367b81 LABEL=Arch
/dev/mapper/enc-sda2 / btrfs rw,relatime,ssd,discard,space_cache,compress,subvol=__active 0 0
# /dev/mapper/enc-sda2 / btrfs rw,relatime,ssd,discard,space_cache,compress,subvol=__active 0 0
# UUID=7ff9cb11-3931-42c8-9987-d0512c50a26e LABEL=boot
/dev/sda1 /boot ext4 rw,relatime,data=ordered 0 2
# 640GB SWD Blue
/dev/mapper/enc-sdb1 /mnt/data1 btrfs rw,relatime,compress,autodefrag,subvol=data1 0 0
/dev/mapper/enc-sdb1 /mnt/timemachine btrfs rw,relatime,compress,autodefrag,subvol=timemachine 0 0
# 1TB
/dev/mapper/enc-sdc1 /mnt/data2 btrfs rw,relatime,space_cache,compress,autodefrag,subvol=data2 0 0
# 2TB
/dev/mapper/enc-sdd1 /mnt/backup btrfs rw,relatime,space_cache,compress,autodefrag,subvol=__active 0 0
# UUID=b9855c07-c383-42d0-b30f-ab3bfc60c8be LABEL=swap
/dev/mapper/enc-sda3 none swap defaults,discard 0 0
/etc/crypttab
enc-sda2 /dev/sda2 /root/key/root.key
enc-sda3 /dev/sda3 /root/key/root.key swap
enc-sdb1 /dev/sdb1 /root/key/root.key
enc-sdc1 /dev/sdc1 /root/key/root.key
enc-sdd1 /dev/sdd1 /root/key/root.key
And i decrypt my /root partition with a key on my usb-stick at boot-time.
Last edited by arch-sash (2014-08-10 15:05:06)

Similar Messages

  • Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use

    Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use. I have uninstalled/re installed twice, cleaned system, adjusted Bridge settings with no change. And I have found no helpful troublshooting tips in forum or on web.

    Does it freeze with other type of cards.  Have seem some post that suggest an imbedded CODEC on the flash card can cause file corruption in Bridge and Mac Finder.
    To access the crash log it is officially called the event log.  To access us OS Help. 

  • Freezes and restarts some times during the day

    In March 2014 I bought a nokia lumia white icon Verizon Microsoft Store in Orlando, I live in Brazil so I'm using the unit in a Brazilian company, so I do not own a Verizon number. He's presenting problem, freezes and restarts some times during the day, as did the recovery and all other procedures that read on the subject, the problem was not resolved. I would like to inform me how do I change the device since it will be going back to the U.S. next month per 10 days, he is still within the warranty period of 12 months.
    Thank you very much.

    hi mate, as we are a user to user forum only for Nokia products and services, we don't have that kind of information on hand. you will need to liaise with Verizon directly.
    however, have you checked that your nanoSIM card is cut correctly, and also that you are up to date with the latest firmware for the device, along with the latest Nokia system app updates from the Store? also try performing a soft reset.

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

  • How to mount and use swap partition _only_ for hibernation ?

    By "hibernation" I mean suspend to disk.
    My disk is a bit poor in RAM and the dirsk is slow, so I want to prevent any swap use of my system.
    AND I want to use hibernation, in order to boot fatser... and not to loose my workspace state.
    With a swap partition, hibernation works nicely.
    But any intensive web browser easily lealds to incresed memory usage, hence swap use.
    I have lowered the swap priority in /etc/fstab, down to 1 (and even tried 0).
    Still, I am not satisfied : If would like not to use swap at all but for hibernation.
    My plan was hence :
    1) disable the automatic swap mount at boot
    2) add a systemd unit to only moutn before hibernation
    The first part was easy : I added a "noauto" option in /etc/fstab. Great, no more mounted swap. But, as expected, no more successful hibernation.
    Then I tried to create a custom systemd unit.
    - first copy the unit file automatically generated by systemd in /run/systemd/generator/dev-....swap to /etc/systemd/system/
    - and add "Before=sleep.target" line in the Unit section
    Result file here :
    > cat /etc/systemd/system/dev-disk-by\x2duuid-blablablabla.swap
    [Unit]
    Description=Swap required for hibernation
    Before=sleep.target
    [Swap]
    What=/dev/disk/by-uuid/blablablablabla
    Priority=5
    >
    Next step show be to enable it, but I first run a safety check :
    > systemctl show dev-disk-by\x2duuid-blablablabla.swap
    Id=dev-disk-by\x2duuid-blablablabla.swap
    Names=dev-disk-by\x2duuid-blablablabla.swap
    Requires=-.mount
    Wants=system.slice
    BindsTo=dev-disk-by\x2duuid-blablablabla.device
    RequiredBy=swap.target
    WantedBy=dev-disk-by\x2duuid-blablablabla.device
    Conflicts=umount.target
    Before=sleep.target umount.target swap.target
    After=systemd-journald.socket dev-disk-by\x2duuid-blablablabla.device system.slice -.mount
    RequiresMountsFor=/dev/disk/by-uuid/blablablabla
    Description=Swap required for hibernation
    LoadState=loaded
    ActiveState=inactive
    SubState=dead
    FragmentPath=/etc/systemd/system/dev-disk-by\x2duuid-blablablabla.swap
    UnitFileState=static
    InactiveExitTimestampMonotonic=0
    ActiveEnterTimestampMonotonic=0
    ActiveExitTimestampMonotonic=0
    InactiveEnterTimestampMonotonic=0
    CanStart=yes
    CanStop=yes
    CanReload=no
    CanIsolate=no
    StopWhenUnneeded=no
    RefuseManualStart=no
    RefuseManualStop=no
    AllowIsolate=no
    DefaultDependencies=yes
    >
    The problem here is that, somehow, a RequiredBy=swap.target line is apaprently automatically added, and makes exactly NOT what I want.
    I've been battling a bit with systemd, but so far I have no clue how to do this correctly.
    Important : I wand a clean "official" way, not to do a "service" unit that calls an home-brewed script taht calls swapon. I can do that, but systemd should be able to do it better than me, and without any trick.

    Hello and thank you all
    @fdservices & @WonderWoofy :
    In fact, I forgot to mentionned swappiness, just tought about mentionneing the swap priority which act at a very different level is only revelevant when you ahve several swap files.
    I have already modified that setting since quite a long time... and it indeed makes the system behaviour so much better.
    Honestly, I could do with it... that's what I am doing since a few months in fact, and it really largely improved the user experience.
    Still, the setting only makes swapping unlikely, but does not forbid it.
    @WonderWoofy & @lucke :
    You may be right, I could satisfy with swapiness...
    Still, my feeling is that swap at run-time is mostly a remeniscence of the time where having several megabytes of RAM was juste a fantasm. At that time, at least for some intensive operations, simulating more RAM thansk to the cheaper & slower disk capacity was really decisive for a good user experience... and to allow some operations like some huge compilations. My feeling is that today, with our Gigabytes of RAM on our desktop/laptop, the need is much lower. In fact a swap is probably counter-productive for SSD for example (fast, yes, but swap is by nature something you write quite often, reducing teh SSD lifetime significantly). And simulating extra RAM is also counter-productive with applications such as web browsers which handle large amount of memory to handle cache themselves; it causes memory pressure, hence trigger swapping and machien slowdown instead of trigerring their pseudo-smart memory cleaning mechanisms. Last but not least, it does not encourage any improvement on application memory needs and rationalisation.
    In fact, unless when I compile huge programs, or on really-limited-memory (embedded) systems, or eventually if swap can be hosted on significantly faster-than-storage disks, I feel that swapping does not really improve the user experience and system performance... and in contrary reduces them by having to handle swapping on and off memory & cache pages.
    SO that's why I want to try. It's OK if I fail, swappinees fixes most my user experience issue, but I try to solve my more "theorical" issue as well.
    And honestly, it is also to lean & play a bit with systemd as well.
    More to come, I have things partially working now. Partially for now, and maybe perfectly with your help ?

  • How to Mount Swap Partition

    I have a secondary disk (duplicated via rsync) that failed. I had to rebuild some of the partitions and now need to mount them. I could uncomment the vfstab entries and reboot (see below), but would rather just issue the mount command. On the "regular" partitions, the "mount /dev/dsk/c1t1d0s0 /backup", etc. is no problem, but since the swap partition isn't /swap, how would I mount it?
    root: cat /etc/vfstab
    #device         device          mount           FS      fsck    mount   mount
    #to mount       to fsck         point           type    pass    at boot options
    fd      -       /dev/fd fd      -       no      -
    /proc   -       /proc   proc    -       no      -
    /dev/dsk/c1t0d0s1       -       -       swap    -       no      -
    /dev/dsk/c1t0d0s0       /dev/rdsk/c1t0d0s0      /       ufs     1       no      -
    /dev/dsk/c1t0d0s3       /dev/rdsk/c1t0d0s3      /var    ufs     1       no      -
    /dev/dsk/c1t0d0s7       /dev/rdsk/c1t0d0s7      /export/home    ufs     2       yes     -
    /devices        -       /devices        devfs   -       no      -
    sharefs -       /etc/dfs/sharetab       sharefs -       no      -
    ctfs    -       /system/contract        ctfs    -       no      -
    objfs   -       /system/object  objfs   -       no      -
    swap    -       /tmp    tmpfs   -       yes     -
    #/dev/dsk/c1t1d0s7      /dev/rdsk/c1t1d0s7      /disk2  ufs     2       yes     -
    #/dev/dsk/c1t1d0s1      -       -       swap    -       no      -
    #/dev/dsk/c1t1d0s0      /dev/rdsk/c1t1d0s0      /backup         ufs     2       yes     -
    #/dev/dsk/c1t1d0s3      /dev/rdsk/c1t1d0s3      /backup/var     ufs     2       yes     -

    System administration and common solutions under Linux and Solaris are not the same. You might rather want to post your question in the appropriate forum Solaris 10

  • Mounting ntfs partitions at boot up read only and starting X at boot

    Hi,
    I want to mount my windos partition at boot so I can build a library in amarok without having to copy all of my music to my linux partition. However I only want to mount read only, as I don't want to risk messing the partition up. I followed the instructions on the wiki here:
    http://wiki.archlinux.org/index.php/NTFS_Write_Support
    And added a line in /etc/fstab "/dev/sda1 /mnt/sda1 ntfs-3g uid=1000,gid=100,fmask=0333,dmask=0333,locale=en_PH.utf8 0 0" without quotations, but the partition was not mounted so I removed the line and now am back to my original /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    /dev/cdrom /mnt/cd iso9660 ro,user,noauto,unhide 0 0
    /dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
    /dev/fd0 /mnt/fl vfat user,noauto 0 0
    /dev/sda2 swap swap defaults 0 0
    /dev/sda3 / ext3 defaults 0 1
    I thought that I should change the numbers to 0 3 or something but I don't have a clue what they are for, could anyone offer any advice on how I should proceed?
    Also X refuses to load at boot, I have to log in as root and run /etc/rc.d/kdm start. I have put kdm in /etc/rc.d and I changed my /etc/inittab default runlevel from 3 to 5. I tried also changing the login manager from xdm to kdm in the same file but nothing ahs made a difference. Anyone have any ideas?
    Thanks in advance,
    Calef13

    Thanks a lot for the speedy replies, this is a great community here btw, very helpful. You were right mixtr, I got away with just
    "/dev/sda1/ /mnt/sda1 ntfs-3g user,ro,auto 0 0"
    And adding kdm to the deamons line solved my problem. I was trying to add it to the rc.d file rather than the rc.conf
    I had my doubts at first but I really like the fact that arch doesn't hold your hand and leaves everything up to you, I have already learned loads about the config files for linux among many other things and have come ot appreciate the lack of abstraction in arch. I really prefer this to previous OSes, but wish I had installed kdemod as the 'vanilla' kde from the repositories installs pretty much everything imaginable, but my system still runs very quickly.
    Calef13

  • Nokia E7 freezing and needing to be re-booted dail...

    Hi.My E7 keeps freezing and needs re booting.It's been re flashed at the Nokia Care Point and has been back to Nokia themselves.I have installed every update available including Anna.Still the problem persists.
     The problem occurs mostly after the phone has been on standby overnight.Upon waking the screen and performing a few tasks it freezes.Also when trying to open the camera function it often jams.Furthermore it seems to be at it's worst when slightly cooler than normal (perhaps why it's worst on a morning,having been left out of my pocket overnight.
     Anybody got any ideas? It's all very well saying 'return it to the N.C.P' but how many times do i need to go? I have been twice already and it's an 80 mile round trip!!!

    I agree that you should push the point if the visits to Nokia care haven't resoved your issues. But , even though it shouldn't be necessary after a re-flash, it may be worth doing a reset before you try anything else, it could resolve the issues, and if not , you've lost nothing, If it doesn't work, you need to approach Nokia for a replacement  ?
    If you try the reset, backup calendar, contacts and notes ONLY, as a full backup and restore would restore anything causing your issue ! Dial *#7370# followed by 12345 if required, and then set up the phone manually. May also be worth re-installing Anna ?
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Data sharing between OSX and WinXP/Vista partition in boot camp

    Due to software and external hardware issues, i need to revert back to an XP/Vista setup but would like to keep 1 computer to minimise having multiple copies/versions of data e.g. music, video, photos and office related docs.
    If i perform a boot camp install, will the following scenarios work?
    1) Have 1 large OSX partition which will store all my data. Will WinXP be able to read/write/delete data on the OSX partition
    2) Have 1 large WinXP partition which will store all my data. Will OSX be able to read/write/delete data on the WinXP partition (Assuming i have the NTFS-3g software installed)
    3) Have 1 (for arguments sake) 30GB OSX, 1 30GB WinXP and a third partition formatted as NTFS to hold my data.
    Scenario 3 would appear to be the most sensible option as it keeps data away from the OSess so if i loose one, the data will be intact regardless.
    Which brings me to my final question:
    If i have to reinstall OSX, would i loose the WinXP partition in the process?
    Many thanks!

    Along with MacFUSE, take a look at MacDrive7 for Windows to read/write to HFS Extended volumes.
    WinClone to backup Windows XP/Vista
    Reinstall or restore? either way, and you really should never need to reinstall if you take an hour to backup (clone) or use TimeMachine (or combination of both).
    I think Boot Camp Assistant is far too much of one-way only in not allowing or supporting more than one partition for OS X and one for Windows.
    You can shrink OS X volume and create a partition out of free space. Or you can shrink Windows Vista (probably XP also) and partition that (but that can confuse OS X startup disk or boot manager "Option key.").
    MacFUSE has had the side effect of making "Windows" volume not show up in OS X Startup Disk also.
    I'd say MacDrive7 is your best bet without requiring an external drive (but do have one or two for your backups).

  • Can't partition during Boot Camp for Windows 8?

    I am trying to install Windows 8 on my early/mid-2011 MacBook Pro. I am using the Boot Camp Installation & Setup Guide, but when I get to the area of partitioning the hard drive, I am choosing around 60GB and clicking next. After a minute or so, it is telling me that this drive cannot be partitioned?
    I am not as savvy on the Mac as PC (switched from the Dark Side in early 2011), so I was wondering if the MacBook hard drive needs degragmented so that

    jak9498 wrote:
    I am trying to install Windows 8 on my early/mid-2011 MacBook Pro. I am using the Boot Camp Installation & Setup Guide, but when I get to the area of partitioning the hard drive, I am choosing around 60GB and clicking next. After a minute or so, it is telling me that this drive cannot be partitioned?
    Backup your user data files off the machine to a storage drive (not only TimeMachine as it might fail to restore) and disconnect everything else.
    Reboot the computer and hold command option r keys down (wired or built in keyboard) on a Ethernet conection to your router or modem (power off/on modem to reset) use Disk Utility there to Repair your internal drive.
    Reboot the machine normally.
    Use Disk Utility and select the internal Macintosh HD partition, then click Erase Free Space (Zero) and move the slider one space to the right and Erase. You can't erase the entire Macintosh HD while booted from it, so your data is safe, this will only erase the FREE space. This will take some time so let it complete.
    Next head to BootCamp and attempt to partition again, if it fails, then see this User Tip of mine to shift OS X data up.
    BootCamp: "This disc can not be partitioned/impossible to move files."
    If your still having problems, it's likely a bad drive and or a gltich in the 10.8.3
    ..Step by Step to fix your Mac

  • How to not mount a partition at boot?

    Hello,
    I have read a solution here for the question above but it seems to be not working for me on my MBP 8.1 with OS X 10.8.2 (12C60)
    I have a partition formatted to Mac OSX (Journaled, Encrypted) so my system prompts me for its password to unlock the partition at boot.
    I'd like my system to don't attempt unlocking the partition at boot, but do it only when I open Disk Utility and click unlock.
    So I created the /etc/fstab file as instructed in the topic I mentioned above. No effect at all. My system still keeps attempting to unlock the partition and prompts for the partition's password.
    Perhaps I've missed something? Perhaps it does not work because the partition is encrypted?
    Thx

    According to this thread :
    Go to /System/Library/CoreServices/SecurityAgentPlugins/
    and remove the item DiskUnlock.bundle i.e. take it from that folder and store it somewhere safe, in case you need to add it back.
    Restart et voila. No more prompting.
    and/or
    Run in Terminal:
    sudo mkdir -p /System/Library/LaunchDaemons.Disabled
    sudo mv /System/Library/LaunchDaemons/com.apple.corestorage.corestoraged.plist /System/Library/LaunchDaemons.Disabled/com.apple.corestorage.corestoraged.plist
    /Johan

  • My macbook pro screen keeps freezing and i have to re-boot its only a month old

    My computer  screen keeps freezing and i have to reboot it  . The notebook is only a month old .. Someone elsewhere suggested  command p and r  but i dont understand . Can you help ??

    Reset PRAM
    Click this link below.
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh26871.html
    Try Reset  SMC
    http://support.apple.com/kb/HT3964
    Your machine is only 1 month old. You are eligible for 90 days of free tech support from Apple.
    Your machine is under warranty for 1 year.
    It is best to call Apple 1-800-275-2273 and get it fixed.
    Best.

  • Time Capsule issue with backing up Windows partition via Boot Camp

    I just bought the macbook pro and time capsule. I set up a 25GB Windows partition using Boot Camp and I have set up a Time Capsule to handle the backups. Time Capsule seems to backup the OSX hard drive partition fine, with the historical versions of the drive displayed correctly. However, with the Windows partition the Time Capsule appears to be backing up any files that change, however there is no version control showing up in Time Machine. In other words, I ONLY see the Windows partitioned drive as backed up in the "Today (Now)" screen. Any historical dates the drive shows up shaded and I cannot access it. Is there a way for Time Machine to manage the Windows partition in the same way as it does for MAC OSX drives?
    John

    Why is it so hard?
    1000 and 1 times: the drive must have FREE contiguous unfragmented space and some files are blocking and preventing.
    Some are able to find and delete, some by booting from another hard drive or OS X DVD to repair and/or run iDefrag.
    Or.... backup; erase; and restore.
    ie, CLONE your hard drive in both directions. My choice would be SuperDuper or Carbon Copy Cloner. They tend to work. Defrag tends to be slow and if there is no backup and there is an error.... well, you'll find out.
    Apple error message is badly and poorly worded. Said so for over 3 yrs and it has not changed or improved though.
    Paragon CampTune 9.5 $19 is great for Boot Camp. And resizing. And Windows 7 may need 2 or 3x what the base minimums listed. 32-48GB at least to be safe. And those are conservative numbers.

  • Build-in webcam issue: how to turn it off during boot-up?

    Hi,
    I have a laptop - Asus K52J & x86_64 - with a built-in webcam. During boot-up, the webcam turns on in - rough guess - 50% of the time. I don't find any obvious pattern when/why the webcam turns on.
    Searching this forum/internet doesn't give me a good answer...
    1/ I prefer a solution where the webcam is turned off on boot and where I can turn it on when necessary.
    2/ I can afford to disable the webcam when running linux.
    3/ Disabling in BIOS (often given solution) is not an option.
    For 1/, the only solution I got was running following and closing mplayer window. This turns off the webcam, but this is not an efficient manner. Is there another software-based work-around?
    mplayer tv:// -tv driver=v4l2:device=/dev/video0
    For 2/ I hear blacklisting the module is the solution. But how do I find the correct module?
    lsmod
    gives a whole list (pastebin).
    Is it videodev and/or v4l2_compat_ioctl32? How can I be sure? Any advice on this for other users with other laptops?
    Thanks for any help on advance!
    Kind regards,
      davidbe

    Your webcam uses the uvcvideo module so blacklist that one in /etc/rc.conf.

  • MBP 15" early 2011 (MacBookPro8,2) - freeze and 3 beeps after normal boot

    Good day.
    Month ago I upgraded memory in my MBP early 2011. I bought 2 banks of 4GB Hynix 1333 Mhz(MBP had 2x2GB Hynix banks), installed them and got the first hard freeze with 3 beeps right on the login screen. Since then I got somethink like 15-20 freezes with intervals from 3-4 hours to 1 week and total silence in logs and diagnostic reports.
    Note: it boots fine, and freeze occurs during work.
    I'm sure it's not a RAM issue because it was tested countless times with AHT, Rember, memtest runned from single user boot, even ASD — all tests passed.
    I tried to reproduce the error using Prime95 stress tests, but with no luck — MBP successfully passed 6 hours stress test under 100% CPU and RAM load.
    Today MBP freezed 2 times with locked screen and without user activity. Any suggestions?
    Additional info:
    dmesg - https://gist.github.com/7d3804d11bef38090345
    latest log entries right before freeze - https://gist.github.com/c66eaa8c3b08c08c6656
    P.S. I'm from Russia, so we don't have AppleCare, only AASPs without needed replacement parts. Also they asks for valid proof of purchase and don't care about Apple ID, serials and stuff.

    yumitsu,
    3 beeps MEANS its a RAM problem or RAM related problem. There is no doubt about this. Make sure RAM is seated properly. Reseat it if necessary. Also make sure that the DIMM slots don't feel loose as a slight jolt is probably enough to dislodge RAM and make your machine expererience these issues.
    Have you tried putting back the original 2 x 2GB RAM that originally shipped with your machine back? If everything starts working normally with the original RAM, then you isolated the issue to the 2 x 4GB Hynix RAM.

Maybe you are looking for

  • How to change the color to  JScroollBar?

    Hi All      I have a applet with his look an feel set to Metal, in the applet I used a JScrollPane but I need to change the color only to the ScrollBar. But I don not how. Can anybody can tell mi how to do this I will appreciate your response

  • Oracle XQuery performance issue in XMLType column

    Dear All, As for oracle I'm using oracle 11g to measure the performance. I'm using data from XMark project which is a >100MB data of XML for bencmarking purposes. I make a table that contains an XMLType column and upload the data into that column, af

  • CRM / BW SURVEY

    Dear friends, This question is related to CRM survey and i have created a new survey questionire in CRM_SURVEY_SUITE , CALL BACK TO PAI --> CRM_SVY_S_PAI and i have checked the evolution in Business information warehouse. what is the purpose of that

  • Resizine image for drop zone

    Hi. I have an image I want in a drop zone (Drive-in 2), but no matter how many times I scale it down, it still won't show the whole image on the drive-in screen. In fact, it seems to be showing the exact same portion of the image each time. Could any

  • TV show downloading error

    How do I clear my download cache for tv show that seem to be stuck in downloading error, go to Purchased and it says Downloaded