Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

diskpart create partition

# Follow the steps below to create a partition on your HDD or SSD
# Open Command Prompt
# type this and hit enter:
diskpart

# wait a few seconds until DISKPART prompt opens.
# now type this and hit enter:
list disk

# command prompt will show you a list of all hard drives (or SSD)
# installed in your computer.
# select the disk you want to create a partition in it.
# in this case will select "disk 0"
# type:
select disk 0
# hit enter.
# now well create a partition of for example 20GB size
# type and hit enter again:
create oartition primary size=20000
# note if you dont set size then all available space on the disk will 
# be used for the partition.

# now we need to assign a letter to it. like E or F or G or anything you want.
# in this case we'll assign letter D to the partition.
assign letter=D

# Done, now you can exit
exit
Comment

PREVIOUS NEXT
Code Example
Shell :: virtualbox extension pack linux 
Shell :: anaconda install crispy-forms 
Shell :: host your pdf resume on github and jekyll 
Shell :: push my logs to elk using filebeat 
Shell :: recover commits done on HEAD 
Shell :: regex to accept at most two digit :js 
Shell :: laravel installer version 
Shell :: how to calculate nearest location using longitude and latitude 
Shell :: yum check package version 
Shell :: how to install python using windows command prompt 
Shell :: install mongodb ubuntu 18.04 
Shell :: how to add and commit all files in git 
Shell :: add ssh public key to server 
Shell :: powershell add line to text file 
Shell :: lister branches git distantes 
Shell :: vim sudo trick 
Shell :: list files recursively 
Shell :: where is upower linux 
Shell :: ettercap mac 
Shell :: ubuntu drivers 
Shell :: delete resource group azure powershell 
Shell :: cli50 
Shell :: composer install -- 
Shell :: apk remove package 
Shell :: linux split file by lines 
Shell :: switch branches in git 
Shell :: remap caps lock to shift linux 
Shell :: pyinstaller add files 
Shell :: how to run r in docker 
Shell :: how to make ngrok not expired 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =