Expand the space available for Linux OS

I cloned a VM from a template.

The model had a single 40 GB of virtual disk.

The model had a directory/tmp is 5 GB size

I went in vsphere client and made the 100 GB of virtual disk.  There is always a single virtual disk

After commissioning, the directory/tmp is still 5 GB in size.

DF h shows still all original directories according to their original format.

Should what steps I take for on the partition, volume, file system, etc. to enable the directory/tmp 50 GB?

File system is ext4 and OS Centos 6

Thank you!

If you use LVM, take a look here: VMware KB: extension of a logical volume in a virtual machine running Red Hat or Cent OS

Note: some times, for Linux OS, restart the virtual machine is necessary due to a bug in fdisk.

Tags: VMware

Similar Questions

  • Setup could not find all of the products available for installation. Windows Update suggests to install 125KO Office 2007 SP1 repeatedly.

    Hello!
    Update for Windows Vista x 64 to Windows 7 x 64 caused the following errors:
    By clicking on the "Edit" button in "Programs and features" with Office 2007 trial selected gives an error "Setup error".
    Setup could not find all of the products available for installation. Please contact your systm administrator. "in Windows 7 x 64. Run the installation of Office 2007 trial version downloaded the file to change the components OK works.
    How to operate the button "Edit"?
    Windows Update suggests to install 125KO Office 2007 SP1 repeatedly. I agree to install each time, updates installs "successfully", but suggest Windows Update to install next time. It started to happen after uninstallation and reinstallation of Office 2007.
    Kind regards
    Dima

    125 KB is obviously not a ServicePack because this would be much MB in size, you have a number of KB (knowledge base) to go with the annoying update?

    How to use a Setup log file to troubleshoot installation in Office
    http://support.Microsoft.com/default.aspx/KB/826511

    How to read the Windowsupdate.log file
    http://support.Microsoft.com/kb/902093#appliesTo

    Try running ChkDsk to check your drive for errors. Right click on your drive icon / properties / tools / error checking.  Try first by checking do not each box (that it will run in read-only mode) to see if it reports any problems file or hard drive.  If so, restart it by checking both boxes and restart to allow him to attempt to fix any problems found.

    As for the "Changes" problem that I have no real solution for this, only that you remove every bit of desktop of your machine and everything don't reinstall desktop applications you need.  It could be a corrupted registry which is behind this problem.

  • Impossible to add more accounts mail App. I've added everything I added all the accounts available for this application, said

    I added my outlook account then went to add my yahoo/Gmail account and it tells me that I have added all the accounts available for this application.  I'm doing something wrong?

    You must install the update to enable the feature.  Open the app 'Store' and click the 'Get Windows 8.1 free update' to get the update.

  • Adobe creative suite is available for Linux?

    Hello

    I want to know that adobe creative suite is available for Linux?

    Please follow this link
    Creative cloud for Linux (Ubuntu)

  • What's the use of the second available for Captivate perpetual licenses right?

    What's the use of the second available for Captivate perpetual licenses right?

    If you ask if the software can be installed and enabled on both machines, yes it can.

  • CC 2015 shows the updates available for the creation and Media Encoder, but fails to download/install them.

    CC 2015 shows the updates available for the creation and Media Encoder, but fails to download/install them. Generated the log shows "ERROR: DS015: cannot read the target of the symbolic link to the file source (...)" at the end.

    What am I supposed to do?

    Thank you, Carlo Romano

    Finally, what worked for me was to completely uninstall and reinstall both apps until 2015 for CC.

    Thanks a lot for the quick reply anyway.

    Carlo

  • Collect the serial numbers for Linux

    For the purpose of asset management, I want to be able to account for the serial numbers for Linux servers in VCM.  I played with it a bit and this is the best I could come up with to execute a remote command that translates a file created with the serial number and then pick up with a filter of personalized information.  Is there a better way to do it? In particular, I would like to be able to jump the output of the command into a file and having to ask that. If I can get out by running the command that would be great as well.

    Hello

    It is complex and is not 'visible' to the end user.

    But, VCM can create custom information types that can be used to run a command and then to analyze the output of command directly without you need to execute commands remotely and create a file to analyze.

    It is good to stick to the solution you came up with that.

    Thank you and best regards,

    Pravin Goyal

  • Alert for the ability of logical space available for guests.

    Hello

    I request assistance here. I activated a control host for LogicalDisk available capacity rule. The rule is the calculation of space based on the percent of available capacity. I want to put at the level of the GB instead of %.  As a result, if there is the 10 GB available on drive C alert must trigger.  Rule condition is as below. I just tried to multiply Host.LogicalDiskCapacityAvailable.fatal by 1024. But it did not work. I think it won't work because I guessed.

    #capacityAvailable #.<>

    any idea on defined this to draw attention to the No. of GB free space available would be geat.

    Thanks in advance.

    OK, it's a good thing to do, since % is not always the most important to watch.  for example, you must always 50 GB of free disk space on a data store, regardless of % in use.

    ALWAYS COPY A RULE, AND THEN CHANGE IT *.

    First, you must determine what you want to compare, and what threshold you want to compare to.  Unfortunately, this particular rule is not written very clearly as an example.

    The current rule uses a scope of VMWVirtualMachineLogicalDisk:

    The fatal rule condition is currently:

    try {}

    vmStateObjs = #vmState a $scope.virtualMachine #;

    tmpList0 = vmStateObjs?. values(vmStateObjs?. topologyObjects[0]);

    If (tmpList0 == null | tmpList0.size () == 0) {}

    Returns false;

    }

    vmState = tmpList0.get (0)?. GetValue;

    qObjs = #capacityAvailable a $scope.hostLogicalDisk #;

    tmpList = qObjs?. values(qObjs?. topologyObjects[0]);

    If (tmpList == null | tmpList.size () == 0) {}

    Returns false;

    }

    availbility = tmpList.get (0)?. GetValue?. getAvg();

    If ((vmState==null) |) (availbility == null) | ((! vmState?. equalsIgnoreCase ("poweredOn")))

    Returns false;

    @rulette_data ["VmState"] = vmState;

    @rulette_data ['Availbility'] = availbility;

    If (availbility<=registry("VMW:vmLogicalDrive.fatal")) return="">

    otherwise return false;

    } catch (System.Exception e) {return false ;}

    availbility is stored as 0-100 (%) of the total space on the logical drive.

    To create a rule that compares to the truly free disc, we need a different query

    to retrieve the "spaceAvailable", which is stored in megabytes.

    So, for our new rule, we will need:

    qObjs = #spaceAvailable a $scope.hostLogicalDisk #;

    tmpList = qObjs?. values(qObjs?. topologyObjects[0]);

    If (tmpList == null | tmpList.size () == 0) {}

    Returns false;

    }

    spaceAvailable = tmpList.get (0)?. GetValue?. getAvg();

    SpaceAvailable return;

    Now, we can change the comparisons in the criticism and Fatal to alert

    on the comparison of spaceAvailable to a new registry variable called

    Host.LogicalDiskCapacityAvailable.fatal which is set to a value of 10240,,

    et Host.LogicalDiskCapacityAvailable.critical which can be set to something like 20480.

    Both are in megabytes to match the scale of spaceAvailable.

    The new fatal rule would then be something like:

    try {}

    vmStateObjs = #vmState a $scope.virtualMachine #;

    tmpList0 = vmStateObjs?. values(vmStateObjs?. topologyObjects[0]);

    If (tmpList0 == null | tmpList0.size () == 0) {}

    Returns false;

    }

    vmState = tmpList0.get (0)?. GetValue;

    qObjs = #spaceAvailable a $scope.hostLogicalDisk #;

    tmpList = qObjs?. values(qObjs?. topologyObjects[0]);

    If (tmpList == null | tmpList.size () == 0) {}

    Returns false;

    }

    spaceAvailable = tmpList.get (0)?. GetValue?. getAvg();

    If ((vmState==null) |) (spaceAvailable == null) | ((! vmState?. equalsIgnoreCase ("poweredOn")))

    Returns false;

    @rulette_data ["VmState"] = vmState;

    @rulette_data ["spaceAvailable'] = spaceAvailable;

    If (spaceAvailable<=registry("Host.LogicalDiskCapacityAvailable.fatal")) return="">

    otherwise return false;

    } catch (System.Exception e) {return false ;}

    Notice that @rulette_data values defined in the Fatal plan.

    and then can be used in the critical level without recalculation them.

    The critical condition would then be:

    try {}

    vmState = @rulette_data ["VmState"];

    spaceAvailable = @rulette_data ["spaceAvailable"];

    If ((vmState==null) |) (spaceAvailable == null) | ((! vmState?. equalsIgnoreCase ("poweredOn"))) return false;

    If (spaceAvailable<=registry("Host.LogicalDiskCapacityAvailable.critical")) return="" true;="" return="">

    otherwise return false;

    } catch (System.Exception e) {return false ;}

    You can watch the behavior tab, you want to prevent "fly."

    If the available space goes above and below a threshold on a regular basis.

    You can to your rule set to something like a fire after 2 consecutive failures, wait for 30 min between.

  • Want a graphic 'Filesystem space available' for the last 31 days, 7 days and 24 hours on 24

    Using control of cloud EM 12.1.0.4.0.

    For a given host, we are able to get the desired cards as (host > surveillance > CPU detail), which gives us the use of the GPU, CPU etc. load graph. For these cards see you current, last 24 hours, last 7 days and 31 days.

    We need similar graphic for "Filesystem space available (MB or free %)" or the disc.

    I can see the data is present in MS for example (Home > surveillance > the metric), under there are file systems:

    - File system space available (%)

    - Space of available filesystem (MB)

    - File size (MB) system


    But these data are in table form.

    and you can pass the data for these positions... BUT I need to have table smilar to chariot of CPU load with the files above, system information

    Please help with steps, or direct me to documentation.

    Thanks a lot for any input.

    On the page where you see the metric data in a table, select a row (for example a mount point) and you should see the table of the metric for that point inside mounting.

    Below a screenshot shows the graph for a mount point.

    Kind regards

    -Loc

  • Flash Player indicates that my version is obsolete, but I installed the latest version available for linux 64 bits.

    Sorry, your computer does not have the latest version of Flash Player installed.

    Please proceed to step 2. (Your last version11.2.202.577 Version21.0.0.182)

    Then, after following the instructions for step 2:

    NOTE: Adobe Flash Player 11.2 will be the last version of target Linux as a supported platform. Adobe will continue to provide backports of security Flash Player 11.2 for Linux.

    Version 11.2.202.577


    In my opinion, Flash Player does not make that my version is obsolete, when I have the latest being available for my platform.

    Hello

    I doubt that web sites use the widget 'Check now' to check the latest version of Flash Player.  Content providers more to define their content to use a specific version of Flash, especially if this version contains some features that they use in their game/application, not necessarily the most recent version.  One option is to use Google Chrome which incorporates Flash Player and use the latest major version (21).  PPAPI plugin is also supported on Ubuntu for Chrome browsers (Opera, for example).  If you use Ubuntu and are not opposed to the opera, it is another option.

    --

    Maria

  • Why the space available on the iPhone never match iTunes report?

    Long-standing oddity, not terribly urgent, but as I hit my phone memory limits recently, something I I want to better understand:

    Storage looking on my iPhone under settings > general > use storage & iCloud, I see a number that does not match the free space listed in iTunes while my cable clocks-"space" available in the graphic bar at the bottom of the page under iPhone iTunes > summary is always different.

    For example, at the present time this 32 GB iPhone 5 shows the settings > general > storage & use iCloud > available 2.5 GB

    and iTunes iPhone 5 s > summary > 3.49 GB free

    Which is more accurate, and why these numbers differ so constantly?

    There are a number of reasons, including how each system filesystem view (s) - are addressed in these discussions

    iTunes and iOS report storage differently - CSA

  • Possible to expand the spaces by changing the size of the page?

    Greetings.  I use Acrobat 10 pro now, but in 9, it was possible to expand the white space around the text by changing the size of the page under the command crop.  It was very convenient to create a large enough area for the comments text box.  I can't find this capability in 10.  I'm, hopefully, wrong?

    Select: Tools > Pages > culture

    and then double-click the page. You will then get the Crop dialog box and you can select a superior page size field of the change Page size.

  • Linux, Firefox 21.0 and the last flash for LINUX (11.2). I can't view youtube videos because firefox has disabled the plugin. Help!

    An hour ago, I watched with happiness of the videos from youtube on Linux using Firefox 20.0 and 11.2 flash. I've just updated firefox and it of now my blocking flash and invites me to update. The problem is I can't update because 11.2 is the LATEST version of the flash for firefox plugin, there is no other version.

    Is there a way to prevent the deactivation of my firefox plugin?

    The directory structure, at least for linux, seems to have changed for version 21. I have my distribution of firefox / opt/firefox /, and so far I keep the plugin flash in/opt/firefox/plugins /. Verse 21, the plugin directory should be/opt/firefox/browser/plugins/EC directory does not exist by default. You can create or mv just the old directory of plugin to the new location

    $ cd/opt/firefox / #(ou partout où votre firefox est installé)
    $ mv plugins / browser /.

    Icons / directory has also been moved to that subdirectory, that's why my office firefox button was not correctly displayed after the update.

    -The main thing that firefox really should do is to archive the previous version of firefox, whenever there is an update. It is ridiculous to have to deal with this kind of issue immediately after an update when you have important work to do on time! To do a simple option to temporarily return to the previous version of firefox. It would be trivial to implement and could be used when a new release breaks something.

  • Favorite of the entrances to the toolbar not appearing is not in the space provided for them under the Navigation bar.

    Using Firefox 3.6.13 and 4.0b8. Both do not display the entries in my bookmarks bar. The item exists. I have used Firefox for years and has always presented this toolbar. Confirmed that it still exists and was not inadvertently trashed by watching them a point and registration when they choose manage bookmarks. Element is selected for display in the drop-down (display-toolbars Tools-Bookmark Toolbar), the space where it would normally view my entries appears directly under the Navigation bar, but it is empty without entries displayed.

    On the view menu, select Toolbars and then customize to open the Customize dialog box toolbar. With the toolbar Customize dialog box displayed, to an icon labeled "Bookmarks toolbar items" in the bookmarks toolbar. If she is not there, just drag and drop the icon called bookmarks from the Customize dialog box toolbar on the bookmarks toolbar. There will be 2 icons called bookmarks, that you want to have an icon that looks like a sheet of paper (it does on Windows, I think it's the same thing on the Mac).

  • Unable to show the updates available for Windows Vista

    Hi, people. I have a display problem in the updates that are available for Windows Vista Ultimate Edition. What does "Select the updates to install" window does not display an important 33 and 59 option updates that are available are displayed and I cannot uncheck those I really didn't need. I guess that it happened after I installed the Windows Update Agent 7.4.7600.226 (before I had a update of c. 7.2.6001.788). How can I make function?

    It comes with Vista, upgrade install and activate Forum.

    You will get the best help for any problem of Update/Service Pack update Vista Forum; the link below:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    When you repost here, kindly include the Error Codes, and exactly what is happening when you try to update.

    In this way, you will receive the best help.

    See you soon.

    Mick Murphy - Microsoft partner

Maybe you are looking for

  • iMovie export

    How long should it take to export an iMovie for 50 minutes on the Office Project / computer. Currently, the status reads 24 hours. 2 hours ago, he read 22 hours! I put high quality.

  • How can I connect to the internet? Problems involving the network and sharing Center does not.

    Hello. I live in a House and bought a range extender so that I can get a connection in my basement as well.  I have installation range Extenders without problem.  When you install the range extender, I changed my name to my network router.  I changed

  • 1c55nr G6 cooling fan

    Fan cooling in my g6-1c55nr made a lot of noise and the motherboard seems to be a bit warmer there must be (in general @ 165 (F), so I think I need to replace the fan... problem is I find two different wiring for this model configurations.  Is a thre

  • install Hp 6210 in vista administrator rights

    This is a copy of a similar thread, but I can't understand how to ask more questions on this thread I also am trying to install my HP officejet 6210 printer/scanner.   My computer tell me I need to be the administrator to do so and will not go beyond

  • BlackBerry Smartphones Blackberry crashes, completely - no response... Help, help...

    Suddlenly happened.  Screen is not responding to the touch.  Do not meet the volume on the right keys.  Will go off screen when the press left button.   He seems to be charging and turns the screen in landscape mode. but that's all When it happened f