কের্স পরিচিতি 0/0
- Lecture1.1
লিনাক্সের ইতিহাস 0/1
- Lecture2.1
লিনাক্স ফাইল সিস্টেম পরিচিতি 0/1
- Lecture3.1
ফাইল সিস্টেম, ফোল্ডার আর সফটওয়্যার প্যাকেজ পরিচিতি 0/4
- Lecture4.1
- Lecture4.2
- Lecture4.3
- Lecture4.4
কমান্ড লাইনে ফাইল ইডিট করা 0/4
- Lecture5.1
- Lecture5.2
- Lecture5.3
- Lecture5.4
ফাইল এবং ফোল্ডার নিয়ে কাজ করা 0/5
- Lecture6.1
- Lecture6.2
- Lecture6.3
- Lecture6.4
- Lecture6.5
শেল স্ক্রিপ্টিং-এ হাতেখড়ি 0/2
- Lecture7.1
- Lecture7.2
প্যাটার্ন ম্যাচিং/ লেখা থেকে নির্দিষ্ট কিছু খুঁজে বের করা 0/1
- Lecture8.1
কিছু দরকারি কমান্ড 0/2
- Lecture9.1
- Lecture9.2
রেগুলার এক্সপ্রেশন 0/3
- Lecture10.1
- Lecture10.2
- Lecture10.3
ফাইল ডাউনলোড এবং এইচটিটিপি ক্লায়েন্ট 0/2
- Lecture11.1
- Lecture11.2
এসএসএইচ এবং ভিপিএস (SSH & VPS) 0/4
Web Server & nginx 0/0
Lessons will be uploaded soon! Stay tuned.Deploying Basic PHP Application 0/0
Lessons will be uploaded soon! Stay tuned.Deploying Basic JavaScript Application & Reverse Proxy 0/0
Lessons will be uploaded soon! Stay tuned.Introudction to Firewall 0/0
Lessons will be uploaded soon! Stay tuned.Linux Virtualization & Containers 0/0
Lessons will be uploaded soon! Stay tuned.Deploying Application using Docker 0/0
Lessons will be uploaded soon! Stay tuned.
You need to enroll the course to access this content. Login here.
Leave A Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
4 Comments
Bro, Its me, when I install ubuntu 18.04 alongside windows I do a part of C: Drive unallocated whether I select Primary; and then the drive selected as /(root directory) , formatted and install ubunutu. So, where is my OLD PRIMARY part of C: Drive.
Open the ubuntu disk manager that I showed and see if there’s any blank spaces
Anam bhai, can you please tell me how to mount a drive in linux? Also, how to mount a windows drive using linux? for example: I want to read a file in \\abcdbosp01\abc\kitchen\abcd.txt using a shell or python script. so, how can i read it using shell script? Thanks in advance!!
you need to use the mount command. something like: mount -t ntfs /dev/sdaX -d /mnt/somefolder
The ccommand may not be 100% correct. Please run `man mount` you should get some samples.
once the mount is done, you can read the file from the drive you mounted.
btw. mount under /mnt or /media for maintaining best practce and for others to locate if you distribute the code.