logo

Linux File System: Design, Implementation, and Management with Scripts

   

Added on  2023-06-05

19 Pages2943 Words403 Views
 | 
 | 
 | 
linux file system
Linux File System: Design, Implementation, and Management with Scripts_1

Table of Contents
1. Introduction.........................................................................................................................2
2. Management of Automated Account..................................................................................2
3. Designing File Systems......................................................................................................6
4. Implementation of File system.........................................................................................10
5. Making the File System accessible and robust.................................................................12
6. File System Management with Scripts.............................................................................14
7. Conclusion........................................................................................................................16
8. References.........................................................................................................................18
1
Linux File System: Design, Implementation, and Management with Scripts_2

1. Introduction
Primary extent of this task is to building up the simple scripts to achieve the file and
user system while and building up the some ability in taking care of a complex file system.
This activity is ordered into five assignment like computerized account administration,
planning a file systems, executing the file system, making the file system open and powerful
and file system administration with contents. The primary task is computerised file
administration, this undertaking is utilized to set up the two shell contents and it is utilized to
deal with the user data. The Main shell content is utilized for examines the content file called
users.txt that contains the accompanying data and another contents is utilized to dismiss the
client account. The second task is Designing File Systems, we will essentials to make the
server to store the client information by utilizing the ZFS volume. The volumes are
transformed into the unbounded and it was felt that the ZFS system and this structure ought to
be utilized for every volume. The OS itself needs not be on a ZFS volume. The third
undertaking is executing the file system, this task is utilized to actualize the capacity system.
The fourth task is making the file system open, this undertaking is utilized to make another
virtual machine to do mount a NFS sent out volume from the server and reinforcement every
one of the information on the ZFS volumes by utilizing the ZFS. The last undertaking is file
system administration with contents, this errand is utilized to make the two contents for file
system administration. The First contents is to make the client home catalogs are requested
and just open by the administrator and second content is to looks the file system to discover
the items like mp3. These are will be executed and clarified in detail.
2. Management of Automated Account
Every individual that uses the computer must to have another user account. This
enables them to keep their records isolate from yours and to pick their own particular settings.
It is additionally more secure. You can just access an alternate client account in the event that
you know their secret key.
In computerized account administration task, we will creates the two shell scripts.
These two scripts is used to keep the user data. The first scripts is used to reads the user text
file that comprises the underneath data. This is recognised as below,
2
Linux File System: Design, Implementation, and Management with Scripts_3

First Shell Script is presented under.
#!/bin/bash
FILE="/home/ubuntu/Files"
echo "*** File - $FILE contents ***"
cat $FILE
To compile and run shell scripts by using the below steps.
Open the terminal.
Go to script location by using the cd command.
Then, provide the file permission by using the following command.
chmod +x user.sh
Finally, run the shell scripts.
./user.sh
This improvement is established as below.
3
Linux File System: Design, Implementation, and Management with Scripts_4

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Linux File System Management with Scripts
|16
|1536
|421

Developing Simple Scripts for File and User System Management with ZFS Volume
|18
|2359
|76

Automated Account Management, Designing and Implementing File Systems in Linux
|11
|647
|305

LINUX Server Administration: Automated Account Management, Designing File Systems, File System Management with Scripts
|11
|530
|287

Linux File System: Automated Account Management, Designing File Systems, File System Management with Scripts
|12
|721
|455

Server Administration and Management with Shell Scripts and ZFS Volume
|13
|695
|492