I am new to ubuntu server and I cannot find this information online.
When I login via SSH I am in:
root@Ubunutu ~ #
I used mkdir mydir
to create a folder, but I cannot find it anywhere (using filezilla).
I also do not understand what ~
means, where am I?
I can use cd ..
then it will show root@Ubunutu / #
, which I understand. From here I can use ls
to see folders.
To summarize:
What does ~
mean, which location is it?
Where is my folder?
~
means home directory of your user which is here/root
, usepwd
to see were you are. Yourmydir
should be here:/root/mydir
. – Ravexina Apr 09 '20 at 09:53