LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-08-2009, 01:40 AM   #1
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Rep: Reputation: 0
Red face couldn't install gmount iso on mepis 8


Hi everybody,
I have recently started using linux mepis 8.I was trying to install gmount iso package (tar bz file)thru bash shell.after using tar command all package files were extracted to a folder.after that i moved into that folder and tried using configure and make command but without success.folder contain .py and .glade file but no configure or inst file.pl help me
sbehal
 
Old 07-08-2009, 09:34 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Welcome to LQ.

Google .. gmount iso ..

Instructions here
http://phorolinux.com/mount-iso-imag...mount-iso.html

$ tar zxvf gmountiso_0.4-0ubuntu2.tar.gz
$ cd gmountiso-0.4/
# python Gmount-iso.py
.....
So actually no install or anything else,
it is a "ready to run application".
.....
 
Old 07-11-2009, 01:03 AM   #3
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Original Poster
Rep: Reputation: 0
hi
done all the steps ok but how to run gmount application?I could not find anywhere.
 
Old 07-11-2009, 01:06 AM   #4
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
in a terminal type
Code:
whereis gmountiso
or
Code:
find / -name gmountiso

Last edited by repo; 07-11-2009 at 01:12 AM.
 
Old 07-11-2009, 03:50 AM   #5
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Original Poster
Rep: Reputation: 0
sbehal@mepis1:~$ whereis gmountiso
gmountiso:
sbehal@mepis1:~$

sbehal@mepis1:~$ find / -name gmountiso
find: `/proc/8412/task/8412/fd': Permission denied
find: `/proc/8412/task/8412/fdinfo': Permission denied
find: `/proc/8412/fd': Permission denied
find: `/proc/8412/fdinfo': Permission denied
find: `/usr/lib/mozilla/extensions': Permission denied
find: `/root/.kde': Permission denied
find: `/root/.config/gtk-2.0': Permission denied
find: `/root/.mozilla': Permission denied
find: `/root/.gconf': Permission denied
find: `/root/.local/share/Trash': Permission denied
find: `/root/.gconfd': Permission denied
find: `/root/.synaptic': Permission denied
find: `/root/.hplip': Permission denied
find: `/root/.gnupg': Permission denied
find: `/lost+found': Permission denied
find: `/etc/cups/ssl': Permission denied
find: `/etc/ssl/private': Permission denied
find: `/etc/vpnc': Permission denied
find: `/etc/lvm/cache': Permission denied
sbehal@mepis1:~$ su
Password:
root@mepis1:/home/sbehal# find / -name gmountiso
root@mepis1:/home/sbehal#

Pl tell me what to do?
 
Old 07-11-2009, 05:57 AM   #6
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
From the site you used to install:
http://phorolinux.com/mount-iso-imag...mount-iso.html

Quote:
$ cd gmountiso-0.4/
# python Gmount-iso.py
 
Old 07-12-2009, 10:28 PM   #7
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Original Poster
Rep: Reputation: 0
HI,
sbehal@mepis1:~$ cd Documents
sbehal@mepis1:~/Documents$ cd gmountiso-0.4/
sbehal@mepis1:~/Documents/gmountiso-0.4$ # python Gmount-iso.py
sbehal@mepis1:~/Documents/gmountiso-0.4$
nothing happens.I could not find Gmount running.Pl. help
 
Old 07-13-2009, 12:02 AM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Well, $ indicates a user prompt, # = a root prompt.

Try : python --version
to check the python command.

python Gmount-iso.py
will open the application, but cannot mount
anything, you need to be root for that.

So either :
1) su
... password
2) python Gmount-iso.py

or
sudo python Gmount-iso.py
will work.
.....
 
Old 07-14-2009, 10:49 PM   #9
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Original Poster
Rep: Reputation: 0
Hi follwing error msg recieved:
sbehal@mepis1:~/Documents/gmountiso-0.4$ su
Password:
root@mepis1:/home/sbehal/Documents/gmountiso-0.4# python Gmount-iso.py
Traceback (most recent call last):
File "Gmount-iso.py", line 29, in <module>
import gtk, gobject
ImportError: No module named gtk
root@mepis1:/home/sbehal/Documents/gmountiso-0.4# sudo python Gmount-iso.py
Traceback (most recent call last):
File "Gmount-iso.py", line 29, in <module>
import gtk, gobject
ImportError: No module named gtk
 
Old 07-15-2009, 02:22 AM   #10
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Probably

1) apt-cache search python-gtk
2) sudo apt-get install python-gtk2

Also required : python-glade2
3) sudo apt-get install python-glade2

.....
 
Old 08-07-2009, 10:48 PM   #11
sbehal
LQ Newbie
 
Registered: Jul 2009
Posts: 6

Original Poster
Rep: Reputation: 0
Thumbs up thanks

thanks as per ur suggestion installed those 2 files and now gmount application opens.I could choose iso image but could not mount the image.
after pressing mount button there is an error msg "An error occured
command not found" pl. help
 
Old 08-08-2009, 11:58 AM   #12
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
You are right, it isn't working.

Except for drawing the GUI, the purpose of
the application is very simple :
1) Mount the .iso
2) Show the files in a file browser.

.....

I prefer this method :
a) cd <to location with iso ( and a new folder ) >
b) su
c) mount -o loop <file.iso> <new-folder> && firefox <path-to-new-folder>
... or you can just do the first part
mount -o loop <file.iso> <new-folder>
... and then watch the files in your preferred file manager.

My test example :
# mount -o loop livecd_SL53_gnome_2009-03-23.iso 9000/ \
&& firefox351 9000/
.....

Last edited by knudfl; 08-08-2009 at 12:04 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
MEPIS Live: can we install somethg with apt-get install ? frenchn00b MEPIS 9 03-31-2009 05:46 AM
Mepis 7 on old sony laptop: can't install local printer; easy in Mepis 3.2 pglosser Linux - Desktop 0 12-04-2008 09:12 AM
Mepis 7.0 release 32 iso Woes jolphil MEPIS 14 06-12-2008 07:14 AM
Create Bootable Simply Mepis USB drive from CD ISO duryodhan MEPIS 0 11-16-2006 11:23 PM
Does anyone Know how to open either .iso.rz or these .iso.xdelta,.iso.bz2,.iso.lzma?? maximalred Debian 5 06-09-2004 06:15 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:28 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration