"স্কুলে পড়ে কিছু শিখি নাই, এটা আমার ব্যর্থতা।"
--- কথাটা অনেক গুরুতপূর্ণ। নতুন করে চিন্তা করলাম। পারসপেক্টিভ বদলে দিয়েছে কথাটা।
--- কথাটা অনেক গুরুতপূর্ণ। নতুন করে চিন্তা করলাম। পারসপেক্টিভ বদলে দিয়েছে কথাটা।
fdisk -lThis command gives a list of devices currently connected. Prompting this command at my terminal gives output:
Disk /dev/sda: 500.1 GB, 500107862016 bytes 255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk identifier: 0xfa61dadb Device Boot Start End Blocks Id System /dev/sda1 * 376006656 976773119 300383232 7 HPFS/NTFS/exFAT /dev/sda2 2046 376006655 188002305 5 Extended Partition 2 does not start on physical sector boundary. /dev/sda5 2048 360380415 180189184 83 Linux /dev/sda6 360382464 376006655 7812096 82 Linux swap / Solaris Partition table entries are not in disk orderSuppose we are going to mount /dev/sda1.
mkdir -p /media/Partition
sudo mount -t ntfs -o nls=utf8,umask=000 /dev/sda1 /media/PartitionWe are mounting ntfs type partition or device, full list of supported type can be found at manual page of "mount" command. Umask = 000 means it allows read, write and execute permission for all (security risk).