Skip to main content

Posts

কিভাবে cmd সাহায্যে পেনড্রাইভ বুটেবল করা যায়

যারা নিয়মিত কম্পিউটার ব্যবহার করেন তারা হয়তো boot/bootable এই শব্দগুলোর সাথে পরিচিত হয়ে থাকবেন। কম্পিউটারে নতুন করে অপারেটিং সিস্টেম ইন্সটল দিতে হলে হয় বাজার থেকে ডিস্ক কিনে এনে ইন্সটল দিতে হবে অথবা পেনড্রাইভকে বুটেবল করতে হবে। “বুটেবল ডিস্ক(bootable disk)” কথাটির অর্থ হল সিডি/ডিভিডি রম(ROM) একটি অপারেটিং সিস্টেমকে ধারণ করে যা কম্পিউটারের মেইন মেমোরি বা র‍্যাম(RAM) থেকে লোড নিতে সক্ষম। এখানে পেনড্রাইভের ক্ষেত্রেও একই ধরণের ঘটনা ঘটে। আজকাল বাজার থেকে সিডি কিনে আনার চেয়ে ইন্টারনেট থেকে অপারেটিং সিস্টেমের .iso ফাইল নামিয়ে পেনড্রাইভ বুটেবল করার মাধ্যমে খুব সহজেই কম্পিউটারে উইন্ডোস কিংবা লিনাক্স(উবুন্টু,মিন্ট,কালি ইত্যাদি) ইন্সটল দেয়া যায়। ১. প্রথমে ৮ GB Pen-drive টাকে পিসির USB port-এ লাগান। Pen-drive কে NTFS এ format করুন। অর্থাৎ যখন পেনড্রাইভটাকে ফরমেট করবেন তখন মেনু থেকে FAT এর পরিবর্তে NTFS সিলেক্ট করুন এবং format করুন।   ২. এখন Windows এর Command Prompt মনেুতে যান। Start menu >>  All Programs>> Accessories>> Command Prompt (Open it). নিচের মত...

5 best private search engines and why you need to use them.

5 best private search engines and why you need to use them  By:  Boniyeamin laju   ▪   May 31, 2019   ▪ 3 minute read 5 best private search engines and why you need to use  Normal browsers like Google and Bing are designed to track users’ activities and profile their online behavior. The primary reason for this is to create advertisements that will be attractive to the user. However, there-there is always the concern of  personal information being compromised  due to security breaches, state surveillance, and unauthorized data sharing. Fortunately,  private search engines  can help keep your private information safe. Simply put, Private Search Engines, also known as PSE, uses proxy and encrypted search request to  hide your personal information  from anyone looking to misuse your information. Below you will find more information about what a PSE is, how it works, and wh...

Understanding Nmap Packet Trace

Hello everyone. In this article, we’ll see how to capture network packet using nmap. And we’ll use Wireshark for comparing its result with nmap. In this article, we mainly focus on what types of network traffic is captured by nmap while we use various nmap ping scan. Ping scan in nmap is done to check if the target host is alive or not. As we know that ping by default sends the ICMP echo request and gets an ICMP echo reply if the system is alive. Ping scan by default send an ARP packet and gets a response to check if the host is up. NOTE:  Nmap scans change their behavior according to the network they are scanning. Scanning local network with nmap where nmap sends an ARP packet with every scan. If an external network is to be scanned; nmap sends the following request packets: ICMP echo request ICMP timestamp request TCP SYN to port 443 TCP ACK to port 80 Technique Involves in packet-tracing via nmap The nmap module is an interface with nmap’s internal function...