1
00:00:00,570 --> 00:00:06,780
Now, the problem is regarding the permissions, so we have to change the permissions of /home/nanu directory

2
00:00:06,780 --> 00:00:10,520
to 711 so that other can enter into the directory.

3
00:00:10,890 --> 00:00:15,250
So because we are in /home/nanu/public_html directory.

4
00:00:15,270 --> 00:00:19,380
So we are saying cd ../.. that mean

5
00:00:19,800 --> 00:00:24,960
It will take us into the /home directory with pwd Command.

6
00:00:24,970 --> 00:00:32,690
We can verify where we are in home directory then with ls -ld .

7
00:00:33,150 --> 00:00:34,610
nanu.

8
00:00:34,680 --> 00:00:38,490
We can get the permissions by default.

9
00:00:38,490 --> 00:00:43,610
The permissions are 700 mean because r is equal to 4.

10
00:00:43,920 --> 00:00:46,210
W is equal to 2 and x is equal to one.

11
00:00:46,230 --> 00:00:55,190
So the permissions are 700 that mean others are not allowed to enter into that directory into this /home/nanu directory.

12
00:00:55,920 --> 00:01:02,300
So what we will do, we will change the permissions, chmod 711 when we are going to give this permission.

13
00:01:02,820 --> 00:01:06,480
the group and others will get the execute permission.

14
00:01:06,480 --> 00:01:12,660
Execute permission means that other people can enter into the directory and we can verify with ls -ld

15
00:01:12,660 --> 00:01:15,210
command what are the permission.

16
00:01:15,210 --> 00:01:23,130
That means that the permission of according to our requirement or not, with pwd we can verify

17
00:01:23,130 --> 00:01:26,910
where we are, with cd command we will return back to our home directory.

18
00:01:27,810 --> 00:01:33,070
And again, when we are going to run pwd, it is showing us that we are in /home/nanu directory

19
00:01:33,510 --> 00:01:36,740
So let us change the permissions of home directory.
