Yum Extender Symbols

From the Yum Extender FAQ  [link]
Q. What does the package colors mean ?
Red = Package is a update to a installed package.
Blue = Package is obsoleting a installed package.
Green = Package is installed.
Black = Available package.
Q. What does the "green plus " / "star on rectangle (document)" means ?
The "green plus " / "star on rectangle" means that a packages is recent.
  • If it is in the update/install view it means that this version of the package has been added to the repository in the last 14 days.
  • If it is in the remove view it means that the package as been installed on the system in the last 14 days.

Fedora 20 Post-Install Customization

After the default install, there are some sysadmin things your Fedora 20 install more usable:

  • First, update the system:  
        • $> yum update
  • To get a nicer/more user-friendly experience with Fedora 20, install easyLife rpm, and use it to
    • replace nouveau video drivers with nVidia drivers (current drivers are fine)
      • btw: the lenovo T510 has nVidia GT218 [NVS 300] Video 
      • btw: check which driver you are using
        • $> lspci | grep VGA
      • btw: check which module is loaded:
        • $> lsmod | grep nouveau
    • install flash
    • install codecs
    • install video players
    • install java
    • install fonts
    • install utils
    • install SetupWindows
  • Install gnome-tweak-tool
  • To install KDE: (link)
        • $> yum install @kde-desktop 
  • To install Xfce: (link)
    • Install switchdesk utility:
        •  $> yum install switchdesk switchdesk-gui
    • Install Xfce: 
        • $> yum install @xfce 
    • Now, make Xfce desktop the default:
        •  $> switchdesk xfce

Key Extensions to Firefox

  • LastPass
  • Xmarks
  • Pocket

yum Commands

List commands (including a list of installed packages, or ones ready to be updated)
        yum list
        yum list installed|less
        yum list updates|less

Install a package
        yum install package

Install a group of packages (don't forget quotation marks)
        yum groupinstall "groupname"

Search for a package
        yum search
        yum search package

Remove a package
        yum remove package

Update via yum (including a list that need to be updated)
        yum update

Notable links:

Take a Screenshot in Fedora 20

Press the [PrtSc] button (just don't keep it pressed down too long!) The screenshots show up under
 ~/Pictures
. The default picture viewer in Fedora 20 is "shotwell".

Logout in Fedora 20

Add a logout button in the menu (under the power button), because there apparently isn't a logout button in Fedora 20. (source)
 $> gsettings set org.gnome.shell always-show-log-out true 

Setup Dropbox on Fedora

RECOMMENDED. Simply download the Dropbox rpm (Dropbox RPMs
You can even install and control via Dropbox via commandline (important for server/non-graphical node situations) (see above)

OR. Compile from source (Dropbox RPMs here too

Get Motherboard Information in Windows

To get information on what motherboard you've got in your computer, you can either crack open your case, or you can run a simple built-in command. Simply start a windows command line session (C:\Windows\system32\cmd.exe). (Source link)
C:\Users\Username> wmic baseboard get product,Manufacturer,version,serialnumber 

Chrome Complains that I Need to Enter Sync Passphrase (But I've Forgotten It)

If you no longer have access to your custom passphrase, you’ll need to reset sync:

  1. If your synced data (bookmarks, apps, etc) is available on your local computer, sign in to your Google Dashboard. (There will often be a link on the box)
  2. In the Chrome Sync section, click Stop sync and delete data from Google. This step will remove the data from Google’s servers. The data on your local computer won’t be affected.
  3. Wait a few minutes before signing in to Chrome and re-enabling sync on your computer.

(link to google product forms)

Making Personalized Cross-References Only in Apps

{Personal note} Right now, you can only make links to other scripture verses only with mobile apps, not the desktop site.

Steam Not Seeing the Internet

Sometimes in order to get Steam to work, you need to have a browser session opened first, then Steam will connect to servers to login. Otherwise, it will complain that you are not connected to the internet, especially when you are trying to login. (This could be an effect of Safe Eyes controlling the networking stack, or the Asus router's NAT, or some other stupid glitch).

Compare Directories

To compare directories:
diff --brief -r dir1/ dir2/ 

Notes on Ways to Capture Bash Session

To capture a bash session, try the following methods:

1. Capture session with script:
#> script -f 

2. Capture stdout, stderr with 
$> bash command 2>&1 | tee output.txt 

3. Capture PuTTY Session

Can also capture screen history in putty by right clicking the top of the putty window and selecting "Copy All to Clipboard" (then save using your text editor of choice)