পোস্টগুলি

মার্চ, ২০১৩ থেকে পোস্টগুলি দেখানো হচ্ছে
ছবি
Pen Drive এর দুইটি সমস্যার সমাধান অনেক সময় দেখা যায় আমাদের pendrive format হয় না। খালি দেখায় windows was unable to complete the format. দুইটি নিয়ম প্রয়োগ করা যায় ১। right click on my computer->click on manage->click on disk management->then click on ur pendrive window->then right click->then choose format. it will work. ২। start>run>cmd and format your pen drive. or win-key+R. উদাহরণঃ pen drive latter j হলে লিখুন  j: C:\>format J:/q Enter . আবার অনেক সময় দেখা যায় আমাদের pendrive এ virus attack এর ফলে file গুলো গায়েব হয়ে যায় তখন start>run>cmd তারপর আপনার pendrive এর drive letter লিখে উদাহরণঃ pen drive latter j হলে লিখুন  j: এরপর ATTRIB -S -H *.* /S /D লিখে enter চাপুন কিছুক্ষন অপেক্ষা করুন তারপর আপনার pendrive এ প্রবেশ করুন ইনশাআল্লাহ সব file দেখতে পাবেন
লিনাক্স (Linux) এর কিছু Basic Commands অপারেটিং সিস্টেম লিনাক্স আমাদের কাছে তেমন একটা জনপ্রিয় না হলেও আমাদের মাঝে অনেকেই লিনাক্স ব্যবহার করে থাকি। যারা ব্যবহার করছেন বা আগামীতে করার চিন্তা আছে তাদের জন্য কিছু Basic Commands আশা করি কাজে লাগবে For changing directory / to /etc [root@pc1 /]# cd /etc One step back /etc to / [root@pc1 etc]# cd .. Go to previous working directory [root@pc1 /]# cd - Go to current login user home directory [root@pc1 etc]# cd ~ Show the contents of /etc in single color [root@pc1 ~]# dir /etc Show the contents of /etc in different colors with nature of contents [root@pc1 ~]# Ls /etc create a folder on root partition [root@pc1 ~]# mkdir /disk Create a folder in /disk [root@pc1 ~]# mkdir /disk/dir Create multiple folder in multiple directories with single command [root@pc1 ~]# mkdir /etc/dir1 /var/dir2 /usr/dir3 Create multiple folder in same directory [root@pc1 ~]# mkdir dir1 dir2 dir3 Copy a file in directory [root@pc1 disk]# cp fi...