Linux Commands are Commonly Use – 11

➡101. 'ls' কমান্ড ব্যবহার করে ডিরেক্টরির মধ্যে সকল ফাইল/ডিরেক্টরির লিস্ট পাওয়া যাবেঃ[root@desktop ~]# lsDocuments   Music      Public     VideosDesktop     Downloads  Pictures   Templates➡102. 'lsblk' কমান্ড ব্যবহার করে সিস্টেমের ডিস্ক…

Continue ReadingLinux Commands are Commonly Use – 11

Linux Commands are Commonly Use – 10

➡91. 'journalctl' কমান্ড ব্যবহার করে সিস্টমের সার্ভিস বা ডেমন সম্পর্কিত বিস্তারিত জানা যায়ঃ[root@desktop ~]# journalctl[root@desktop ~]# journalctl -xe➡92. 'kill' কমান্ড ব্যবহার করে সিস্টেমের বিভিন্ন প্রসেস স্থায়ী ভাবে সাসপেন্ড (kill) করা…

Continue ReadingLinux Commands are Commonly Use – 10

Linux Commands are Commonly Use – 9

➡81. 'id' কমান্ড ব্যবহার করে বর্তমান ইউজারের বা অন্য ইউজারের UID (User ID) বের করা যাবেঃ[root@desktop ~]# iduid=0(root) gid=0(root) groups=0(root)[root@desktop ~]# id studentuid=1000(student) gid=1000(student) groups=1000(student)➡82. 'ip link' কমান্ড ব্যবহার করে…

Continue ReadingLinux Commands are Commonly Use – 9

Linux Commands are Commonly Use – 8

➡71. 'gunzip' কমান্ডের মাধ্যমে কোনো ফাইলকে Extract (De-Compress) করতে পারি। নিচের কমান্ডের মাধ্যমে আমরা 'test.gz' ফাইল কে extract De-Compress) করা হবে।[root@desktop ~]# gunzip file1.gz[root@desktop ~]# lsfile1➡72. 'getsebool' কমান্ড ব্যাবহার করে…

Continue ReadingLinux Commands are Commonly Use – 8

Linux Commands are Commonly Use – 7

➡61. 'getenforce' কমান্ড ব্যবহার করে 'SELinux' এর মোড জানা যাবেঃ[root@desktop ~]# getenforceEnforcing➡62. 'getfacl' কমান্ড ব্যবহার করে লিনাক্সে কোনো ফাইল বা ডিরেক্টরির 'acl' পার্মিশন জানা যাবেঃ[root@desktop ~]# getfacl file1 # file:…

Continue ReadingLinux Commands are Commonly Use – 7

Linux Commands are Commonly Use – 6

➡51. 'find' কমান্ডের মাধ্যমে লিনাক্সে ফাইল/ডিরেক্টরি নাম, সাইজ, টাইপ, পার্মিশন অনুযায়ী খোঁজা যাবেঃ[root@desktop ~]# find / -name student[root@desktop ~]# find / -size +100M[root@desktop ~]# find / -type f -name passwd[root@desktop…

Continue ReadingLinux Commands are Commonly Use – 6

Linux Commands are Commonly Use – 5

➡ 41. 'e2fsck' কমান্ড ব্যবহার করে লিনাক্স সিস্টেমে 'ext3/ext4/xfs' টাইপের ফাইল সিস্টেম চেক (error) করা যাবে। উল্লেখ্য যে, 'e2fsck' কমান্ড ব্যবহারের সময় এটা unmount অবস্থায় থাকতে হবে।[root@desktop ~]# e2fsck /dev/sda3/dev/sda3:…

Continue ReadingLinux Commands are Commonly Use – 5

Linux Commands are Commonly Use – 4

➡31. 'dd' কমান্ড দিয়ে লিনাক্স সিস্টেমে কোনো ফাইল কে কপি বা কনভার্ট করতে পারেন। যেমন আপনি যদি কোনো HDD কে ক্লোন বা কপি করতে চান তাহলে নিচের কমান্ড টি দিতে…

Continue ReadingLinux Commands are Commonly Use – 4

Linux Commands are Commonly Use – 3

➡21. 'chcon' কমান্ড ব্যবহার করে লিনাক্স সিস্টেমের 'SELinux Security Context' পরিবর্তন করা যাবে। নিচের ডিরেক্টরির (newdir) বর্তমান 'Security Context' আছে 'admin_home_t' । এটাকে যদি অন্য কোনো Context ‘(httpd_sys_content_t)' দিয়ে পরিবর্তন…

Continue ReadingLinux Commands are Commonly Use – 3

Linux Commands are Commonly Use – 2

➡11. 'bzip2' কমান্ড ব্যবহার করে কোনো ফাইলকে '.bz2' আকারে Compress করা যাবেঃ[root@desktop ~]# lsanaconda-ks.cfg[root@desktop ~]# bzip2 anaconda-ks.cfg[root@desktop ~]# lsanaconda-ks.cfg.bz2➡12. 'bunzip2' কমান্ড ব্যবহার করে ‘.bz2’ টাইপের ফাইল De-Compress (Extract) করা যাবেঃ[root@desktop…

Continue ReadingLinux Commands are Commonly Use – 2