How do increase the file system size

Hi friends,
My newly installed solaris 10 system shows Filesysem full error.
By mistake space allocated for Root is very less and 98% of the space in Root is consumed.
Do i need to restructure entire filesystem or increase space in Root would be sufficient..?
Its 160 GB Harddisk on Intel Core 2 duo. What is the best allocation for the same.
I am very new to Solaris. Trying to learn how does Opensource OS works...
Pls help me
Regards
Bijoy

If you have more drive space you can mount more space and allocate it to a mount point--this may take care of your problem, but if you are out of space and you are not buying any more drives.... then it's time for the install disks to come back out and configure more appropriately to your use.
I have my work machine at home on a x64 AMD with 120 GB of drive. I gave 40 GB to Solaris just to be sure I could do basic installations and grow a little.
Once your allocation is full you have 2 options... buy more and mount it, or reinstall... you choose.
Well, there is a 3rd... you could unmount one of the other allocations and split it, then mount some of it back to your OS and some back to what it was before, but you are going to be plagued with this your entire lifetime of that install.

Similar Messages

  • Setting the file system size for the emulator

    Hi,
    I am trying to set the file system size of the emulator so I can test what happens when the system is full and I try to write to the file system. I am using WTK 2.5.1 and I went into preferences -> storage and set Storage size to 10KB. But when I run the emulator and check the available size of the root directories using:
    try {
             Enumeration roots = FileSystemRegistry.listRoots();
             while (roots.hasMoreElements()) {
                String dir = (String) roots.nextElement();
                FileConnection fc = (FileConnection) Connector.open( "file:///" + dir );
                System.out.println( "Available Size on " + dir + " : "+ fc.availableSize());
                fc.close();
          } catch ( IOException ex ) {
             ex.printStackTrace();
    }I get the remaining size of my pc's hard drive, not what is remaining from the 10KB I set.
    Can you tell me the correct way to do this? I don't want to fill up my pc's hard drive in order to test this!!

    Has anyone got an answer to this?

  • How to extend the file system?

    hello experts,
                             how to check wether file system is full?and how to extend the file system?

    Hi,
    You can check whether your file system occupancy using Unix level command df -k.
    how to extend the file system?
    Whats the OS platform you working upon and need to extend the file system. Based on individual OS platform commands may vary.
    Regards,
    Deepak Kori

  • How to increase the files picked up by File Adaptor per poll interval

    Hi,
    We have a scenario where in we post 80 files in the source directory and and the file adapter is configured for every 300 sec but i have noticed that the File adaptor is picking up one or two files per poll interval.Can some please suggest how to increase the number of files picked up by File adaptor
    Thank You,
    Nandini

    Nandini:
    Did you mention all the files names in the Adapter channel. One thing you can do is use wild cards and file adapter picks most of them
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter
    In case if your files are huge, then I guess file size may cause to process few files during each poll

  • Regarding increasing root file system size

    Hi folks,
    I need urgent help regarding increasing the rool file system size from 40gb to 72 gb by decreasing swap from 64gb to 32gb with out any loss.
    please find the current partiton config:
    Part Tag Flag Cylinders Size Blocks
    0 root wm 6595 - 10787 40.69GB (4193/0/0) 85335936
    1 swap wm 2 - 6594 64.00GB (6595/0/0) 134221440
    2 backup wm 0 - 14086 136.71GB (14087/0/0) 286698624
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 10788 - 14050 32.01GB (3298/0/0) 67120896
    6 unassigned wm 0 0 (0/0/0) 0
    7 unassigned wm 0 0 (0/0/0) 0
    i need to change this like below.
    Part Tag Flag Cylinders Size Blocks
    0 root wm 3299 - 10787 72.69GB (4193/0/0) 152446656
    1 swap wm 2 - 3298 32.00GB (3298/0/0) 67110720
    2 backup wm 0 - 14086 136.71GB (14087/0/0) 286698624
    3 unassigned wm 0 0 (0/0/0) 0
    4 unassigned wm 0 0 (0/0/0) 0
    5 unassigned wm 10788 - 14086 32.01GB (3298/0/0) 67120896
    6 unassigned wm 0 0 (0/0/0) 0
    7 unassigned wm 0 0 (0/0/0) 0
    kin dlyhelp me on this....
    Thanks in advance,
    Prathap

    Sorry, can't be done.
    If it was any other filesystem than root, you could do by using SVM.
    But root filesystems can't be stripes or concats. Only simple mirrors.
    So SVM isnt going to work.
    If the spare space was after the partiton. You might have been able to do it by the "dirty" method of manually expanding the partition and using
    growfs to expand it. You would have had to do it by netbooting or cd booting since growfs can't be used on the current root.
    But in any case, you can't do that either since the space if before the partition not after it.
    So, reinstalling is your only option..
    Well, If you have a spare disk, you might be able to copy the filesystem over to a larger partition on the other disk, growfs it and boot off that instead.
    You'd want to try it on a test systen first...

  • How to increase the Java Heap size ?

    Hi
    I am new to java. I have created a java application and i configured in Eclipse. While running my application it throws an error that
    "Exception in thread "Thread-21" java.lang.OutOfMemoryError: Java heap space"
    i have used threads in my application. Then i searched some forums regarding this. The answer i got is "Increase the java heap size" using
    "java -Xms64m -Xmx256m prog" in command prompt. while running.
    But i am not running my application in command prompt. I used Eclipse to run my application. Here my ultimate question is how to set the heap size while running the application in Eclipse and where to set in Eclipse.
    Kindly help me.
    Regards
    Ramesh E

    i have used 20 threads to extract the datas
    Then parallel i am starting one more thread to process the data. Means that i am starting 21st thread. In thread is throwing the error.
    20 threads:
    for (int i = 0; i < 20; i++) {
    try{
    extrThreads[i] = new Thread(this);
    extrThreads.start();
    }catch (Exception e) {
    System.out.println(e);
    21st Thread:
    public void processdata()throws Exception{
    Thread t = new Thread(this);
    t.start();
    if(t!= null)
    t.join();
    funtion();
    This thread is throwing the error

  • How to determine the file system on Solaris

    Friends,
    How to determine which file system I have installed UFS or ZFS on Solaris
    Thanks

    Other methods would include looking at the /etc/vfstab if it's in there or fstyp(1M):
    System Administration Commands fstyp(1M)
    NAME
    fstyp - determine file system type
    SYNOPSIS
    fstyp [-a | -v] special [:logical-drive]

  • How to increase the .avi movie size in Encore.

    Hi
    I have imported the .avi assets from PE4. When I playbacked the movie in Encore DVD 2.0, I found the picture size is too small so I want to increase the height of the picture. I tried using the scale up botton in motion option but it didn't work. After I scaled it up, the movie got a little blurry and delayed the audio.
    Please anyone have any idea how to do that. I'd be greatly appreciated.
    Thanks,
    Bank

    Bank,
    This is a problem, that needs to be addressed in PE. You need to work with Project settings (presets), that match your Assets, and then Export to DV-AVI (or DVD-MPEG2). Encore will not be able to edit the image/Video size. Only feed it DVD-compliant Assets.
    Hunt

  • How to increase the heap space size -is there any parameter to pass to JVM

    I created a memory buffering module which can be use to buffer log records and write to hard disk.disk writing is done by a separate thread so the main application won't be delayed. and memory for new errors are allocated dynamically. when i test this it gave this exception Exception in thread "Thread-62" java.lang.OutOfMemoryError: Java heap space then I test 100,000 of log records at a time and sleep the thread for 1 second to let the garbage collector do its job this works fine. but when i increase the log records count further it gave the above error. so i want to know whether is there a way to give the heap memory size to the VM as a parameter before running it.

    I created a memory buffering module which can be use to buffer log records and write to hard disk.disk writing is done by a separate thread so the main application won't be delayed. and memory for new errors are allocated dynamically. when i test this it gave this exception Exception in thread "Thread-62" java.lang.OutOfMemoryError: Java heap space then I test 100,000 of log records at a time and sleep the thread for 1 second to let the garbage collector do its job this works fine. but when i increase the log records count further it gave the above error. so i want to know whether is there a way to give the heap memory size to the VM as a parameter before running it.

  • How to increase the alert field size?

    Hi Experts,
        In Adapter Error Description , i am tryin to get the entire error through mail/In Alert Inbox ......I hav changed the data type from Char70 to Char512 which is there in XI server abap stack. But I cannot get an error in alert inbos or my gmail account more than approx 83-85 charecters!!
    I know due to technical restrictions between the Workflow Container and SAPscript,only the first 80 characters of a container element are taken into account, when the variables are replaced during runtime, But experts, any special techniques!!!
    Regards,
    Arnab

    Hi,
    Here is a thread but with negative answer. check if it helps
    Alert: to increase the field length
    Thanks!

  • How i increase the font text size.......

    fullPreloader.onLoadComplete = function(target)
            new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
            target.my_txt.text = myTitle;
            target.my_txt._y=10;
            target.my_txt.size=90;                       // its not working
            target.my_txt.textColor = 0xffffff;
            target.my_txt.selectable=false;
            nickey.text = myDesc;

    Look into using the TextFormat class for contrling the appearance of the text in the textfield...
    var my_fmt:TextFormat = new TextFormat();
    my_fmt.size = 90;
    my_fmt.color = 0xffffff;
    target.my_txt.setTextFormat(my_fmt);

  • How to increase the alv grid size dynamically

    Hi all,
    I have to develop the report with the following requirement:
    I have to take bwkey from t001k on basis of bukrs and bwkey. this bukrs and bwkey are entered in selection-screen.
    I have to select matnr, lbkum, salk3 from mbew on basis of bwkey in selection-screen.(this is select options)
    now the ouput should be as follows:
    for example :
                        ef01                efo2               ef03
    matnr     lbkum  salk3  lbkum    salk3      lbkum  salk3         total
    700001     3       4            0        0            0            0                    7
    700010     0       0            2       1             0            0                    3
    The output should be as mentioned above.
    In the above output,
    in the first record for 700001, the total of 3 and 4 is displayed as total 7 and
    for 700010 , it is displayed as 3.
    the get the output as above in the alv grid,
    I have taken bwkeys in t001k and remaining fields from mbew and joined them in final internal table.
    now in the final table ifinal, i have the following fields,
    matnr lbkum salk3 bwkey total.
    now when i want to display the output, it is displaying as normal output like
    mantr bwkey lbkum salk3 total
    700001 etap   3         4      7
    700002 etap   1        2       3
    but i want to display in the first mentioned format.
    so i tried to attach the bwkey values in it001k(this is internal table for t001k) for the final field catalog so that this bwkeys are displayed as column headings in the final output. but it is not displaying.
    Please suggest me the solution to display the output in the above first mentioned
    format as soon as possible
    points will be awarded.
    thanking u in advance.
    A.Srinivas

    hi ,
    u can set the row count to any number , here I am setting it to 5 using the method set_visible_row_count
    1 Change the visible row count to u20185u2019
      DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.
      lo_cmp_usage =   wd_this->wd_cpuse_alv( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
      DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
      lo_interfacecontroller =   wd_this->wd_cpifc_alv( ).
        DATA lo_value TYPE REF TO cl_salv_wd_config_table.
        lo_value = lo_interfacecontroller->get_model(
        lo_value->if_salv_wd_table_settings~set_visible_row_count( '5' ).
    u can also go thru this useful links for CONFIGUIRING ALV :
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4;jsessionid=(J2EE3417400)ID0488867050DB10849380333905377829End
    SAP List Viewer (ALV) [original link is broken]
    Configuring ALV
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9?overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/db22242d-0701-0010-28a2-aeaa1fefd706;jsessionid=(J2EE3414800)ID0133346050DB00727847586176044227End?overridelayout=true&bcsi_scan_06B6B0A4B65849C2=0
    I hope it shud solve ur query.
    regards,
    amit

  • Solaris 10 - File System Size / Layout

    Hello, I�m very new to Solaris OS � UNIX world and have a question around the file system.
    I have SUN System with a single 36GB of Hard Disk, and eventually I want to install Oracle 10g on it as a development server for myself.
    My question is around the file system size and layout
    I have installed Solaris 10 and accepted the default file system, which is as below:
    Filesystem size used avail capacity Mounted on
    /dev/dsk/c1t1d0s0 5.0G 3.4G 1.6G 69% /
    /devices 0K 0K 0K 0% /devices
    ctfs 0K 0K 0K 0% /system/contract
    proc 0K 0K 0K 0% /proc
    mnttab 0K 0K 0K 0% /etc/mnttab
    swap 1.5G 1.1M 1.5G 1% /etc/svc/volatile
    objfs 0K 0K 0K 0% /system/object
    /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap1.so.1 5.0G 3.4G 1.6G 69% /platform/sun4u-us3/lib/libc_psr.so.1
    /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap1.so.1 5.0G 3.4G 1.6G 69% /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1
    fd 0K 0K 0K 0% /dev/fd
    swap 1.5G 136K 1.5G 1% /tmp
    swap 1.5G 88K 1.5G 1% /var/run
    /dev/dsk/c1t1d0s7 28G 28M 28G 1% /export/home
    What I don�t understand is when I eventually install Oracle, where will the directory go for it?
    The /home/export folder is aprrox: 28GB which is now taking up most of the space, and I understand that this is for users, therefore my question is:
    1.Should I have allocated a more space to the root file system for oracle during the OS install?
    2. If so what should I do? (its not a production system and I know it will have to go somewhere on the single drive, I�m happy to rebuild as I�m still learning the OS).
    Any suggestions?
    Rgds
    D

    Thanks, I do have this but needed info on the file system layout... but I have the info now...
    If you select the auto file system layout on Solaris 10 then it gives the remaining space to the home/export . I have since re-installed, customised the file system layout and have space for the database.
    D

  • HT4863 How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    You can't change it, and I suspect few email providers would allow a file that big.  Consider uploading it to a service like Dropbox, then email the link allowing the recipient to download it.

  • Do Leopard icons increase the file size?

    In programs like Photoshop you have the option of including a preview or a thumbnail icon for the image you’re saving. This is important to know because, if you are making a web page or trying to fit as many files as possible on a disk, you want the file sizes to be as small as possible, and you do not want the images saved with a thumbnail icon or preview.
    In Leopard, in list and icon views, I noticed that the files have an icon whether you had these settings turned on in Photoshop or not. How does this work? Are those icons in the finder being embedded into the file or is Leopard some somehow generating them “on the fly” and not increasing the file size of the individual images? Does Cover Flow work the same way, and generate the previews on the fly rather than embedding anything into the images?

    Unless you've given a file a custom icon, through the Finder, Photoshop, or another method, the icons are generated elsewhere in the system and aren't part of the file itself.
    (29473)

Maybe you are looking for

  • Mid-2009 MBP Has Been Hard Freezing, I think it may be the SSD or software?

    Please read this fully so you don't end up suggesting something I've already tried. I have the Mid-2009 version of the 13" MBP that I received in December 2009. Almost two years ago, I upgraded it to8 GB of RAM and a 256 GB SSD. Everything has been r

  • SSL VPN and dedicated IP address

    Hello I have an ASA 5505 8.3 and i setup it with ADSL 6.3 I am trying to dedicate IP addresses to clientless SSL VPN user: is it possible ? If not is it possible with Anyconnect client ? If yes i can't perform it ! I have a user test and i want dedic

  • Custom layouts for Address book - plugins? utilities?

    I checked out Dr. Mac's site (I think that was the name) instructions on creating custom layouts which will also work with address book. It didn't help since I want to design my own layout and be able to preview it in address book. Unfortunately that

  • Ghaith

    Hello I have a problem with my icloud on my phone every time I try to sing in into icloud ill get this ( the maximum number of free accounts have been activated on this iPhone ) so what I can do ?

  • I can not install a printer brother dcp-375CW after installing mavericks, what can I do

    I can not install a printer brother dcp-375CW after installing mavericks, what can I do