Ubuntu Installation :: Error Installing TCL In 10.10 / Unterminated Quoted String?

Sep 24, 2010

Iḿ trying to install TCL 8.0.5 onto my machine, if i type �wish it tells me there are already these programs:

Code:
The program 'wish' can be found in the following packages:
* tk
* tk8.4
* tk8.5
* tk8.3
Try: sudo apt-get install <selected package>
The error trace is here:

Code:
luke@luke-laptop:~/Downloads/tcl8.0.5/unix$ ./configure
loading cache ./config.cache
checking for ranlib... ranlib
checking whether cross-compiling... no
checking for getcwd... yes
checking for opendir... yes
code....

checking system version (for dynamic loading)... ./configure: 1: Syntax error: Unterminated quoted string
Really not sure whats wrong, I�m horrible with linux if I�m honest, tried a couple of google searches but didn�t make very much progress.

View 2 Replies


ADVERTISEMENT

General :: Bash: Substitute Parameter In A Quoted String - Stored In Another Variable

Jan 31, 2010

(variable substitution?)
(parameter expansion?)
Code:
run_repeatedly()
{
NUM=0
while [ <irrelevant stuff here> ]
[Code]....

run_repeatedly "programX -o "./messy/path/output-$NUM.txt"" The echo inside the loop prints "...-$NUM.txt"; obviously I'm aiming to have bash substitute the iteration number so that I end up with many output files not 1.

View 5 Replies View Related

Programming :: Using Sed With Variable Created Using Xargs / Unterminated Error

Jan 12, 2009

I have an awk program that finds all files of a specific filename and deletes them from selected subdirectories. There is logic in the awk to avoid certain subdirectories, and this is initialized via a parameter in the beginning statement of the awk. The parameter should have all of the subdirectory names at the top level. This varies from time to time, so I cannot hard-code the value.I'm having a problem initializing the awk parameter using sed. I'm setting a variable (named subdir) using an "ls" command piped to "xargs". I'm then trying to substitute that value into the awk using the sed command.

View 3 Replies View Related

Ubuntu Installation :: Get Error 11: Unrecognized Device String When Select Other Operating Systems

Jan 31, 2010

i dont know if this is the right section for this but i installed linux after i installed windows server 2003 and some how the grub loader got messed up and wouldnt show, only windows would boot. i fixed the grub loader through my live disc and when i select Other operating systems i get Error 11: Unrecognized device string. here is my fdisk -l.

Disk /dev/sda: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x2c8e2c8d

Device Boot Start End Blocks Id System /dev/sda1 * 1 6 48163+ 7 HPFS/NTFS /dev/sda2 7 34329 275699497+ 7 HPFS/NTFS /dev/sda3 34330 38227 31310685 83 Linux /dev/sda4 38228 38913 5510295 db CP/M / CTOS / ...

Disk /dev/sdb: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x99b707d2

Device Boot Start End Blocks Id System /dev/sdb1 1 38912 312560608+ 7 HPFS/NTFS

Disk /dev/sdc: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x00000080

Device Boot Start End Blocks Id System /dev/sdc1 1 6 48163+ de Dell Utility /dev/sdc2 7 38227 307010182+ 7 HPFS/NTFS /dev/sdc3 38228 38913 5510295 db CP/M / CTOS / ...

and here is my menu.lst

[Code]......

View 2 Replies View Related

Installation :: Error 11: Unrecognized Device String When Select Other Operating Systems

Jan 30, 2010

i dont know if this is the right section for this but i installed linux after i installed windows server 2003 and some how the grub loader got messed up and wouldnt show, only windows would boot. i fixed the grub loader through my live disc and when i select Other operating systems i get Error 11: Unrecognized device string. here is my fdisk -l.

Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x2c8e2c8d
Device Boot Start End Blocks Id System
/dev/sda1 * 1 6 48163+ 7 HPFS/NTFS
/dev/sda2 7 34329 275699497+ 7 HPFS/NTFS
[Code].....

View 2 Replies View Related

General :: Sed: -e Expression #1, Char 27: Unterminated `s' Command

Feb 3, 2011

I am trying the execute the following

#!/usr/bin/python
import os
os.system("sed -e 's#^(.*) (.*)0http://12#' t2.txt > t3.txt")
os.system("cat t3.txt | sort | uniq -c | sort -rn | head > t4.txt")

But I receive the following error message.

sed: -e expression #1, char 27: unterminated `s' command

View 1 Replies View Related

Programming :: Copy String A To String B And Change String B With Toupper() And Count The Chars?

Oct 22, 2010

copy string a to string b and change string b with toupper() and count the chars

View 3 Replies View Related

General :: What The Difference Between The Unquoted And Quoted Versions

Apr 9, 2011

what the title mentioned expressions do? I googled it but all i find is weired useless quote pages (the internet is getting worse and worse it seems). Especially I would be interested in understanding what the difference between the unquoted and quoted versions of the same expression is, ie. $@ vs "$@".

View 5 Replies View Related

Debian Installation :: Distro Upgrade Error "Use Of Uninitialized Value In Concatenation (.) Or String"

Mar 10, 2011

M busy upgrading one of my clients old Debain etch boxes to Lenny but i keep on getting this error.

Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22.
debconf: delaying package configuration, since apt-utils is not installed dpkg: unrecoverable fatal error, aborting: syntax error: unknown user `root' in statoverride file E: Sub-process /usr/bin/dpkg returned an error code (2)

View 1 Replies View Related

Programming :: Ssh Remote Command Preserve Quoted Argument?

Sep 17, 2009

I have a python script on one server (serv_one) and I am trying to execute it remotely from another (serv_two). The python script takes an argument with spaces. If I execute it locally:

Code:

foo@serv_one> script.py --o "arg one"
"arg one" is preserved, of course. ( argv = [ '--o', 'arg one' ] )

However, when I execute it remotely:

Code:

foo@serv_two> ssh ... foo@serv_one script.py --o "arg one"

the double quotes around "arg one" are dismissed ( argv = [ '--o', 'arg', 'one' ]. I've tried many combinations of single quotes/double quotes/backslashes, etc, to no avail. One hack solution I came up with, since I have the flexibility, was to replace all spaces in the quoted argument with a character that would be invalid in the argument (before the ssh call), and replace those with spaces in script.py. I would probably like to avoid this solution if at all possible.

View 7 Replies View Related

Ubuntu :: Installing Emacs 23.1 - Error "makeinfo Is Missing - Cannot Build Manuals Make: *** [info] Error 1 **** Installation Failed"

Feb 6, 2010

I've been trying to install the latest version of Emacs from source but I'm running into a trouble. The commands "./configure" and "make" work just fine. However, when I run "sudo checkinstall" I get a message saying that makeinfo is missing:

Code: makeinfo is missing - cannot build manuals make: *** [info] Error 1 **** Installation failed. Aborting package creation. Cleaning up...OK Bye. What is Error 1

View 4 Replies View Related

Ubuntu Installation :: Error While Installing

Apr 19, 2010

Quote:

kai@kai-laptop:~/acerhk-0.5.35$ make
make -C /lib/modules/`uname -r`/build SUBDIRS=/home/kai/acerhk-0.5.35 modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.32-21-generic'[code]....

I don't get it. Tried so many ways...

View 4 Replies View Related

Ubuntu Installation :: Error While Installing ?

Jul 19, 2010

I download wubi from [url] and when i install there is error. looks like this.

View 1 Replies View Related

Ubuntu Installation :: Error When Installing ?

Jul 24, 2010

I tried to install ubuntu from usb and i got this error "errno 5 input/output error" any help would be appreciated thanks in advance

View 7 Replies View Related

Ubuntu Installation :: Error With Installing 11.4?

Apr 29, 2011

The installation was in progress before I got this error:'Ubuntu-Minimal' Missing"Report this bug against update manager package and include the files in var/log/dist_upgrade/ into bug report."

View 1 Replies View Related

Ubuntu Installation :: Error When Installing 11.04 From USB?

May 23, 2011

I'm experiencing difficulties installing Ubuntu 11.04 on an HP Laptop originally running Windows7. I tried using CD, but it blocks somewhere and displays Kernel Panic, etc.I then tried using the USB Key boot and created the Boot Disk with Ubuntu. But I have the following error when booting from the USB Key: Unknown keyword in configuration file. boot:I downloaded the 32-bit version of Ubuntu, but the original system is a 64-bit one.

View 3 Replies View Related

Ubuntu Installation :: Error While Installing ANY Distro?

Feb 13, 2010

OK, I've tried to install:Mint 6, 7 XFCE, and 8jolicloudeasypeasyand probably another or two..Oh, I'm installing this on my Acer Aspire One 751h, so I am using a USB key and UltraISO, with the exception of jolicloud, which has its own USB creator, and most recently I tried Mint 6 using UNetBootIn.Anyway, I keep getting the same general error, but with different files... Sometimes its errno5: input/output error, and other times its parts of a file (blah/doowop/dadada/video....) I don't know if its a driver problem or what, but I've seen video, sound, and other random stuff.. each time it gives a different one though.Either way, the main paragraph in the window talks about having a dirty CD, needing to replace my hard drive, or burning a new CD at a slower speed... I've checked the md5sum, and that's not the problem.

I'm wondering if my problem is that I'm creating the USB from one computer, and then trying to install it on the 751h. Another thing that might be causing the problem, but I doubt, is the fact that when I set up the partition, I select "use entire disk". Another question, Does it make a difference if the drive letter changes? On our main computer, the USB is mapped to drive E:, but on the 751h, it shows up as D:. If I have to change it on the 751h, how can I without an OS? when trying to install linux, it wiped out my windows, and I don't feel like re-installing it just to change it in a few minutes.

View 4 Replies View Related

Ubuntu Installation :: Can't Install 10.4 - Error While Installing ?

Jun 21, 2010

I get my fresh copy of Ubuntu 10.4 from Ubuntu shipit (thanks to ubuntu). But i can't intall it. it shows error while installing. i tried both with in windows and from boot,
It shows some error with installer Installer has encountered a problem.

Then it runs live.i also tried it with downloaded alternate or other eddiiions of ubuntu, also tried ubuntu 9.

View 8 Replies View Related

Ubuntu Installation :: Error While Installing Medibuntu?

Jul 4, 2010

I'm following the instructions in the Medibuntu wiki. When I run the command in the terminal to add it to the repository, it runs for a couple of minutes then gives this error: Code:W: GPG error: URL...The following signatures couldn't be verified because the public key is not available: NO_PUBKEY BE1B248616AE4E77.What does that mean, and how can I fix it?

View 3 Replies View Related

Ubuntu Installation :: Error With Updating 10.4 After Installing

Aug 17, 2010

After installing ubuntu 10.4 I tried to update but it caused some error as reported as follows. I have already tried to googling the solutions but it seems that there's no right one for me.

View 2 Replies View Related

Ubuntu Installation :: Error While Installing Server 10.10

Jan 29, 2011

I'm trying to install server 10.10. I shose my language, than i give the command to install the server. At that moment my screens gets black. A couple of minutes later i get te following screen..

View 7 Replies View Related

Ubuntu Installation :: Grub Error 17 Upon Installing New HDD

Feb 14, 2011

I have just bought a new HDD and installed it in my Ubuntu server. The problem is that when I try to boot, I only receive the message "Grub error 17" and at that point the computer freezes.

In my troubleshooting I found that without the new drive, the computer starts and the hard drives are listed in BIOS as follows:
1. DVD-rom (ide) - Master
2. 80gb disk (with OS installed) (ide) - Master
3. 1tb disk (sata) - Master

In the new setup the disks are listed like this:
1. DVD-rom (ide) - Master
2. 80gb disk (with OS installed) (ide) - Slave
3. 1tb disk (sata) - Master
4. 2tb disk (sata) - Master

May this different listing in BIOS lead to the Grub error?

View 5 Replies View Related

Ubuntu Installation :: Error Installing PHPMyadmin

Aug 3, 2011

Since the upgrade to server 11.04 from 10.10 I cannot install PHPMyadmin

I keep getting error package PHPMYADMIN has no installation candidate.

View 2 Replies View Related

Ubuntu Installation :: Error Installing Bugzilla Lucid?

Aug 13, 2010

When I iried to install bugzilla on my Ubuntu Lucid, I kept getting the following message. I have used "sudo apt-get --configure -a " and this is as far as I can get with the installation. Is there a way of first stopping the process and then removing Bugzilla, as it has locked the admin for apt.

Setting up bugzilla3 (3.2.5.1-2) ...
dbconfig-common: writing config to /etc/dbconfig-common/bugzilla3.conf
granting access to database bugzilla3 for bugzilla3@localhost: already exists.
creating database bugzilla3: already exists.
dbconfig-common: flushing administrative password

[Code].....

View 2 Replies View Related

Ubuntu Installation :: Installing HP Driver - Error: No Output Seen In Over 300 Sec

Sep 10, 2010

error: No output seen in over 300 sec... (Is the CD-ROM/DVD source repository enabled? It shouldn't be!) error: Package install command failed with error code 255 Would you like to retry installing the missing package(s) (y=yes*, n=no, q=quit) ?

I've tried this [URL] but it didn't work for me. My sources.list already had the #. By the way I'm a new user to ubuntu and I'm having a pretty good time. Almost starting to feel at home in this OS. edit: I'm sorry. I realized I posted in the wrong section.

View 2 Replies View Related

Ubuntu Installation :: Error With Grub After Installing Kubuntu

Jan 20, 2011

I have windows 7 installed on my copmuter and I ran the alternate disc cause the live disc didn't work for me. So installing was smmoth and I did everything right excpet for the grub part. It asked to be a master loader or something and I said yes. After restarting I see the grub menu but I only see two ubuntus(recovery mode) on the list and 2 test thingys ( memory test) So I go to the ubuntu tab and I get kubuntu ( as ecpected). Right now I am using kubuntu and it is fine but?

View 9 Replies View Related

Ubuntu Installation :: Aptdaemon Error While Installing Oracle 10g

Mar 24, 2011

An unhandlable error occured There seems to be a programming error in aptdaemon, the software that allows you to install/remove software and to perform other package management related tasks. Please report this error at http://launchpad.net/aptdaemon/+filebug and retry.

I recently tried to install Oracle xpress edition 10g by downloading the ".deb" file of around 200 mb. When the installation was about to complete, the "Ubuntu Software Center" gave an error like shown in the picture.

View 1 Replies View Related

Ubuntu Installation :: Error While Installing Screenlets (after Pc Crash)

May 31, 2011

While I was installing screenlets via

Code:
sudo apt-get install screenlets

My pc restarted due to electricity cut off! and now when I try to re-install I get that error in terminal

Code:
dpkg: error processing python-numpy (--configure):
dependency problems - leaving unconfigured

[Code]....

View 3 Replies View Related

Ubuntu Installation :: Installing Skype - Error - Dependency Is Not Satisfiable

Mar 1, 2010

I've just bought a new laptop (Acer 3810T - which has a "Core 2 Solo Processor) - so I have installed Linux for the first time in my life.... Ubuntu 9.10-desktop-amd64.iso - so far so good, I'm very very impressed and the operating system seems to be working fine. I assume that I have chosen correctly the AMD64 version then.

Fastforward to Skype installation, and I download the version (skype-ubuntu-intrepid_2.1.0.81-1_amd64.deb) - which is the best match as far as I can tell from Skype's website. However when I come to install it, I get the follwoing error: Error: Dependency is not satisfiable: lib32stdc++6 (>= 4.1.1-21)

View 5 Replies View Related

Installation :: Error While Trying To Boot Ubuntu After Installing Desktop Edition / Fix This?

Jan 20, 2011

I downloaded and installed the Ubuntu desktop edition and when I boot up I have the options to boot either Windows 7, or Ubuntu (so far so good), however, when I select Ubuntu I get a message saying that the following file is corrupt:

File: ubuntuwinbootwubildr.mbr

status: 0xc000000f

Info: The selected entry could not be loaded because the application is missing or corrupt.

Any thoughts on this? Would just re-installing it fix the problem?

View 2 Replies View Related







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