I was trying to install an application on my monster latop (running Ubuntu 9.04). The only format you could download it in was .bundle. I have never installed a .bundle app, but after some google-ing and putting bits and pieces together, I now know how to install a .bundle, and you will too. I was download application from VMware workstation ( 64 bit ) bundle
First you need the required packages:
sudo aptitude install build-essential linux-kernel-headers linux-kernel-devel
Then you need to make it executable by using chmod:
chmod +x ./(Package name )
Then finally:
gksudo bash ./AppNameHere
Examples :
kartook@moon:~$ sudo aptitude install build-essential linux-kernel-headers linux-kernel-devel
[sudo] password for kartook:
Reading package lists… Done
Building dependency tree
Reading state information… Done
Initializing package states… Done
Writing extended state information… Done
Couldn’t find any package whose name or description matched “linux-kernel-devel”
Couldn’t find any package whose name or description matched “linux-kernel-devel”
The following NEW packages will be installed:
build-essential dpkg-dev{a} g++{a} g++-4.3{a} libstdc++6-4.3-dev{a}
The following packages will be REMOVED:
libass1{u} libvlccore0{u} qt4-qtconfig{u}
0 packages upgraded, 5 newly installed, 3 to remove and 1 not upgraded.
Need to get 6872kB of archives. After unpacking 21.6MB will be used.
Do you want to continue? [Y/n/?] y
Writing extended state information… Done
Get:1 http://archive.ubuntu.com jaunty/main libstdc++6-4.3-dev 4.3.3-5ubuntu4 [1394kB] Get:2 http://archive.ubuntu.com jaunty/main libstdc++6-4.3-dev 4.3.3-5ubuntu4 [1394kB] Get:3 http://archive.ubuntu.com jaunty/main g++-4.3 4.3.3-5ubuntu4 [4826kB] Get:4 http://archive.ubuntu.com jaunty/main g++-4.3 4.3.3-5ubuntu4 [4826kB] Get:5 http://archive.ubuntu.com jaunty/main g++ 4:4.3.3-1ubuntu1 [1450B] Get:6 http://archive.ubuntu.com jaunty/main dpkg-dev 1.14.24ubuntu1 [643kB] Get:7 http://archive.ubuntu.com jaunty/main dpkg-dev 1.14.24ubuntu1 [643kB] Get:8 http://archive.ubuntu.com jaunty/main dpkg-dev 1.14.24ubuntu1 [643kB] Get:9 http://archive.ubuntu.com jaunty/main build-essential 11.4 [7170B] Fetched 4369kB in 25min 38s (2840B/s)
(Reading database … 157411 files and directories currently installed.)
Removing libass1 …
Removing libvlccore0 …
Removing qt4-qtconfig …
Processing triggers for libc6 …
ldconfig deferred processing now taking place
Processing triggers for man-db …
Processing triggers for menu …
Selecting previously deselected package libstdc++6-4.3-dev.
(Reading database … 157388 files and directories currently installed.)
Unpacking libstdc++6-4.3-dev (from …/libstdc++6-4.3-dev_4.3.3-5ubuntu4_amd64.deb) …
Selecting previously deselected package g++-4.3.
Unpacking g++-4.3 (from …/g++-4.3_4.3.3-5ubuntu4_amd64.deb) …
Selecting previously deselected package g++.
Unpacking g++ (from …/g++_4%3a4.3.3-1ubuntu1_amd64.deb) …
Selecting previously deselected package dpkg-dev.
Unpacking dpkg-dev (from …/dpkg-dev_1.14.24ubuntu1_all.deb) …
Selecting previously deselected package build-essential.
Unpacking build-essential (from …/build-essential_11.4_amd64.deb) …
Processing triggers for man-db …
Setting up dpkg-dev (1.14.24ubuntu1) …
Setting up libstdc++6-4.3-dev (4.3.3-5ubuntu4) …
Setting up g++-4.3 (4.3.3-5ubuntu4) …
Setting up g++ (4:4.3.3-1ubuntu1) …Setting up build-essential (11.4) …
Reading package lists… Done
Building dependency tree
Reading state information… Done
Reading extended state information
Initializing package states… Done
Writing extended state information… Donekartook@moon:~$
kartook@moon:~$
kartook@moon:~$ ls
Desktop VMware-Workstation-Full-7.0.0-203739.x86_64.bundlekartook@moon:~$ chmod +x ./VMware-Workstation-Full-7.0.0-203739.x86_64.bundle
kartook@moon:~$ gksudo bash ./VMware-Workstation-Full-7.0.0-203739.x86_64.bundle
Extracting VMware Installer…done.
Tried it, says: “no such file or directory” The bundle is on my desktop. I tried putting in the path several different ways but still says the same thing chmod says “cannot access no such file or directory” it seem like there is a step missing, what am I doing wrong?
RT@ hawk
step 1 :
sudo aptitude install build-essential linux-kernel-headers linux-kernel-devel
step 2 :
chmod 777 (pacakgename)sudo aptitude install build-essential linux-kernel-headers linux-kernel-devel
step 3 :
chmod +x ./ (packagename)
step 4 :
gksudo bash ./AppNameHere
let me know