linux學習方法五

來源:互聯網
上載者:User

相信不少想學習linux的新手們正愁不知道看什麼linux學習教程好,下面小編給大家收集和整理了幾點比較重要的教程,供大家學習,如需想學習更多的話,可到wdlinux學堂尋找更多教程。
Linux下掛載NTFS分區和掛載分區的方法
如果你的磁碟格式為NTFS就按照以下步驟如果不是就直接跳下一步
首先去下載個 NTFS-3G
:http://www.tuxera.com/community/ntfs-3g-download/
然後把下載好的壓縮包上傳到root檔案夾內

列如:檔案名稱為:ntfs-3g_ntfsprogs-2013.1.13.tgz


解壓:tar zxvf ntfs-3g_ntfsprogs-2013.1.13.tgz
進入解壓檔案夾:cd ntfs-3g_ntfsprogs-2013.1.13
運行:
./configure
make
make install
到這裡已經安裝完成

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
查看分區資訊:fdisk -l

如:
[root@PC ntfs-3g_ntfsprogs-2013.1.13]# fdisk -l
Disk /dev/vda: 21.5 GB, 21474836480 bytes
16 heads, 63 sectors/track, 41610 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000acae9

   Device Boot      Start         End      Blocks   Id  System
/dev/vda1   *           3         409      204800   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/vda2             409        8731     4194304   82  Linux swap / Solaris
Partition 2 does not end on cylinder boundary.
/dev/vda3            8731       41611    16571392   83  Linux
Partition 3 does not end on cylinder boundary.

Disk /dev/vdb: 64.4 GB, 64424509440 bytes
255 heads, 63 sectors/track, 7832 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x5f72ecd9

   Device Boot      Start         End      Blocks   Id  System
/dev/vdb1               1        7832    62910508+  42  SFS     (我需要掛載的ntfs格式分區)

然後到/etc/fstab
開啟fstab在添加一段自動掛載的代碼
/dev/vdb1 /www ntfs-3g defaults 0 0

如果你的不是 ntfs格式呢就加你磁碟格式就好了
如:
/dev/vdb1 /www ext3  defaults 0 0

解釋:
/dev/vdb1 為你的分區名稱 在上步可以查看
/www 為需要掛載到檔案夾


linux系統硬碟分區工具之fdisk
fdisk是linux下的一個硬碟分區工具硬碟分區原理一樣,但工具格式等等都不一樣,一個是在裝系統時的分區,一個是裝好系統後的分區
裝系統時的分區,裝好系統後一般是沒法修改也不好調整的,在裝系統時未分區的硬碟空間,裝好系統後是可以操作或分區載入的

這裡主要是說這種情況,一個是對未分區的空閑硬碟的操作,又或是對新加的硬碟操作
這裡就要用到fdisk了,不過這個只能在2T以內的硬碟操作,大於2T的,就沒法用了,得用到另一個parted的工具

還有一點,Linux對於硬碟的理解是以
/dev/hd|sd(a|b|xxx)這樣方式的
hd主要是對於IDE的硬碟,這個已經很少見了
大部分都是sd開頭的,包括stata,sas,scsi等介面的硬碟,比如
hda是第一塊硬碟
hdb是第二塊硬碟
sda是第一塊硬碟
sdb是第二塊硬碟
這裡的順序,還和一個因素有關,就是介面順序或是跳線,大家應該知道,硬碟介面裡是有一個跳線什麼的,也就是一個主硬碟等

下面介紹fdisk的用法
fdisk -l是列表所有的硬碟,如下
[root@hnwt ~]# fdisk -l

Disk /dev/sda: 320.0 GB, 320071851520 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14       38913   312464250   8e  Linux LVM


fdisk /dev/sda表示操作硬碟,運行這個後會進入fdisk的互動狀態,如下
[root@hnwt ~]# fdisk /dev/sda

The number of cylinders for this disk is set to 38913.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)

Command (m for help):

這裡提示你,按m會提示一個協助,如

Command (m for help): m
Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition 刪除分區
   l   list known partition types 列出所支援的所有分區類型
   m   print this menu 顯示本菜單
   n   add a new partition 增加新分區
   o   create a new empty DOS partition table
   p   print the partition table 顯示分區資訊
   q   quit without saving changes 退出不儲存
   s   create a new empty Sun disklabel
   t   change a partition's system id 改變分區類型
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit 寫入分區表並退出
   x   extra functionality (experts only)

Command (m for help):

上面這裡就列出了所有的參數
根據上面的提示,可以繼續操作,如下簡單說明
新加分區
1 按n新加
2 選擇主要磁碟分割/擴充分區
3 起始值,預設斷行符號就可以
4 分區大小值
完成

刪除分區
1 按d
2 選擇相應的分區號,斷行符號即可

改變分區類型
1 按t
2 選擇分區
3 選擇分區類型(按l可列表所有分區及ID)
linux下主要是一個交換分區裡需要在此操作

一般的操作,有如上的三個
在所有操作完時,也確保正確時,可以按w儲存並退出
如果有操作有誤,按q直接退出就可以

上面的操作,請勿線上上環境/生產環境測試,否則後果自負
對於測試機或虛擬機器,可以多操作幾次,熟能生巧
 
 
linux系統重起/關機命令整理
重啟命令:
1、reboot
2、shutdown -r now 立刻重啟(root使用者使用)
3、shutdown -r 10 過10分鐘自動重啟(root使用者使用)
4、shutdown -r 20:35 在時間為20:35時候重啟(root使用者使用)
如果是通過shutdown命令設定重啟的話,可以用shutdown -c命令取消重啟


關機命令:
1、halt   立刻關機
2、poweroff 立刻關機
3、shutdown -h now 立刻關機(root使用者使用)
4、shutdown -h 10 10分鐘後自動關機
如果是通過shutdown命令設定關機的話,可以用shutdown -c命令取消重啟
 
本文教程摘自 wdlinux論壇http://www.wdlinux.cn/bbs/,歡迎轉載~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.