Create swap partition after OS installation
How to make swap partition after OS installation?
Expert
swap can be made in two ways after the installation,
1. fdisk command
2. create a swap file by using dd command
after creating swap file or file system
#mkswap /dev/sda10
#swapon /dev/sda10
#swapon -s #To see the swap devices
by using dd command
#dd if=/dev/zero of=/swap bs=1024 count=1
Which will creates the file size 1024(1GB).
#mkswap /swap
#swapon /swap
#swapon -s #to see the swap devices
Normal 0 false false
Implications/Issues in adapting Layered Model: The entire structure has to be divided in layers with every layer able to communicate with layers above it. In layered model many interfaces are requ
Write an AWK program which takes the following input _le and processes it. $cat data.txt John Do 111-1111 English 90 Maths 80 Alice Do 222-2222 English 90 Maths 90 Chemistry 93 The input _le has _rst 3 _elds _xed as _rst name, last name, and student id. After the s
In the context of distributed applications, why is a stateful remote procedure problematical? How could such a problem be overcome?
18,76,764
1923697 Asked
3,689
Active Tutors
1458197
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!