Red Hat :: Emacs: Cannot Open Termcap Database File

Oct 17, 2010

i have just installed the fedora 13 and emacs, after intalling the emacs when i try to load it i get the next message [root@localhost Eli]# emacs emacs: Cannot open termcap database file

View 3 Replies


ADVERTISEMENT

Fedora :: Termcap Text File Missing When Trying To View The /etc/termcap File

Feb 5, 2011

I'm trying to view the /etc/termcap file, but it doesn't seem to exist. Am I missing something on my install? I used the Fedora Core 14 live CD to install it to my hard disk for a dual boot configuration with Win 7.

View 2 Replies View Related

General :: (xubuntu) Click On Webpage File And Open File With Emacs?

Aug 26, 2010

I am using xubuntu and there are a few types of files on website that instead of downloading and saving and then opening with emacs, I would rather when the radio button choice comes up say open with emacs. I am using xubuntu with xfce, and there is no line for a command to be entered as some ubuntu editions have. In the choice of changing the opening program from mousepad to something else, it says search and allows to navigate to find a program, but I cant find emacs anywhere not in etc/ or elsewhere. So where is its executable to direct the program chooser to?

View 1 Replies View Related

Ubuntu :: Open File From Webpage In Emacs?

Aug 25, 2010

When clicking on a file in a webpage such as a .tex file the default viewer is mousepad. I search for Emacs to open it, but browsing gets me no where. How do I find it or set it so that I can open directly files in it without explicitly saving them

View 2 Replies View Related

Software :: Emacs: Open A File In The Predefined Frame?

Nov 16, 2010

I split vertically Emacs window to 2 frames. In the left frame I edit the code, in the right frame I navigate through files and directories in Dired mode.It is possible to tell Emacs that anytime I choose the file and press Enter in the right frame, the file will be opened in the left frame?I am almost sure that there is a solution for this but I cannot figure out how to do it, and I was not successful for a moment to google for a correct solution

View 1 Replies View Related

Ubuntu :: Code In Emacs File To Start Emacs Maximized?

May 17, 2010

I was using the following code in my .emacs file to start emacs maximized:

Quote:
(defun toggle-fullscreen ()
(interactive)
(x-send-client-message nil 0 nil "_NET_WM_STATE" 32
'(2 "_NET_WM_STATE_MAXIMIZED_VERT" 0))
(x-send-client-message nil 0 nil "_NET_WM_STATE" 32

[Code]...

View 2 Replies View Related

Ubuntu :: Kubuntu 10.04 LTS - To Open Wdb Or Mdb - Database File

Oct 20, 2010

I'm using kubuntu 10.04 LTS and i need to open a wdb or a mdb (database file) and then save in one of those formats for a computing course I'm doing.

View 2 Replies View Related

Ubuntu Multimedia :: 11.04 - Banshee 2.0 Unable To Open Database File

Jul 31, 2011

I'm experiencing a problem running Banshee 2.0 on my Ubuntu 11.04 system. Basically, I'm getting the following fatal error, the code of which is quoted hereunder. Of note is that uninstalling and reinstalling Banshee (through Ubuntu Software Centre) doesn't fix this problem. Incidentally or not, I also seem to have a problem with my other (and preferred) media player, Amarok. This is the error code:

Code:
Si verificata un eccezione non gestita: Sqlite error 14: unable to open database file (SQL: UPDATE CorePrimarySources SET CachedCount = 1568 WHERE PrimarySourceID = 1)
at Hyena.Data.Sqlite.Connection.CheckError (Int32 errorCode, System.String sql) [0x00000] in <filename unknown>:0
at Hyena.Data.Sqlite.Connection.Execute (System.String sql) [0x00000] in <filename unknown>:0
at Hyena.Data.Sqlite.HyenaSqliteCommand.Execute (Hyena.Data.Sqlite.HyenaSqliteConnection hconnection, Hyena.Data.Sqlite.Connection connection) [0x00000] in <filename unknown>:0
Exception has been thrown by the target of an invocation.

View 2 Replies View Related

Server :: Open A Database File In Sqlitebrowser Returns An Error?

Oct 31, 2010

Code:
kenny_strawn@kenny-AOA110:~$ sqlite3 -html -line /var/www/fluxbb/ProprietarySuckware 'select o_base_url from memos'

Error: unable to open database "/var/www/fluxbb/ProprietarySuckware": unable to open database file
kenny_strawn@kenny-AOA110:~$

This database was automatically generated by FluxBB, so I am wondering just why it isn't opening.

View 2 Replies View Related

Ubuntu :: Open Emacs With Ssh?

Jun 30, 2011

I am using emacs at work, and when I am home I use ssh through the terminal to connect to my computer at work. However starting emacs through ssh only gives me emacs in the terminal. As it is a bit awkward to work with I would like to open the GUI version of emacs through ssh. I tried installing tramp, but that did not seem to have any effect.

View 7 Replies View Related

General :: How To Open Emacs In Its Own Window

Aug 20, 2010

I am doing some project work and for that using the server at college with ssh connection. Every time I try to open emacs on the terminal after connecting, it opens emacs in the terminal itself i.e. not its own window. On my laptop on which ubuntu is installed, emacs always opens up in its own window an thats how I am used to it. There are several problems when it opens in the terminal like when I try to use commands such as M-V, actually terminal's view menu opens up, its very frustrating. Also I am pretty sure that the college server runs on red hat and has X installed on it. So what do I need to do to get my emacs window back.

View 4 Replies View Related

General :: Open Emacs In Maximized Window?

Apr 20, 2010

Every time i open Emacs window,it opens with a width=(monitor-width)/2;height=(3/4)*(monitor-height)I click the maximized icon every time.How can i set the maximized emacs window as default?

View 4 Replies View Related

General :: How To Open Multiple Files With Splitting Window In EMacs

Apr 21, 2010

What's the command to open multiple files in Emacs vertically/horizontally splitting window.

View 4 Replies View Related

Software :: Error: Cannot Open Packages Database In /var/lib/rpm

Jan 1, 2010

I met this problem when I was installing MaterialStudio4.4 .

error: db4 error(13) from dbenv->open: Permission denied

error: cannot open Packages index using db3 - Permission denied (13)

error: cannot open Packages database in /var/lib/rpm

View 2 Replies View Related

Ubuntu :: Emacs .el File Addon?

Mar 23, 2011

I'm new to the emacs thingy. i just moved back to ubuntu.i have found out how to have emacs load the .el file from the .emacs file but i cant seem to use the addon.http://blogs.unity3d.com/2010/01/15/...ty-javascript/that is the addon i am trying to use.this is my .emacs file:

(add-to-list 'load-path "~/.emacs.d")
;; UnityJS mode for emacs
(autoload 'unityjs-mode "unityjs-mode" "Major mode for editing Unity Javascript code." t)

[code]....

View 2 Replies View Related

Ubuntu :: Unable To Open Pdf Document Linked Into The Database

Oct 6, 2010

I have successfully installed endnote x3 running under wine to this document: [URL]..and thanks to winetricks to complete the dll requirement that endnote was asking on startup.

Nos i have two problems: 1/ i am not able to open pdf document linked into the database, i have this error:

Code:
This URL (\Z:mediasda5path oJPP.dataPDFauthor2008-1341524334author2008.pdf) could not be launched

2/I have some issues with the left panel : all text are big black line instead of words (see attachment)

View 3 Replies View Related

Ubuntu Installation :: Can SQL 2008 Open Database Made From Oracle

Feb 17, 2010

My DataBase Teacher wants us to install SQL 2008 cause on 3 days i gotta practice for the big test But the requirements are a ton "Visual Basic 2008 with service pack 1 & IIS" but thats just a tiny part of the problem.! My Windows 7 crashed.! So iam thinking can linux oracle be the answer of my ugly problems.?!Can SQL 2008 open database made from linux Oracle?

View 3 Replies View Related

Slackware :: Add Own Personal Database Of Quotes For The Fortune App To Call When Open A Terminal

Feb 5, 2010

I'm trying to add my own personal database of quotes for the fortune app to call when i open a terminal. I was able to successfully create the data base from a text file along the lines of this thread [URL] And it works when i type :$ fortune mydatabase The problem is, when i open a terminal i dont believe fortune knows to look for the new database, and im yet to see one of my quotes appear. If anyone can point me in the right direction as to where the command is issued to run fortune when i open the terminal

View 5 Replies View Related

Fedora :: Emacs: Set Syntax Highlighting For Unknown File Type

Mar 20, 2010

How can I tell emacs that a file type that it doesn't recognise should have the same syntax highlighting as one it does?

Xfig produces .pstex files which I want to be highlighted like .ps/.eps

View 2 Replies View Related

General :: Windows - Make Emacs Ignore Changes To File On Disk?

Jul 2, 2010

I'm using andLinux and for whatever reason, emacs seems to think that the file I'm editing has been changed every time I try to edit/save and keeps reprompting me. Very annoying. Is there a way to make emacs stop checking the file on the disk?

View 1 Replies View Related

Ubuntu :: Make Emacs Reload A File When Changed On Disk?

Apr 21, 2011

I've noticed that emacs does not notice when an open file is changed on disk (unlike ,say, geany). Is there any way of making it watch for changes of files on disk?

View 1 Replies View Related

Software :: Emacs Freezes Doing DNS Lookup / Fix A Network Configuration File?

Apr 28, 2011

When emacs freezes doing a DNS lookup, that makes it rather hard to fix a network configuration file. Why does it need to do that?

View 8 Replies View Related

General :: Difference Between TERM - TERMCAP And TERMINFO?

Jun 14, 2010

What is a difference between TERM, TERMCAP, and TERMINFO? To connect to a linux server from a terminal emulator on a PC, is it necessary to set all 3 variables?

View 1 Replies View Related

Software :: Recompile Avrdude With A Few New Patches - Use Termcap?

Feb 10, 2010

im trying to recompile avrdude with a few new patches that will make me able to burn arduino bootloader to my 328p microprocessor. The biggest problem i have is that i need to use termcap but i cant find it in aur or anywhere else at archlinux homepage or my system. I used my google skills but failed, all i found was that it is possible to use ncurses instead of termcap but i tried and it fails and i already use ncurses :S....

[Code]....

View 1 Replies View Related

Ubuntu Servers :: Unable To Install Postfix Atal: Open Database /etc/aliases.db: Permission Denied?

Mar 14, 2010

Running newaliasespostalias: fatal: open database /etc/aliases.db: Permission deniedin my /etc I do not have a aliases.db only an aliases.I cp aliases aliases.db but when I try and install post fix again it gives me the same error and aliases.db goes away.

View 9 Replies View Related

General :: Parsing A File Into Database?

Jul 14, 2010

parsing the text file in perl.I have very large text file with plenty of columns and rows.how can i parse the file into Oracle database.

View 3 Replies View Related

Programming :: Unload File From A Database?

Jan 5, 2009

I am trying to unload file from a database. Which contains few lines with the character below. Rest of the data was unloaded appropriately.

Code:

a) What does this below character means?

b) How can i remove it,

I already have

Code:
sed '/^$/d'
c) Will this effect the file by any means (If I am guessing properly, this is the eof notation)

View 5 Replies View Related

General :: Where To Find Network Database File

Jun 26, 2011

i want to write a program that need to know how much data has transmitted in network usage _how much send and how much received_which file , record or structure in which library i have to follow ?

View 2 Replies View Related

Server :: Accessing Database In FBD Data File

Feb 19, 2011

We purchased a new database system at work last October, ditching the old system because of a lack of support from the vendor. This is a retail Point of Sale and Backoffice database system. I am not sure what system the new one runs on, but the system we replaced was a Firebird data base. The reason I am posting is because we are now in need of the information contained in the old database which was not completely imported into the new system. Unfortunately, we parted company with the old vendor under extremely hostile conditions, and they are not a source of help for this problem, nor are the new vendors.

Basically the problem is this: The database in on a Windows XP system and I found a copy of SQL Manager Lite 2008 on the system, which after quite a bit of studying, I figured out how to extract the database into a removable file. I have this file (178MB) on a USB stick in a file called Backoffice.fbd. I can get into this database with MySQL. All I want to be able to do get into the database and create tab deliminated spreadsheet files for each of the database sections (Customers, Repairs, Sales History, stock files, etc.) Is it possible to do this with Ubuntu and MySQL and if so, can an expert suggest one or two things to get me started.

View 3 Replies View Related

Server :: Import A Database File In Mysql?

Nov 1, 2010

i am having a problem while hosting a website on rhel apache server.when i write the url on browser than its doesnt show any page ,neither it displays any error.However when i am hosting a simple php webpage apart from that website its works fine.i also want to know how can i import a databe file in mysql which is a part of that website.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved