Related Posts Plugin for WordPress, Blogger...

Wednesday, January 21, 2015

times new roman courier helvetica fonts in matlab linux ubuntu plots

In general matlab plot fonts are not clearly visible in linux especially in ubuntu.

There we need to install some fonts.

open terminal by pressing Alt+Ctrl+T

then enter the following:

sudo apt-get update

sudo apt-get install gsfonts-x11

This will install only Helvetica very small and very large fonts.

to install intermediate size fonts also

enter the following command in terminal:

sudo apt-get install xfonts-75dpi xfonts-100dpi

But still times new roman and courier arial etc truetype fonts will not work yet...

installation of ttf-mscorefonts-installer also will not serve the purpose.

ie;  sudo apt-get install ttf-mscorefonts-installer

The problem is that in linux matlab we need postscript fonts to display in figures

ie; the font files with an extension .pfb, .afm etc...

Here is a list of fonts available online.

/AlbertusMedium               (0001____.pfb) ;
/AlbertusExtraBold            (0002____.pfb) ;
/AntiqueOlive                 (0003____.pfb) ;
/AntiqueOlive-Italic          (0004____.pfb) ;
/AntiqueOlive-Bold            (0005____.pfb) ;
/ClarendonCondensed           (0006____.pfb) ;
/Coronet                      (0007____.pfb) ;
/Courier                      (0008____.pfb) ;
/Courier-Italic               (0009____.pfb) ;
/Courier-Bold                 (0010____.pfb) ;
/Courier-BoldItalic           (0011____.pfb) ;
/Garamond                     (0012____.pfb) ;
/Garamond-Italic              (0013____.pfb) ;
/Garamond-Bold                (0014____.pfb) ;
/Garamond-BoldItalic          (0015____.pfb) ;
/LetterGothic                 (0016____.pfb) ;
/LetterGothic-Italic          (0017____.pfb) ;
/LetterGothic-Bold            (0018____.pfb) ;
/Marigold                     (0020____.pfb) ;
/CGOmega                      (0021____.pfb) ;
/CGOmega-Italic               (0022____.pfb) ;
/CGOmega-Bold                 (0023____.pfb) ;
/CGOmega-BoldItalic           (0024____.pfb) ;
/CGTimes                      (0025____.pfb) ;
/CGTimes-Italic               (0026____.pfb) ;
/CGTimes-Bold                 (0027____.pfb) ;
/CGTimes-BoldItalic           (0028____.pfb) ;
/Univers                      (0029____.pfb) ;
/Univers-Italic               (0030____.pfb) ;
/Univers-Bold                 (0031____.pfb) ;
/Univers-BoldItalic           (0032____.pfb) ;
/UniversCondensed             (0033____.pfb) ;
/UniversCondensed-Italic      (0034____.pfb) ;
/UniversCondensed-Bold        (0035____.pfb) ;
/UniversCondensed-BoldItalic  (0036____.pfb) ;
/Arial-Roman                  (0037____.pfb) ;
/Arial-Italic                 (0038____.pfb) ;
/Arial-Bold                   (0039____.pfb) ;
/Arial-BoldItalic             (0040____.pfb) ;
/TimesNewRoman                (0041____.pfb) ;
/TimesNewRoman-Italic         (0042____.pfb) ;
/TimesNewRoman-Bold           (0043____.pfb) ;
/TimesNewRoman-BoldItalic     (0044____.pfb) ;
/Symbol                       (symbol__.pfb) ;
/Tidbits                      (tidbits_.pfb) ;









The download link is here:

http://goo.gl/hrm21H

Download the file and keep it on Desktop.

Then open a terminal by "Alt+Ctrl+T"

and enter the following commands:

cd Desktop

tar -xzvf truetype.tar.gz

sudo cp -r truetype /usr/share/fonts/X11/

sudo fc-cache -fv

This will make the truetype fonts clearly visible in matlab linux...

But this is also not a complete solution...

Some very large and some italic fonts are not working properly...

But it is a major step forward for the basic problem...

Cheers,
SANJEEV

Tuesday, November 27, 2012

Lenovo G580 Atheros AR8132 ethernet Ubuntu 12.10

To get Atheros AR8132 gigabit ethernet in Lenovo G580 laptop, in UBUNTU 12.10; Download the following file


Wednesday, October 10, 2012

Install xcrysden simplest way for all UBUNTU

XCrySDen is a crystalline and molecular structure visualisation program, which aims at display of isosurfaces and contours, which can be superimposed on crystalline structures and interactively rotated and manipulated. It can run on most UNIX platforms, without any special hardware requirements.
Here is the simplest  installation procedure for xcrysden  installation.

The general method for Ubuntu has been given in this post.

Here is the simplest method of all.

Tuesday, December 27, 2011

Ultimate solution for all GRUB errors and boot repair in Ubuntu

  Here is an ultimate solution for all boot errors and GRUB errors in Ubuntu Linux after reinstalling windows along with Linux. All that you have to do is insert a live CD or bootable USB and go into Ubuntu live session.

  Open a terminal in the live session and enter the following commands:

Tuesday, November 8, 2011

Configure beamtele cable broadband connection in ubuntu

Beam Telecom is the group company of ACT TV a leading Multi Service Provider offering entertainment and broadband services and is headquartered at Bangalore.

Beam tele basic connection comes with 10Mbps full duplex connectivity.

To configure it for automatic connection in ubuntu, you may need ethtool.

This you can download from...

http://packages.ubuntu.com/search?keywords=ethtool

By selecting your Ubuntu version (Natty, Hardy, or Oneiric etc...) and System architecture ie; i386/x64

For example:

http://packages.ubuntu.com/natty/amd64/ethtool/download

http://packages.ubuntu.com/natty/i386/ethtool/download

http://packages.ubuntu.com/hardy/amd64/ethtool/download

http://packages.ubuntu.com/hardy/i386/ethtool/download

http://packages.ubuntu.com/lucid/amd64/ethtool/download

http://packages.ubuntu.com/lucid/i386/ethtool/download

http://packages.ubuntu.com/maverick/amd64/ethtool/download

http://packages.ubuntu.com/maverick/i386/ethtool/download

http://packages.ubuntu.com/oneiric/amd64/ethtool/download

http://packages.ubuntu.com/oneiric/i386/ethtool/download

http://packages.ubuntu.com/precise/amd64/ethtool/download

http://packages.ubuntu.com/precise/i386/ethtool/download


Download it into pendrive or somewhere else and by double clicking on it an automatic installer will take care of the installation in your Ubuntu system.

After that press Alt+F2 and in the run command typein

                                          xterm


Then in the new window opened, copy and paste the following line and press enter:

sudo echo "ethtool -s eth0 speed 10 duplex full autoneg on" >> /etc/rc.local

Enter the root password / Login password if you are admin and enter...

Then restart the system...

Cheers,
SANJEEV
Print Friendly and PDF

Tuesday, September 13, 2011

How to get sms alert for gmail inbox

Here is a way you can get gmail alert on your mobile. ie; when ever a new mail arrives in your inbox, you will receive a message in your mobile with the subject line and first few words from the main body of the mail. Here it follows...


Wednesday, September 7, 2011

HP LaserJet 1020 Plus Printer in Ubuntu Natty Maverick Lucid

HP Printer Configuration in Ubuntu has a gui tool hplip-gui

But some times it is giving the following error:



 error: Plug-in download failed: [Errno 110] Connection timed out
error: ERROR: Plug-in file not found (server returned 404 or similar error). Error code: [Errno 110] Connection timed out

Error code: [Errno -2] Name or service not known


This  can be resolved with the following simple solution:



Tuesday, August 30, 2011

How to install g77 for open suse 11.3 and open suse 11.4

Here is a simplest way to install g77 in open suse 11.3 and 11.4

Go to the following link and select 1-Click Install...


Tuesday, March 29, 2011

geant4 direct installation for UBUNTU and DEBIAN

Here is the simplest installation method for geant4

Open terminal from Applications --> Accessories --> Terminal and type in:

sudo gedit /etc/apt/sources.list
Now add the following lines at the end of the file and then save it and close.

Sunday, February 27, 2011

How to install Geant4 in Ubuntu Linux...

Geant4 is a toolkit for the simulation of the passage of particles through matter. Its areas of application include high energy, nuclear and accelerator physics, as well as studies in medical and space science. The two main reference papers for Geant4 are published in Nuclear Instruments and Methods in Physics Research A 506 (2003) 250-303, and IEEE Transactions on Nuclear Science 53 No. 1 (2006) 270-278
In Ubuntu you need the following prerequisites... 

Friday, February 25, 2011

g77 offline installation for all Ubuntu and Debian versions

Here is the simplest off-line installation procedure for g77 (fortran compiler) installation.

The general method for Ubuntu has been given in this post.

Here is the simplest method of all.

Just download one of the following  files depending on your architecture...

Saturday, January 29, 2011

Bootmgr is missing after Grub Restore

If you windows is reinstalled after Linux, and then grub is restored in the recent versions of grub one may come across the problem in windows booting:

 BOOTMGR is missing 
Press Ctrl+Alt+Del to restart

This is because, grub-restore will just recovers the earlier configuration file which contains the information about the UUID (Universally Unique IDentifier) of the earlier partition.

A simplest solution for this is to comment the line with -fs-uuid for windows partition.

To do this open terminal from Applications --> Accessories --> Terminal
Then type in:

gksudo gedit /boot/grub/grub.cfg

Find out the menu entry for windows ie;

the entry which starts with
#menuentry "Windows xxxxxxxx (loader) (on /dev/sdax)"{

With in that entry put a # symbol before the line

#        search --no-floppy --fs-uuid --set xxxxxxxxxxxxxxxxx


Then save the file, close and restart the system to go into windows...

Cheers.........
Print Friendly and PDF

java plugin for firefox in UBUNTU sun-java6-jre Start: applet not initialized

In normal Ubuntu CD installation, jre is not installed by default. Even with Ubuntu Ultimate, openjdk6-jre is installed instead of sun-java6-jre


This is usually giving raise to a problem in firefox while opening the sites which contain java-applets.  The usual error message that is displayed in the status bar on the left bottom corner is:

Start: Applet not initialized.

To resolve this error one need to install

Monday, January 10, 2011

Wallpapers I Like - 002

Source
my.opera.com

http://files.myopera.com/brokenheartvn/albums/762521/SSLLT_1026.jpg 

Wallpapers I Like - 001

Source
my.opera.com
 
 
http://files.myopera.com/m2m99/albums/774093/wallpaper_Opera_Web_browser_11_By%20mRm.jpg

Saturday, January 8, 2011

Mobilemath 1.7 jar for mobile phones

MobileMath is the most powerful mathematical tool for mobile. This software is indispensable for students, engineers and researchers. The famous MobileMath is designed to meet the needs of each individual (student, engineer, researcher ....). When you use MobileMath can make your mobile to become a powerful tool, and get what you want. All calculations made by MobileMath are very accurate.
This pack contains:

Saturday, January 1, 2011

Happy New Year 2011 Telugu Calendar


U will have once in a lifetime dates…
The first day of this year would be January 1, 2011 –> 1-1-11
On 9th October the date will be –> 9-10-11 (ascending order)
On 11the of November the date will be –> 11-11-11 (unique number)
On the 20th of November the date will be –>20-11-2011
On the 13the December the date will be –> 13-12-11 (descending order)
It Stars With Monday
N Ends Also On Monday !
This Year Has Got
Highest Number Of Sundays N Saturdays !
The calendar exactly matches with that of 2005!

Telugu_Calendar_2011_12_months_web.pdf

Source: http://telugucalendar.org/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEii2UM8nwVMMhRrFb33c5W7cbJh-BIuUe4LVg43NksDtJD1O2BZ6JkDMWkckcao-Js5dzKl55EW1RcjX6SuVHM5MBGZdMkVQ_c3kG0JolO3BiZxKZoDtyjPCIJiEwzQP4k63agev9DkrAo/s1600/2011+TELUGU+CALENDAR.jpg



http://www.theholidayspot.com/newyear/printable_calendars/calendar_2011.jpg




http://files.myopera.com/rama2222/albums/5635442/Happy%20New%20Year%202011_32572.jpg

http://files.myopera.com/rama2222/albums/5635442/Happy%20New%20Year%202011_32573.jpg

http://files.myopera.com/rama2222/albums/5635442/Happy_New_Year_2011-02.jpg

http://api.ning.com/files/ESOH7I50UtRZRNVNqSM6xhW8pIV0r4dudPiZDApGkgZsopIOR-biVsAueJ-JkYbFrYWdbIQyQvMA7XpmPtoxR*6HktyYPNLf/happy_new_year_2011wide.jpg

http://files.myopera.com/m2m99/albums/565103/mrm%20Funny%2066.jpg

http://files.myopera.com/m2m99/albums/604687/mrm%20Art%20Inspiration%202.jpg

http://files.myopera.com/m2m99/albums/565105/Creativity%20Photoshop%20mrm%202.jpg

http://files.myopera.com/m2m99/albums/600302/wallpaper%20Love%20Photoshop%20Digital%20Art%20mrm.jpg

http://files.myopera.com/m2m99/albums/2969241/Photo%20Manipulation%201-Digital%20Art%20By%20mrm.jpg


http://www.trendzinfo.com/wp-content/uploads/2010/12/2011-new-year-wallpapers1.jpg

http://www.tnpsc.com/downloads2010/NewYear2011.jpg

Thursday, December 30, 2010

Origin 8 Graph Plotting Tool Tutorial Linux Windows

Origin is a software application with tools for data analysis, publication-quality graphing, and programming.

These system requirements apply to Origin 8.5, OriginPro 8.5, and the OriginPro 8.5 Student Personal Use version.

System requirements:

Sunday, December 26, 2010

How to install XCrySDen in Ubuntu Linux

XCrySDen is a crystalline and molecular structure visualisation program, which aims at display of isosurfaces and contours, which can be superimposed on crystalline structures and interactively rotated and manipulated. It can run on most UNIX platforms, without any special hardware requirements.

Saturday, December 25, 2010

How to install Quantum Espresso in Ubuntu Linux

Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials (both norm-conserving and ultrasoft).

Install Intel Fortran, C++ (ifort, icc) in Ubuntu Linux

You may need to install build essential as pre-requisite
for that open the terminal from Appliations --> Accessories --> Terminal, then type in


sudo apt-get update
sudo apt-get install build-essential

Intel Fortran Compiler for Linux is available at



Wednesday, December 22, 2010

Geany - The best text editor ( Free and Cross-Platform )

Geany is a small and lightweight Integrated Development Environment. It was developed to provide a small and fast IDE, which has only a few dependencies from other packages. Another goal was to be as independent as possible from a special Desktop Environment like KDE or GNOME - Geany only requires the GTK2 runtime libraries.
Some basic features of Geany: 

Tuesday, December 21, 2010

Proxy settings in Linux Ubuntu and Debian for apt-get wget

A proxy server, also known as a "proxy" or "application level gateway", is a computer that acts as a gateway between a local network (e.g., all the computers at one company or in one building) and a larger-scale network such as the Internet. Proxy servers provide increased performance and security. In some cases, they monitor employees' use of outside resources.


One can do proxy settings graphically from System --> Preferences --> Proxy Settings
and apply "System wide" But if there is an authenticated proxy, It was unable to apply properly. That's why it is better to apply manually all the settings.

Proxy settings has to be done in 3 areas...

Monday, December 13, 2010

How to fix " NTLDR is Missing " in windows XP ( Repair / Restore Windows XP in 4 steps )

In windows XP sometimes we will see NTLDR is Missing press Ctrl+Alt+Del to restart.
http://i56.tinypic.com/ztj3x1.jpg

This occurs due to the following reasons.

How to fix " bootmgr is missing " in windows 7 and windows vista

If you see a message “bootmgr is missing” on starting your windows vista or windows 7 as shown

Bootmgr is missing: Windows 7

Insert windows installation DVD. Select language, Keyboard layout and click next.

Friday, December 10, 2010

Preparing windows to install UBUNTU Linux

In new laptops or desktops with windows os, all space will be occupied by C drive only (or) all space would be given to C drive. This is the procedure to resize it and make new partitions.


To shrink C drive in Windows Vista/Windows 7, Right click on My computer and select "Manage"

Wednesday, December 8, 2010

Restore or Reinstall Ubuntu grub after reinstalling Windows

If we reinstall windows on a Windows/Ubuntu dual boot system, we can not use Linux, until the Grub (GRand Universal Bootloader) is restored.

To restore grub, Insert the live CD/DVD of Ubuntu and restart the system to start a live session.

Installing g77 in Ubuntu intrepid (8.10), Jaunty (9.04), Karmic (9.10), Lucid (10.04), Maverick (10.10), Natty (11.04)

g77 is a part of gcc (GNU Compiler Collection) provided by GNU. But GNU stopped supporting it from gcc-4.2. Current Ubuntu versions starting from Ubuntu 8.10 (Intrepid) are using gcc-4.2 or higher. Current Ubuntu Maverick is using gcc-4.5. So to install g77 we need to install gcc-3.4. This package is included in the "universe" repositories of Ubuntu "hardy" distribution. Hence to install g77 in Ubuntu Intrepid, Jaunty, Karmic, Lucid, Maverick versions we need to add the hardy universe repository to the sources.list. Here is the procedure for it.

Monday, December 6, 2010

Change XP Product KEY

Hi friends Here is the Straight forward way to convert your windows XP Genuine:


The Steps are:

1. Click on Start and then Run.

2. In the text box in the Run window, type regedit and click OK. This will open the Registry Editor program.


Friday, October 15, 2010

Thursday, December 13, 2007

How to view animated .gif images in linux?

Generally we come across these animated images in cell phone wallpapers.To view these wall papers in windows we use 'Windows Picture And Fax Viewer.' There we can observe motion.

But in Linux if you open with 'Image Viewer' no motion is observed in the animation.The easiest way to observe this motion is just right click on the image and open with any web browser like mozilla firefox etc...

Otherwise

How to add Sub Titles of movies

You can download the subtitles of all English movies and famous telugu movies from the site


http://www.opensubtitles.com


Down load the subtitles and

Wednesday, December 12, 2007

Torrents

What is Bit Torrent ?

BitTorrent is a peer-to-peer file sharing (P2P) communications protocol. BitTorrent is a method of distributing large amounts of data.Simply using this one can download large size of video/audio (or any) files easily.

How to Download?


To download the torrent files of various

To play .rm and all types of video files in debian and to listen music from raaga.com




To play .rm (Real Media) Files in debian you need to install 'w32codecs'. You can get these codecs by adding the following repository to '/etc/apt/sources.list
' file.