Tag Archives: Microsoft Windows

How to upgrade your Fedora system when the Software Upgrade doesn’t work!

Sometimes, if you use Fedora 18 – Spherical Cow, the Software Upgrade program couldn’t work properly. Software Upgrade shows you all the available upgrades but it is not able to install them. The download process starts but it will never finish and you wait for hours with no results. When and if you have this problem you can easily solve it launching a Terminal and typing the command:

yum update

In few minutes (depending on how many updates you need) your Fedora will be updated perfectly.

Last but not least, if you want to have a list of all the potential upgrades on your OS you can type:

yum list updates

and a complete list will be shown.  AddThis

Get power on pdf files and modify them on the fly with pdfmod (PDF Mod) and PDF Editor on Ubuntu

Since its invention, the pdf format has been the most versatile standard to share documents with a fixed layout. Everyday we share, read and create a lot of pdf files but sometimes we would like to modify them to create “new” personalized version more suitable to our needs.

For example, sometimes you need to extrapolate just a page from a pdf files or you want just to create different versions of the same file with few variations for your colleagues. For all these purpose pdfmod is the right solution for you.

Pdfmod has not been developed for some years because the versions we were able to find for Linux were the 2011 ones but, for what we know and tested, it still runs on all main platforms as Linux, Windows and OSX. Pdfmod is  a little bit different from other similar programs because it allows you just to modify the pdf file changing pages order, deleting pages or adding new pages from other pdf files. It also allows you to change some main metadata (title, author, keywords and subjest) of your pdf file in just few clicks and, of course, you can save the modified copy of the original pdf file.

These features could be basic for more sophisticated people but I can assure you that, if you have the need to do this kind of work different times in a week, pdfmod is the software you will use more often. Installation on Ubuntu is very simple, you just have to open a terminal and type:

sudo add-apt-repository ppa:pdfmod-team/ppa
sudo apt-get update
sudo apt-get install pdfmod

and you will find a new PDF Mod launcher into the Accessories menu.

To get complete power on your pdf files we suggest pdfedit (PDF Editor) which allows you to “break” protected pdf files and modify them. To install pdfedit, use Synaptics Package Manager or the Ubuntu Software Center.

Don’t forget, when you use pdfedit you just have to open the “target” pdf file, save it using the Flatten feature you find into the Tool menu and open again the “new” file to modify it without any restriction.

Easy to install and simple to use, in few words the above described programs worth a try!  AddThis

Video – Change GRUB menu list by curemind

AddThis

How to Change the Boot Order in Ubuntu

If you installed Ubuntu and Windows at the same time, you probably noticed that when you start your computer you can choose what operating system to launch. The responsible software for this is usually the GRUB loader and its menu. Obviously, after you install Ubuntu, it is placed as the first option and if you do not explicitly choose Windows in a few seconds, Ubuntu will be started. But what if you want Windows as your default option? Here is how you change the order:

1. Launch a new Ubuntu Terminal (Applications, Accessories). Type in the following command:

sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup

This will create a backup of the GRUB configuration file.

2. Now open the file. We’ll do it with a new command:

sudo gedit /boot/grub/menu.lst

You will be prompted for a password, after which a text editor will be launched. In most of the situations, the menu.lst file contains many comments. You have to search for a line that says

default 0

This should not be very far from the end of file. Here you will have to intervene. After a few lines you will the variable called ‘timeout’ and its value (10 by default). If you want to have more or less time available for choosing your operating system, change the 10 with what number you want.

So back to the boot sequence. Scroll through the file again until you find:

title Ubuntu, kernel 2.6.17-10-generic

There will be more titles. Count the order number of Windows, but start from 0. The value you choose should overwrite the default one. For example, if Windows is the 4th title in the list, you will need to type

default 4

instead of ‘default 0’, which was described above. All you need to do at this point is to save the file and restart your computer. AddThis

Video – Install Macbuntu on Ubuntu 11.04 by seaner992

AddThis

How to Make Your Ubuntu Desktop Look Like the One of Mac OS

If you are a fan of the design proposed by Apple for most of its operating systems, particularly Mac OS X, then there are a couple of things that you should take into consideration and some simple steps to follow. Therefore, you are advised to read the following information carefully in order to achieve the expected outcome in the shortest time.

There are two free pieces of software that can transform your Ubuntu desktop into one that looks identical to the one of Mac OS in no time. The Ubuntu version is called Macbuntu. First of all, you will need to install this program onto your local hard drive. Here is what you need to do for this step:

– If you are using Ubuntu 10.4 Lucid Lynx, you will need to open a new terminal and type the following lines into it:

$wget https://downloads.sourceforge.net/project/macbuntu/macbuntu-10.04/v2.2/Macbuntu-10.04.tar.gz -O /tmp/Macbuntu-10.04.tar.gz
$tar xzvf /tmp/Macbuntu-10.04.tar.gz -C /tmp
$cd /tmp/Macbuntu-10.04/
$./install.sh

– On the other hand, if Ubuntu 10.10 Maverik Meerkat or a similar version is installed in your system, you will need to use a different version of Macbuntu, which can be accessed by typing the following:

$wget https://downloads.sourceforge.net/project/macbuntu/macbuntu-10.10/v2.3/Macbuntu-10.10.tar.gz -O /tmp/Macbuntu-10.10.tar.gz
$tar xzvf /tmp/Macbuntu-10.10.tar.gz -C /tmp
$cd /tmp/Macbuntu-10.10/
$./install.sh

During the install process, you will be provided with the chance of choosing between different options. These are usually dependent on the different ways you wish your desktop to look like. Most of the choices will be based on your visual tastes, so make sure you choose according to them.

Finally, whenever you need to uninstall this special package for some reason you can follow the same procedure described above, with just an exception. Instead ./install.sh you will need to use the ./uninstall.sh command. AddThis

Including a Ubuntu Machine into a Windows Domain

One of the great problems of interoperability between Linux and Windows has been the impossibility of Linux systems for joining a Microsoft Windows network. Subsequently, several standards to achieve this were developed over the years (see Samba), but they were far from offering normal user the chance to achieve this easily.
The infrastructure of many companies around the world, of all sizes, also relies on the use of a Windows domain. In all companies, one priority always stands out. That is to reduce information costs and expenses. Because of this, many of them have opted for the use of computers with Linux operating systems. But in many cases their integration into Active Directory environments was a problem.
Recently, a new tool was created to facilitate the full integration of a Linux system in an AD environment. And as far as today, it seems very promising. Thanks to likewise-Open5 (http://www.likewiseopen.org/), the difficulty of integration is almost null.

The following lines will illustrate the inclusion of Ubuntu in a Windows domain via likewise-Open5.

Installation

Likewise-Open5 Installation process is very simple. It can be done both through the graphical environment and command line. We will use the second variant. Therefore, a new terminal window must be open, in which you specify the following command:

sudo apt-get install likewise-open5

This command should resolve all the dependencies necessary to prepare the machine to be integrated in the Windows domain.

Adding a new machine

To actually add the machine, specify the following command in the terminal window:

sudo domainjoin-cli join domain used

Where DOMAIN is the area used for integrating the machine, and USER is the username that has the corresponding rights. You will be asked for your user password, and once successfully logged in, you are officially added the desired machine. AddThis Flattr this

Set Aero Glass Effect in Ubuntu

In Ubuntu you can set nearly the same aero glass effect to window borders with alpha transparency as available in Windows 7:

– press Alt+F2 to bring up “Run Application” window.
– type gconf-editor into the box, click “Run” to bring up Configuration Editor.
– browse to apps > gwd, look for “metacity_theme_active_opacity” on the right panel.
– change the value in “metacity_theme_active_opacity” from 1 to 0.75 (or smaller such as 0.5 for more transparency).
Then go to System > Preferences > CompizConfig Settings Manager:
– select “Effects” from the left panel.
– tick “Blur Windows” and click the “Close” button. (Note: default values in Blur Windows can be applied.)
Note: If the aero glass effect doesn’t work, check if you have updated your display driver. To check, go to System > Administration > Additional Drivers, activate the recommended graphics driver and restart the system. AddThis mp3 link

Installing YamiPod on Linux: a multi-platform, very versatile iPod Manager

YamiPod is a freeware application to efficiently manage your iPod on Linux. It can be run directly from your iPod and needs no installation. It also has extra features such as rss news and podcast support, remove duplicates, easy notes editor (with multipage support), songs synchronization, playlists export, a built in music player and much more. It has been translated in 12 languages.

On Linux, the installation is really simple:

  • have at least one song on iPod
  • copy the libfmodex audio library to /usr/lib (you need root privileges). You’ll find this file in the package you’ve downloaded
  • mount your iPod somewhere inside /mnt or /media with read/write access
  • make sure you have the df command installed, which is usually part of any standard linux distribution.

To run YamiPod just double-click on YamiPod’s binary.

Using YamiPod is also so simple when you want to Copy  Music to iPod: Drag&drop files into the song listbox. You can even drag and drop folders, YamiPod will add all valid music files found in sub folders.

In the window that will appear you’ll be able to assign song information (title,album name, artist…) for each single file or setting them for every file ticking the All checkboxes.

In Playlist tab you can select:

  • Destination: select a playlist where to add all dragged songs.
  • Lyric filename: how lyric should be named.
  • Create playlist from folder: this will add all songs in a folder to a playlist named as the folder. For example if you dragged a folder called Music with 2 subfolders: 70’s and 80’s containing various files. Files in 70’s will be added to a newly created folder called 70’s. Files in the other folder will be added to a playlist called 80’s.

In Advanced tab you can select:

  • Auto capital first letter: will titlecase all song tags.
  • If duplicated: what to do if song exists on iPod.
  • Get song info by path and filename: if your song tags are missing but you named and placed your song following a particular order, you can tell YamiPod to get song tags out of filename a path.

Tips:
Holding SHIFT while dragging will add songs to currently selected playlist. If you’ve selected multiple songs to add you can quickly edit next (previous) song information by pressing ALT+down (up). AddThis mp3 link

Get Kindle for PC to Ubuntu (if you really don’t like Calibre)

Amazon’s Kindle a popular portable e-book reader device, lately made Kindle for PC application that allows you to download and have books on your computer rather than having a portable e-book reader device. There’s only Kindle Windows version but the nice thing is you can have this application in Linux.
This is tested in Ubuntu 9 running Gnome. You can use different version of Linux, but first you must have Wine HQ installed to you computer. Then download the EXE file of Kindle for PC application in Amazon.
Install this with Wine HQ software loader and proceed to the normal installation, the same thing that you do in Windows environment.
Note:

– At your first run you won’t see anything at all

– Configure Wine first and add Kindle for PC as an application and make it run in Windows 98 mode

– If it won’t work, change to other mode

– When it opens successfully you have to input you Amazon email add and password to register the software.

But, please, don’t forget that if you prefer open source software, you can directly use Calibre, a powerful free software we posted a while ago. AddThis