Ubuntu :: 11.4 DVD Installing Packages "programming Stuff"?
Jun 21, 2011
i downloaded ubuntu 11.4 dvd i installed . I want to install eclipse and web server and use it as as a workstation but it dos not ask any thing .so I wonder i should have install each of the same application i should install them individual from the web. so what is the use of this dvd?cause i used to use fedora and it has selection on package installing.
View 3 Replies
ADVERTISEMENT
Aug 25, 2015
I have 32-bit Debian 8 and am trying to install Vmime [URL] .....
apt-get cannot locate these packages:
apt-get install vmime0
apt-get install libvmime-dev
I have an issue raised on Vmime's Github page too [URL] .....
View 1 Replies
View Related
Sep 3, 2010
I've installed open suse with no problems however I accidentally put my root folder on an external HD. I want to have my root on a partition of my main drive so I can continue to dual boot windows. Is there a way to move root so I don't have to completely reinstall and set up all my packages and stuff again.I assume to do this I need to use the installation disk again and fix it before boot up but should I partition my main drive first. I'm being intentionally cautious as there is data I'd rather not lose on there.
View 9 Replies
View Related
Aug 3, 2010
I recently upgraded to 10.04 from 9.10 and have some questions:
1. Will a clean install of 10.04 perform better than my upgrade?
2. Will it get rid of the message I get at boot time about IRQ #18 being disabled.
3. The boot splash image does not appear after the upgrade. Will it appear after a clean install? (It does when booting from 10.04 live CD).
4. And finally: I can see that there are some 20 or so folders including home when I do ls /
Code:
mike@mike-laptop:~$ ls /
bin dev initrd.img lost+found opt sbin sys var
boot etc initrd.img.old media proc selinux tmp vmlinuz
cdrom home lib mnt root srv usr vmlinuz.old
How may I preserve stuff I have on my upgraded system such as:- VirtualBox running a Windows XP guest, its application and data. - Wireless LAN implemented using ndisuio? wrapper Canon PIXMA IP2600 driver
View 5 Replies
View Related
Apr 8, 2015
I am working on a project which targets both 32 and 64 bit architectures at the moment. My system is amd64. I added i386 architecture using this guide. However, my problem is
Code: Select allapt-get install package-name:i386
prompts the removal of currently installed packages (amd64 arch.) which is the problem.
Code: Select allReading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libportaudio0:i386
[Code] ...
Some of the packages I am talking about are
-libegl1-mesa-dev:i386
-libportaudio-dev:i386
Now, as of now, I want to carry out the compilation using 32 bit libraries, however, I really don't want to install 64bit version of all prerequisites each time I switch the compilation from 32 bit to 64. Is there any way to have both architectures at the same time?
View 1 Replies
View Related
Aug 18, 2011
I'm having trouble understanding the principles behind OpenSuse package and repository management. Here is a concrete example: I want to install the 32bit version of glibc. (using zypper) Naturally I write 'wp glibc' to see what's available. Output:
[Code]....
I'm looking for the (32bit) tokyocabinet library. I go through all the hoops like I did in the first example. Nothing shows up! How is that possible? Does opensuse really not have this library in any repository? Does that mean I have to install from source? How can I be sure that zypper searches through all repositories?
View 7 Replies
View Related
Jan 11, 2011
I went to [URL] the other day, and I'm really impressed with the way, when you click on domain, it adds it to the cart WITHOUT A REFRESH. But what I really want to know is - how does it do the slick little effect when you click "Add to basket", when it "appears" on the right hand side?
View 4 Replies
View Related
Apr 25, 2009
I was wondering if you could recommend a simple way to achieve functionality where received email messages are automatically processed and used in SQL commands (depending on certain criteria, of course). For example, say I have made a PHP-based blog application and it's located at example.com and I'd like to give members the option of posting to their blogs by sending email to a special @example.com address. The email messages received there will be inserted into a database depending on the sender's address, with the body becoming the post and the subject line becoming the post's title, etc.
Another example could be how those trouble ticket systems let customers submit tickets via email, while the support agents operate via a database-driven Web application. Is this the type of thing one must code from scratch, or is there an open source solution out there which only needs to be configured accordingly?
View 4 Replies
View Related
Oct 3, 2010
I'm writing a script that edits a Maya ascii file. Inside the .MA(maya ascii file) there is a line defaultRenderGlobals. My script is supposed to find this line and according to what options they manipulate will update the lines below defaultRenderGlobals. I've got that working... but... the issue i'm having is that defaultRenderGlobals is only made when a the maya scene is made into a batch render. I want my script to manually addefaultRenderGlobals line into the .ma file if its not there and add the certain lines below it.RenderGlobals is already there I want to just manipulate whats below it. Hope this makes sense
View 2 Replies
View Related
Jan 10, 2011
I started using Ubuntu's chat tool the other day, I gave it my Gmail username and password,and lo! it found my list of CONTACTS FROM INSIDE GMAIL!Facebook has done the same thing as well! Was this in Google's terms? Can't something be done about this? This is SCARY.But also, a small part of me wants to know how it was done (only a small part, this protocol sh*t is not particularly challenging, right?
View 14 Replies
View Related
Mar 31, 2011
I got this part from my script working that it will delete a folder is from 8 days agoEightDaysAgo=`(date --date="8 days ago" +%d-%m-%Y)`rm -rf $EightDaysAgoTarHowever I need to remove files that are older than 8days for example if the script is'nt run for a day it will remove both the 9th and 8th day one not just the 8th day one. If I'm making any sense lol
View 3 Replies
View Related
Apr 2, 2010
I have this JSON encoded data, which I want to efficiently parse (i.e. fast, with minimal system resources). I don't want to use a/the shell any more than necessary.
Here's a snippet of what the raw serial data looks like:
Code:
[{"num":1,"name":"1","visible":false,"focused":false,"rect":{"x":0,"y":0,"width":1680,"height":1050},...blah blah..
So that's fine. I currently have at least two ways of parsing it:
This Perl method (which I don't much care for because I'm not much into Perl, and because the output is not much more useful than the raw form, and imho even more cryptic):
Code:
sasha@reactor: <produce data> | perl -MData::Dumper -MJSON::XS -E 'say Dumper(decode_json <>)'
$VAR1 = [
{
code....
# Which means: at x=1680, draw a 20x20px grey block, then back up -10px and draw a "1" on the block.I figure that the two awk's I've used can be combined into one -- but I began having problems with removing the single quotes if I did it within the awk, which is why I stuck a `tr` in the middle.
I know this sucks. So, if someone has some ideas or thoughts on something else to do with this JSON data, that's less convoluted that where I'm currently going, I'll be happy to hear about it.
PS - I know this whole post is possibly hard to understand -- if you need more info (you mean you're interested in this mess?? )
View 13 Replies
View Related
Oct 18, 2010
I had to make for work a collectd based network monitoring system which displays data for each server in a fullscreen conky on different compiz viewports. I have to switch viewports automatically when the machine isn't operated (sorta screensaver) and also if i had to call attention in the case something bad happens, autoswitching should stop and the relevant viewport be showed up.This requires an interface to talk dynamically to the WM, which i've implemented in bash with support of the widely available "wmctrl" program.
Code:
http://paste2.org/p/1177045
Code:
[code]...
View 8 Replies
View Related
Jul 26, 2010
when I try to install anything using the Ubuntu software centre, I get the following message Requires installation of untrusted packages The action would require the installation of packages from not authenticated sources.
View 1 Replies
View Related
Feb 4, 2010
is it possible to install programs present on one computer on another computer by transferring package files? For example, let's say I've installed Thunderbird on one Ubuntu machine. Would I be able to install thunderbird on another computer by copying some files from the first computer?
View 3 Replies
View Related
May 16, 2010
OS: Ubuntu 10.04.
When I try to install some packages by aptitude, I see this:
Before it, I made it (sudo apt-cdrom add):
And it (sudo apt-get update):
My dvd-disk is not broken - md5 checksum is right. In sources.list I have only cdrom source, without any network repositories. When I install one package (for example pptp-linux) which don't use any depending, it work good, but when I have some group of packages - installed only first package from this group, you can see this in a first image, marked by yellow color and set to 16 percent.
View 9 Replies
View Related
Jan 4, 2010
I am a new user to linux. I downloaded and installed ubuntu 9.10 on my old desktop to try it out because i have always liked the idea of linux but have never really found the time to use or learn to use it. having had an old dos computer i can vaguely remember the idea of using a command line to change directories etc. so i just decided to wipe out xp on the desktop and install ubuntu lol. Installation went smooth but then i ran into some problems.
Unfortunately i use iphone tethering for access to the internet but ubuntu will only recognize my iphone as a picture storage device. so i did some research and found that i had to download and install some packages to set up tethering on ubuntu. so on my laptop running vista i downloaded libusb-1.0.6, cmake-2.8.0, libiphone-0.9.5, usbmuxd-1.0.0, and some other packages such as ifuse and libgpod. they were all .tar.bz2 files or .tar.gz files. I put these on a jump drive and took the jumpdrive and put it into my desktop. what i was wondering is if there is a way to install these packages from a usb jumpdrive? or is there a simpler way that i may have overlooked to establish an internet connection.
View 6 Replies
View Related
May 25, 2010
I've got Ubuntu ReMix 10.04 successfully running off a 4-GB JumpDrive.When I go to installing additional software packages, the package "appears" to have installed itself onto the JumpDrive and into Ubuntu Remix 10.04.But, when I properly shut it down, and come back latter ... those software packages that appeared to have installed earlier, are no longer on the JumpDrive ! Nor, do they any longer show up on the NetBook ReMix menu tree.This has happened with AbiWord / Scribus / QCad / Gwelled and several other software packages.
View 7 Replies
View Related
Jun 18, 2010
Basically, I want to install Opera 10.60 Beta, but I currently have 10.10 Final installed, and I don't want to upgrade/overwrite my current install. Is there any way to specify which directory the .deb package install itself into?
View 1 Replies
View Related
Sep 4, 2010
Ubuntu 10.04 and just installed it on this computer with Wubi. I had a previous version of Ubuntu on another computer and did some programming on it. My issue is that downloading a software package from the Ubuntu Software Center or the Synaptic Package manager rarely works. The download proceeds at 1000B/sec and when it gets to applying changes, it stalls out. Now, my Internet connection is solid and i can easily stream videos and download files at over 2 MB/sec.
View 2 Replies
View Related
Nov 24, 2010
I do a lot of testing and developing on an Ubuntu machine at my university, and I don't have sudo access to the machine. It hasn't been a problem so far because the tools I've needed have been installed.
However, I have to build OpenCV, which has a lot of dependencies, some of which (notably, libbz2-dev) aren't installed.
I have access to localtmp on the local drive, and of course my own home folder (which is on NFS). Is there a way for me to install a local version of the tools I need using apt-get without sudo access? If not, is there another way to install them? I've been using CMAKE_INSTALL_PREFIX=/localtmp for some builds, but I'm not sure if this is the way to go, or if there is a better way.
tl;dr Is there a way to install applications locally without the ability to sudo?
View 5 Replies
View Related
Dec 6, 2010
I am compiling some software (JWM) and it says that I must install the "development headers" for X11 and Xlib.My main question is, how will installing those packages affect my system.My less main question is how do I install them?
View 1 Replies
View Related
Feb 21, 2011
I've been running Xubuntu 10.4 Lucid Lynx on a netbook. It's an EeePC 701 which has been upgraded to 2Gb RAM, but the only storage device is a soldered-in (why) 4Gb SSD. At present this prevents me from installing much software. I started a previous thread (link) in Absolute Beginner Talk which pointed me to portablelinuxapps.org, where I found a list of applications that were compiled to a single executable that could be run from any locaton (inc. USB drives): absolutely brilliant for openoffice and skype etc, but it's still a limited list of software.
So I was wondering if theres any possibility to install conventional packages in a way that uses space on a different drive (i.e an SDHC card in this case)? I'm open to the possbility that this may mean keeping the card in at all times. Alternatively, is it possible for an end-user to create the kind of self-contained executables found on portablelinuxapps.org, or can only the developer do it?
View 5 Replies
View Related
Jun 26, 2011
recently installed 80mb out of 119 mb installation packages. after that packages are not getting install both by the update manger and terminal.
View 4 Replies
View Related
Dec 11, 2009
I have installed fedora 10 on my desktop recently.But, i did not install all the packages during the installation.I need to install the X11 Packages from the DVD. Can some one tell me how to install from DVD. yum works fine but internet is very slow at my place.
View 1 Replies
View Related
Feb 15, 2010
I am trying to install the rpm packages in a file by using "yum" command. The RedHat version is 5.3. This worked on RedHat 4.4, however it errors out when run on RedHat 5.3. Are there any options to include in the command line?
View 3 Replies
View Related
May 12, 2010
My upgrade route with Ubuntu is to do a complete fresh install - then reacquire all my favorite applications and packages using a combination of Add/Remove and Synaptic. This is a time-consuming process, and I generally forget several packages the first time through.Is it possible to automate the packages (and/or applications installation so that I get everything rebuilt for the new os in a single pass?
View 9 Replies
View Related
Jul 2, 2010
I have downloaded ubuntu studio 10.04 and burn it into a cdrom. Is there any way in installing some software packages in ubuntu studio 10.04 in my ubuntu?
View 9 Replies
View Related
Jul 27, 2010
After tomboy was gone today from my machine and does not appear in synaptic, I tried to install gnote and got this error. what should I do?
Code:
gnote:
Depends: libboost-filesystem1.40.0 (>= 1.40.0-1) but it is not installable
Depends: libboost-system1.40.0 (>= 1.40.0-1) but it is not installable
Depends: libpanelappletmm-2.6-1c2 (>= 2.22.0) but it is not going to be installed
Depends: libpcrecpp0 (>= 7.7) but it is not installable
E: Broken packages
View 1 Replies
View Related
Nov 3, 2010
Due to some problems I have with the current nvidia driver in 10.10 I need to install the newest driver from nvidia using their installer. I do not have any problems with that. What I wonder is which packages I can safely remove when I use the nvidia driver from their site?
View 1 Replies
View Related