个人工具

“UbuntuHelp:QuickTips”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的3个中间版本)
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/QuickTips}}
 
{{From|https://help.ubuntu.com/community/QuickTips}}
 
{{Languages|UbuntuHelp:QuickTips}}
 
{{Languages|UbuntuHelp:QuickTips}}
This page has small little "quick" tips to modify your ubuntu installation.
+
These tips are meant to help you on your way to breaking in Ubuntu. The tips found here are meant to be quick and easy to execute, and provide a small but marked difference in how Ubuntu operates. The tips should also not be overly simple, such as changing the desktop background, but rather be along the lines of changing how Ubuntu reacts. The important thing to remember is that whatever it does, it needs to make life easier in some way.  
 
=== Tip #1 Hide Recent Documents ===
 
=== Tip #1 Hide Recent Documents ===
 
==== What ====
 
==== What ====
第11行: 第11行:
 
   </nowiki></pre>
 
   </nowiki></pre>
 
==== Enable ====
 
==== Enable ====
If you have already disabled it, you can reenable Recent Documents by opening a terminal and typing:
+
If you have already disabled it, you can re-enable Recent Documents by opening a terminal and typing:
 
<pre><nowiki>
 
<pre><nowiki>
 
   chmod 600 ~/.recently-used
 
   chmod 600 ~/.recently-used
 
   </nowiki></pre>
 
   </nowiki></pre>
 
------
 
------
=== Tip # 2 Change Gnome Foot to Ubuntu Logo on Panel ===
+
=== Tip # 2 Change Ubuntu Logo to Another image on Panel ===
==== What ====
+
==== Note ====
Older versions of Ubuntu (before 5.10 Breezy Badger) came with the Gnome foot on the Applications menu. If you want you can change it to look like this:
+
Older versions of Ubuntu (before 5.10 Breezy Badger) came with the Gnome foot on the Applications menu. If you want you can change it follow these instructions as well:
 
https://help.ubuntu.com/community/QuickTips?action=AttachFile&do=get&target=App-button.png
 
https://help.ubuntu.com/community/QuickTips?action=AttachFile&do=get&target=App-button.png
Of course, you can also use these steps to put any image you want in that space - just create or find an image that suits you, and follow the steps below to put it in place.
+
Following these instructions, you can put any image you want in that space - just create or find an image that suits you, and follow the steps below to put it in place.
 
==== Copy image to your PC ====
 
==== Copy image to your PC ====
 
All you need to do is right click on one image below, select <code><nowiki>Save image as..</nowiki></code> to a location you can remember and have permission to.
 
All you need to do is right click on one image below, select <code><nowiki>Save image as..</nowiki></code> to a location you can remember and have permission to.
 
{|border="1" cellspacing="0"
 
{|border="1" cellspacing="0"
|https://help.ubuntu.com/community/QuickTips?action=AttachFile&do=get&target=Gnome-logo-icon-transparent.png%7C%7Cattachment%3AUbuntuI.png
+
|https://help.ubuntu.com/community/QuickTips?action=AttachFile&do=get&target=Gnome-logo-icon-transparent.png||https://help.ubuntu.com/community/QuickTips?action=AttachFile&do=get&target=UbuntuI.png
 
|}
 
|}
 
==== From Command line ====
 
==== From Command line ====
第34行: 第34行:
 
   </nowiki></pre>
 
   </nowiki></pre>
 
replace '''[path]'''  where you downloaded the image & '''[image]''' with the name of the icon.
 
replace '''[path]'''  where you downloaded the image & '''[image]''' with the name of the icon.
You need to restart Gnome, logout then hit Ctrl+Alt+Backspace or via <code><nowiki>sudo killall gnome-panel</nowiki></code>
+
You need to restart Gnome by logging out and back in, or typing <code><nowiki>sudo /etc/init.d/gdm restart</nowiki></code> or via <code><nowiki>sudo killall gnome-panel</nowiki></code>
 
{i} This also changes the icon of '''System->ABOUT GNOME'''
 
{i} This also changes the icon of '''System->ABOUT GNOME'''
 
------
 
------
 
=== Tip #3 Keychain - Manage ssh keys ===
 
=== Tip #3 Keychain - Manage ssh keys ===
 
==== What ====
 
==== What ====
Instead of constantly starting up ssh-agent and ssh-add, it is possible to use "keychain" to manage your ssh keys.
+
Instead of constantly starting up '''ssh-agent''' and '''ssh-add''', it is possible to use '''keychain''' to manage your ssh keys. To install '''keychain''', you can just click '''''[[UbuntuHelp:apt:keychain|here]]''''', or use [[UbuntuHelp:SynapticHowto|Synaptic]] to do the job or [[UbuntuHelp:AptGet/Howto|apt-get]] from the command line.
==== Command Line ====
+
==== Command line ====
 +
Another way to install the file is to open the terminal (Application->Accessories->Terminal) and type:
 
<pre><nowiki>
 
<pre><nowiki>
  sudo apt-get install keychain
+
  sudo apt-get install keychain
  </nowiki></pre>
+
  </nowiki></pre>
 
==== Edit File ====
 
==== Edit File ====
 
You then should add the following lines to your ${HOME}/.bashrc or /etc/bash.bashrc:
 
You then should add the following lines to your ${HOME}/.bashrc or /etc/bash.bashrc:
第53行: 第54行:
 
=== Tip #4 Check for and fix filesystem errors on boot ===
 
=== Tip #4 Check for and fix filesystem errors on boot ===
 
==== What ====
 
==== What ====
This little tip turns on filesystem check to run at boot. It will check for and fix errors (similar to windows chkdisk) but at the same time increase your boot time.
+
This little tip turns on filesystem check to run at boot. It will check for and fix errors (similar to chkdisk found in Windows) but at the same time increase your boot time. Ubuntu automatically checks for errors after every 20-30 boots
 
==== Edit File ====
 
==== Edit File ====
 
Open /etc/default/rcS with your text editor of choice (root permissions needed) and change this line:
 
Open /etc/default/rcS with your text editor of choice (root permissions needed) and change this line:
第62行: 第63行:
 
<pre><nowiki>
 
<pre><nowiki>
 
   FSCKFIX=yes
 
   FSCKFIX=yes
 +
  </nowiki></pre>
 +
==== Please note ====
 +
To gain superuser powers for a graphical program for such as gedit you should '''not''' use sudo. Example of a incorrect command:
 +
<pre><nowiki>
 +
  sudo gedit
 +
  </nowiki></pre>
 +
For Ubuntu you should instead use gksudo. Example:
 +
<pre><nowiki>
 +
  gksudo gedit
 
   </nowiki></pre>
 
   </nowiki></pre>
 
------
 
------
 
=== Tip #5 Some Gnome & Nautilus Tricks ===
 
=== Tip #5 Some Gnome & Nautilus Tricks ===
==== What ====
+
Gnome and its file manager, Nautilus, have some interesting, useful but hard to discover tricks built in. Here is a short selection:
Gnome and its file manager, Nautilus, have some interesting, useful but hard to discover tricks built in. Among them:
+
 
==== Actions ====
 
==== Actions ====
* Dragging a file with middle mouse button will show a menu upon release, allowing you to select among "move", "copy", "link to" and "cancel". Similar to right-mouse drag in Windows.  
+
* Dragging a file with middle mouse button will show a menu upon release, allowing you to select among '''move''', '''copy''', '''link to''', and '''cancel'''. Similar to right-mouse drag in Windows.  
 
* Alt-left drag in any window will let you move that window, without having to hunt for the title bar. Just click anywhere in a window while the Alt key is pressed, and you can move the window.  
 
* Alt-left drag in any window will let you move that window, without having to hunt for the title bar. Just click anywhere in a window while the Alt key is pressed, and you can move the window.  
* Alt-middle drag allows you to resize a window without having to hunt for the edges of the window. Neat.  
+
* Alt-middle drag allows you to resize a window without having to hunt for the edges of the window.
 
* Alt-right click anywhere in the window will bring up the window menu (the one that is usually located by pressing on the top left corner of the title bar).  
 
* Alt-right click anywhere in the window will bring up the window menu (the one that is usually located by pressing on the top left corner of the title bar).  
 
* Double-clicking on the title bar will expand a window to full-screen.
 
* Double-clicking on the title bar will expand a window to full-screen.
 
* This behaviour can be modified in '''System menu --> Preferences --> Windows'''. Look for the "Titlebar Action" section - the "roll up when double-clicked" version can be very useful to manage the palettes and toolbars of applications like the GIMP, Inkscape or Scribus.
 
* This behaviour can be modified in '''System menu --> Preferences --> Windows'''. Look for the "Titlebar Action" section - the "roll up when double-clicked" version can be very useful to manage the palettes and toolbars of applications like the GIMP, Inkscape or Scribus.
 
* To add an item to your Places menu, as well as to the Places sidebar in Nautilus, navigate to that location in Nautilus, and choose Bookmarks>Add Bookmark.
 
* To add an item to your Places menu, as well as to the Places sidebar in Nautilus, navigate to that location in Nautilus, and choose Bookmarks>Add Bookmark.
----
+
------
[[category:CategoryDocumentation]]
+
=== Tip #6 Change the Default program ===
 +
Sometimes for whatever reason, the default program that opens when we double click a file is not the one we want.
 +
==== Check first ====
 +
First, check to make sure it's installed. If this is a new install, the program you remember having for a long time, may no longer be present, either because it is no longer pre-installed, or because your backup scripts didn't install it.
 +
==== Changing the Defaults ====
 +
To change the default program, right click the file, select '''Properties''', and chose the '''Open With''' tab. Then click on one of the radio buttons to chose one of the programs that Ubuntu recognizes as a valid program to view/manipulate the file. If the program is not there, click the '''Add''' button, and chose from another, longer list of programs.
 +
====== Extra step ======
 +
If it's still not there, or you want it to be opened with special flags, try '''Use a custom command''' option to type in the command to the program. Then click '''Add'''
 +
==== Final Step ====
 +
Finally Close the properties box, and double click the file. It should now open with your program of choice. Please note that if you make the program, say VLC, open .flv files, it will not automatically open .mp4 files.
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年11月17日 (二) 20:27的最新版本

These tips are meant to help you on your way to breaking in Ubuntu. The tips found here are meant to be quick and easy to execute, and provide a small but marked difference in how Ubuntu operates. The tips should also not be overly simple, such as changing the desktop background, but rather be along the lines of changing how Ubuntu reacts. The important thing to remember is that whatever it does, it needs to make life easier in some way.

Tip #1 Hide Recent Documents

What

Places --> Recent Documents lists all the recently opened documents. If you wish to disable it, you need to do the following:

Disable

Open a terminal and type:

  chmod 400 ~/.recently-used
  

Enable

If you have already disabled it, you can re-enable Recent Documents by opening a terminal and typing:

  chmod 600 ~/.recently-used
  

Tip # 2 Change Ubuntu Logo to Another image on Panel

Note

Older versions of Ubuntu (before 5.10 Breezy Badger) came with the Gnome foot on the Applications menu. If you want you can change it follow these instructions as well: QuickTips?action=AttachFile&do=get&target=App-button.png Following these instructions, you can put any image you want in that space - just create or find an image that suits you, and follow the steps below to put it in place.

Copy image to your PC

All you need to do is right click on one image below, select Save image as.. to a location you can remember and have permission to.

QuickTips?action=AttachFile&do=get&target=Gnome-logo-icon-transparent.png QuickTips?action=AttachFile&do=get&target=UbuntuI.png

From Command line

Now all you have to do is run the following commands:

  cd /usr/share/pixmaps/
  sudo mv gnome-logo-icon-transparent.png gnome-logo-icon-transparent.bak
  sudo mv /[path]/[image].png ./gnome-logo-icon-transparent.png
  

replace [path] where you downloaded the image & [image] with the name of the icon. You need to restart Gnome by logging out and back in, or typing sudo /etc/init.d/gdm restart or via sudo killall gnome-panel {i} This also changes the icon of System->ABOUT GNOME


Tip #3 Keychain - Manage ssh keys

What

Instead of constantly starting up ssh-agent and ssh-add, it is possible to use keychain to manage your ssh keys. To install keychain, you can just click here, or use Synaptic to do the job or apt-get from the command line.

Command line

Another way to install the file is to open the terminal (Application->Accessories->Terminal) and type:

   sudo apt-get install keychain
   

Edit File

You then should add the following lines to your ${HOME}/.bashrc or /etc/bash.bashrc:

  keychain id_rsa id_dsa
  . ~/.keychain/`uname -n`-sh
  

Tip #4 Check for and fix filesystem errors on boot

What

This little tip turns on filesystem check to run at boot. It will check for and fix errors (similar to chkdisk found in Windows) but at the same time increase your boot time. Ubuntu automatically checks for errors after every 20-30 boots

Edit File

Open /etc/default/rcS with your text editor of choice (root permissions needed) and change this line:

  FSCKFIX=no
  

to

  FSCKFIX=yes
  

Please note

To gain superuser powers for a graphical program for such as gedit you should not use sudo. Example of a incorrect command:

  sudo gedit
  

For Ubuntu you should instead use gksudo. Example:

  gksudo gedit
  

Tip #5 Some Gnome & Nautilus Tricks

Gnome and its file manager, Nautilus, have some interesting, useful but hard to discover tricks built in. Here is a short selection:

Actions

  • Dragging a file with middle mouse button will show a menu upon release, allowing you to select among move, copy, link to, and cancel. Similar to right-mouse drag in Windows.
  • Alt-left drag in any window will let you move that window, without having to hunt for the title bar. Just click anywhere in a window while the Alt key is pressed, and you can move the window.
  • Alt-middle drag allows you to resize a window without having to hunt for the edges of the window.
  • Alt-right click anywhere in the window will bring up the window menu (the one that is usually located by pressing on the top left corner of the title bar).
  • Double-clicking on the title bar will expand a window to full-screen.
  • This behaviour can be modified in System menu --> Preferences --> Windows. Look for the "Titlebar Action" section - the "roll up when double-clicked" version can be very useful to manage the palettes and toolbars of applications like the GIMP, Inkscape or Scribus.
  • To add an item to your Places menu, as well as to the Places sidebar in Nautilus, navigate to that location in Nautilus, and choose Bookmarks>Add Bookmark.

Tip #6 Change the Default program

Sometimes for whatever reason, the default program that opens when we double click a file is not the one we want.

Check first

First, check to make sure it's installed. If this is a new install, the program you remember having for a long time, may no longer be present, either because it is no longer pre-installed, or because your backup scripts didn't install it.

Changing the Defaults

To change the default program, right click the file, select Properties, and chose the Open With tab. Then click on one of the radio buttons to chose one of the programs that Ubuntu recognizes as a valid program to view/manipulate the file. If the program is not there, click the Add button, and chose from another, longer list of programs.

Extra step

If it's still not there, or you want it to be opened with special flags, try Use a custom command option to type in the command to the program. Then click Add

Final Step

Finally Close the properties box, and double click the file. It should now open with your program of choice. Please note that if you make the program, say VLC, open .flv files, it will not automatically open .mp4 files.