Sponsored Content
Operating Systems Linux Basic Ubuntu command or script list Post 302547364 by Corona688 on Monday 15th of August 2011 10:53:05 AM
Old 08-15-2011
Quote:
Originally Posted by Royalist
My latest download of mtCellEdit calls for various items to be installed and I have not yet been able to find them. They are "
NU or GNU-like toolchain including gcc, make, bash, and yacc/Bison.
GTK+ version 2 (specifically 2.6 or later).
Cairo."
you want gcc, I think.
Quote:
Then the following libraries are required: -mtKit zlib Low level C routines, including strings, UTF-8, ZIP file handling, preferences, trees. libmtcelledit mtKit The spreadsheet engine, including all file handling and general operations. mtPixel mtKit The graphics engine, including font rendering, file handling, and painting. mtcedgraph mtKit, libmtcelledit, mtPixel, Cairo The graphing engine, including all file handling and general operations. mtGEX mtKit, mtPixel Various GTK+ version 2 function utilities including a file picker, colour picker, and preferences editor.
Are there any shortcuts to all this as it is so time consuming?
No, there aren't. You're using a binary distribution which separates out the .a and .h files into soandso-devel packages, which need to be installed laboriously and individually. This is to save the people who don't need them a few kilobytes of space. Debian/Ubuntu also occasionally name them things you'd never guess.
 

9 More Discussions You Might Find Interesting

1. Tips and Tutorials

Unix Basic Command

A at : execute commands at a specified time/date. awk: a scripting language, especially useful for manipulating text and automation. B bash : invokes the Bourne Again Shell (standard on most boxes). batch: execute comands when load permits. bc : interactive C-like calcultor (integers... (6 Replies)
Discussion started by: binhnx2000
6 Replies

2. UNIX for Dummies Questions & Answers

Basic Q: getting list of all files of type within folder & subfolders

A painfully rudimentary UNIX question for somebody. I've been puzzling over this for the last hour but can't find the right command. I'm simply trying to get a list of all files - and their full paths - within a folder & subfolders which have extension .php and .js. That's it! No amount of... (1 Reply)
Discussion started by: AtomicPenguin
1 Replies

3. Shell Programming and Scripting

Have a basic 'for i in cat list' - Trying to get i to be set to a name with a space

Hi Have a file called ldap.list: ****** "o=unix forum" o=groups ****** i wrote a basic script that runs: for i in `cat ldap.list` do ldapsearch -h host -p 389 -b $i THE PROBLEM: - It looks like when the for i in cat ldap.list runs, it doesn't seem to care about the " ", it... (2 Replies)
Discussion started by: littlefrog
2 Replies

4. UNIX for Dummies Questions & Answers

Help with basic command that will not work

I need to be able to look up a file system with the inode number 214743 and, get its absolute reference in a single line... I have tried.. "find / -inum 214743 -print" (1 Reply)
Discussion started by: blankets3
1 Replies

5. UNIX for Dummies Questions & Answers

(really basic) List directories only?

I'm looking for a Linux equivalent to the DOS dir /ad that lists the directories ("folders" in Windows) in the current directory. I looked at the ls manpage, which says -d, --directory list directory entries instead of contents, and do not... (4 Replies)
Discussion started by: CRGreathouse
4 Replies

6. Solaris

Required list of all basic commands for a beginners

I want the commands list to view only files, and only directories and all the basic commands for a beginner of solaris (1 Reply)
Discussion started by: omsingh2k5
1 Replies

7. UNIX for Dummies Questions & Answers

Basic IF Command Question

Hi, I have a months worth of data that I need to separate into weekly files. There is a date column with dates in the following format: YYYYMMDD. I'm thinking I can create the weekly files by using a grep command combined with an IF command and specify each day of the specific week I'm... (1 Reply)
Discussion started by: cwl
1 Replies

8. Windows & DOS: Issues & Discussions

[Template] Send SMTP email with Visual Basic Script (vbs) from Command Prompt using CDO

This is a script in visual basic that basically sends an email from an existing account, in this case the example is provided for live.com. It uses CDO (Collaboration Data Objects). All you need to do is replace the fields with the proper information. The email is send from Command Prompt... (0 Replies)
Discussion started by: Tribe
0 Replies

9. UNIX for Beginners Questions & Answers

Another one line command where I'd like to determine if Ubuntu or Red Hat when running command

Hello Forum, I'm making very good progress on my report thanks to the very helpful people on this forum. I've been able to successfully create my report for my Red Hat servers. But I do have a few ubuntu servers in the mix and I'd like to capture some data from them when an ssh connection is... (8 Replies)
Discussion started by: greavette
8 Replies
doc::lua-oocairo-fontface(3)				       Lua OO Cairo binding				      doc::lua-oocairo-fontface(3)

Name
       lua-oocairo-fontface - Unscaled font face object

Introduction
       Cairo font face objects are returned by the "get_font_face" method on context objects (see lua-oocairo-context(3)).  They represent a font
       selection, but not including the scaling used to create a font of a particular size.  See lua-oocairo-scaledfont(3) for details about fonts
       at a particular size, which can be created by scaling one of these font face objects.

       Font face objects can be compared with the "==" operator.  This will compare the identity of the objects, so different Lua objects which
       refer to the same "cairo_font_face_t" will compare as equal.

Methods
       Font face objects provide the following methods.  Some of these will not be defined if the module was compiled against a version of Cairo
       too old to support them.

       fontface:get_family ()
	   Returns a string containing the name of the family selected with the "select_font_face" method.  Throws an exception if called on a
	   font face which wasn't created with the aXXtoyaXX API.  Only available with Cairo 1.8 or better.

       fontface:get_slant ()
	   Returns the slant style of the font face created with the toy API, or throws an exception for other font faces.  The return value will
	   be a string, with one of the values accepted by the "select_font_face" method.  Only available with Cairo 1.8 or better.

       fontface:get_type ()
	   Returns a string indicating what backend library handles this font.	The return value will be one of the following:

	   toy Created using Cairo's aXXtoyaXX font API, probably selected with the "select_font_face" method.

	   ft  Created with the FreeType API.

	   win32
	       A Windows native font.

	   quartz
	       A MacOS X native font.

	   user
	       A font created with custom code.

       fontface:get_weight ()
	   Returns the weight of the font face created with the toy API, or throws an exception for other font faces.  The return value will be a
	   string, with one of the values accepted by the "select_font_face" method.  Only available with Cairo 1.8 or better.

1.4								    2011-05-18					      doc::lua-oocairo-fontface(3)
All times are GMT -4. The time now is 03:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy