20140108-1 选题

This commit is contained in:
DeadFire 2014-01-08 12:23:49 +08:00
parent 2b516e83da
commit e79a2c2d1c
3 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,48 @@
Daily Ubuntu Tips Mount Partitions In Ubuntu From Your Desktop GUI
================================================================================
Not very long ago if you had asked a seasoned Linux user how to mount partitions in Ubuntu, they wouldve told you to use the fstab file in the **/etc/** directory. It seemed like this was the only way to mount partitions in Linux systems, including Ubuntu.
Well, not anymore thanks to [GNOME Disk Utility][1]. With Disks, you can now mount partitions easily from the GUI without ever touching the fstab file from the command line. The fstab file is a Linux file that lists available disks and partitions, and indicates how they are mounted.
The mount command looks in the fstab file and determine how and where these devices should be mounted. Its only accessed by the system administrator or root.
This brief tutorial is going to show you how to easily mount partitions in Ubuntu without touching the fstab file. For new users and those who are just starting out with Ubuntu, they should find this method easy to use when mounting external partitions or drives.
There are some tools that may help you build the fstab file, but few can do it as efficiently as Disks in Ubuntu.
If you open the fstab file in Ubuntu, youll see something like whats below.
#<File System> <Mount Point> <type> <options> <dump> <pass>
/dev/fd0 /media/floppy0 vfat rw,user,noauto 0 0
These line above are just a sample of how partitions are mounted in Ubuntu. Each device gets its own file types and mount points. For those starting out with Ubuntu, this can be intimidating.
For seasoned Linux users, administering the fstab file isnt difficult. If youve done it once, the next should be easy.
So, here you go. To add an entry in the fstab file or mount a partition, go to Unity Dash and open **Disk app**. When it opens, select the drive you wish to mount and format it. After formatting it, select **Option > Edit Mount Options**.
![](http://www.liberiangeek.net/wp-content/uploads/2014/01/mountguiubuntu.png)
Finally, turn off auto mount options and manually specify your mount options. The Disk will automatically inserts these options in the fstab file so the mount command can read and mount the partition.
![](http://www.liberiangeek.net/wp-content/uploads/2014/01/mountguiubuntu1.png)
Save your settings and restart or hit the mount command to mount the partition.
The options above will look like this in the fstab file.
/dev/sdb /media/richard/ExtPartition ntfs-3g rw,auto,user,fmask=0111,dmask=0000 0 0
Yep, thats it! The new partition will be mounted every time you start your machine.
Enjoy!
--------------------------------------------------------------------------------
via: http://www.liberiangeek.net/2014/01/daily-ubuntu-tips-mount-partitions-in-ubuntu-from-your-desktop-gui/
译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[1]:https://wiki.gnome.org/Design/Apps/Disks

View File

@ -0,0 +1,48 @@
Daily Ubuntu Tips Support For Ubuntu 13.04 Ends January 27, 2014
================================================================================
If youre currently Ubuntu 13.04 Raring Ringtail, it may be time to upgrade to the next version because support for it will end January 27 of this year.
What Canonical (the parent company of Ubuntu) is saying is that as of January 27, no further security updates, bug fixes or package upgrades will be available from Ubuntu repositories. Your system will basically be running older packages with no access to updated versions from Ubuntu repositories.
Ubuntu 13.04 was released almost 9 months ago, April 25, 2013. It was the first release with the 9 month support cycle and is nearing its end.
For those who want to upgrade, they can follow the guide below to upgrade before the 27th.
Ubuntu 13.10, the next step up from 13.04 will continue to be actively supported with security updates and bug fixes and package upgrades.
Heres a statement from Canonical:
> Ubuntu announced its 13.04 (Raring Ringtail) release almost 9 months
> ago, on April 25, 2013. This was the first release with our new 9
> month support cycle and, as such, the support period is now nearing
> its end and Ubuntu 13.04 will reach end of life on Monday, January
> 27th. At that time, Ubuntu Security Notices will no longer include
> information or updated packages for Ubuntu 13.04.
To upgrade to Ubuntu 13.10, run the commands below to update your system first.
sudo apt-get update && sudo apt-get dist-upgrade && sudo apt-get autoremove
After running the commands below, you may restart your computer. Its always good to restart so kernel changes and other updates can applied.
Next, press **Alt F2** on your keyboard to show Unity Command Box. Then type the command below in the box and pres Enter.
update-manager d
Next, youll be prompted to upgrade your machine, hit the Upgrade button to begin upgrading.
![](http://www.liberiangeek.net/wp-content/uploads/2014/01/updatemanagerubuntu1310.png)
Before upgrading you should understand that it may take update to an hour for Ubuntu to finish downloading all the upgraded packages for your machine.
If you dont have a reliable Internet connection, you shouldnt perform in place upgrade. You may instead want to upgrade from a CD/DVD disc.
Enjoy!
--------------------------------------------------------------------------------
via: http://www.liberiangeek.net/2014/01/daily-ubuntu-tips-support-for-ubuntu-13-04-ends-january-27-2014/
译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出

View File

@ -0,0 +1,39 @@
Daily Ubuntu Tips — Windows Disk Management Equivalent In Ubuntu
================================================================================
For new users just starting out with Ubuntu who have some knowledge of Microsoft Windows, one question keeps coming up in most Ubuntu forums online. One of our readers asked us the same questions few days ago.
> What is Windows Disk Management Equivalent in Ubuntu?
For those who dont know about Disk Management, heres a brief summary.
Disk Management is a tool that comes with Windows by default beginning with Windows XP. It performs disk-related task such as creating and formatting volumes, initializing disks, resizing partitions, assigning drive letters and deleting partitions.
It uses the DiskPart command along with related command-line tools to perform disk management task from the command-line in Windows. It is a very powerful tool in Windows.
The question is, is there a Ubuntu equivalent? The answer is Yes.
Ubuntu comes with similar tool called GNOME Disk Utility. Its a tool to view / manage disk drives, modify partitions, create and restore disk images and more. You can also use it to format and create partitions, mount and unmount volumes, and other disk related tasks.
Although it similar to Disk Management in Windows, it doesnt allow you to resize partitions and volumes. Since Ubuntu doesnt support drive letters, it doesnt do that as well.
So, for disk management equivalent in Ubuntu, look at GNOME Disk Utility.
To access it, open Unity Dash and search for Disks. When it opens, it should automatically recognize external drives or additional hard drives that are attached to your machine.
![](http://www.liberiangeek.net/wp-content/uploads/2014/01/dropboxubuntumissingfolder3.png)
Once the drive is selected, you can then perform disk-related tasks such as formatting, creating partitions and managing your drives. Other settings you can configure is standby mode for your disk where it puts the drive in standby mode after timeouts.
Something to remember is when youre formatting a drive to use on both Ubuntu and Windows, use NTFS file system.
So, use Disks to configure you drives in Ubuntu.
Enjoy! And Happy New Year!
--------------------------------------------------------------------------------
via: http://www.liberiangeek.net/2014/01/daily-ubuntu-tips-windows-disk-management-equivalent-in-ubuntu/
译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出