You are not logged in.

#1 2009-04-20 22:32:30

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Ahh ...Entering other partitions trough file-manager [SOLVED]

Hi, I have Ubuntu, Windows and now Arch installed on my pc.
Through Ubuntu I can detect all partitions and write to them. I just go to Computer in the Nautilus file manager and I see the other partitions.

In Arch however my file-manager is pcmanfm and I don't know where the other partitions are located and how I can access them.


Sorry for the silly question but I really don't understand this :s

Is there any special folder in linux for this (excluding /media since I only find my 2 drives (DVD and CD))?

Last edited by Alberto Ferreira (2009-04-24 15:32:24)

Offline

#2 2009-04-20 22:42:24

ShadowKyogre
Member
From: Hell! XP No... I'm not telling
Registered: 2008-12-19
Posts: 476
Website

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

The other partitions should be in the column that has "File System", "$USER", "Desktop", and etc.


For every problem, there is a solution that is:
Clean
Simple and most of all...wrong!
Github page

Offline

#3 2009-04-20 22:42:59

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

You have to mount them first - I'm guessing Ubuntu does that without telling you. smile

fdisk or cfdisk will tell you what partitions you have. Once you have the details, mount them anywhere you like.

Offline

#4 2009-04-20 23:08:35

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Ok, now I have it mounted. However I copied the whole blender directory to my partition and if I do `ls ...` the files all show up but when I execute it it says `no such file or directory`.

I had used this command:
sudo cp -R /media/ubuntu/home/a/blender ~

Offline

#5 2009-04-20 23:18:49

ngoonee
Forum Fellow
From: Between Thailand and Singapore
Registered: 2009-03-17
Posts: 7,356

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Ubuntu provides auto-mounting, but actually its part of Gnome AFAICT, since I can use it with Arch as well.

Suggest you learn to command-line mount, first, or edit your fstab. Its more generally useful. If you really want Nautilus mounting (sorry, ever used PCManFM), I think gnome-volume-manager provides the behaviour you're looking for.

EDIT: This is what happens when I forget to click reply, someone replies first. Anyway, for the Blender problem, you probably don't have the requisite file set to executable, try

chmod +x ....

replacing ... with your file.

Last edited by ngoonee (2009-04-20 23:20:31)


Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.

Offline

#6 2009-04-20 23:27:16

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Yes, the problem is that the file already has those permissions and it still appears with the command ls but executing it I still get the same error (even after executing chmod just to make sure) :s

I think this Arch is crazy. Googled and found other user with the same problem when running varied executables.

Last edited by Alberto Ferreira (2009-04-20 23:58:22)

Offline

#7 2009-04-21 05:53:10

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Alberto Ferreira wrote:

Ok, now I have it mounted. However I copied the whole blender directory to my partition and if I do `ls ...` the files all show up but when I execute it it says `no such file or directory`.

I had used this command:
sudo cp -R /media/ubuntu/home/a/blender ~

Correct me if I'm wrong here: you've copied a folder from your ubuntu $HOME into your Arch $HOME, and now you want to execute something in that folder. Are you using the full path to the command? Or have you added the blender folder to your path?

If you think Arch is crazy that's fine - you're entitled to your opinion. Just consider the fact that there are thousands of happy Arch users who disagree with you. smile

Offline

#8 2009-04-21 06:43:11

robmaloy
Member
From: Germany
Registered: 2008-05-14
Posts: 263

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

is hal running?

is your /home partition mounted with the 'noexec' option?

Last edited by robmaloy (2009-04-21 06:44:32)


☃ Snowman ☃

Offline

#9 2009-04-21 08:12:38

quarkup
Member
From: Portugal
Registered: 2008-09-07
Posts: 497
Website

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

If you have the GNOME/KDE it can mount it automatically.

Just need fam and hal daemons..



anyway to mount partitions/drives/devices you just need to know about the command "mount"
the devices are on /dev

just do something like
sudo mkdir /media/mynewpen
sudo mount /dev/sdb1 /media/mynewpen                      (note: you can read more about the /dev/sd<somethinghere> by reading the mount/umount manual)


and voilá
got the new pen mounted(accessible) in /media/mynewpen

You can make it like Ubuntu, but as I'm using KDE and not GNOME, I can't tell you how (I guess this is on the wiki):


If people do not believe that mathematics is simple, it is only because they do not realize how complicated life is.
Simplicity is the ultimate sophistication.

Offline

#10 2009-04-21 16:11:09

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

I had alraeady mounted the drive the problem is that executing the file doesn't work ( it gives the "No such file or directory" error ).

I have started HAL but isn't this to mount partitions/drives? Anyway it doesn't make a diference.

Now about noexec? I copied the folder to /usr/blender and nothing sad

Offline

#11 2009-04-21 16:17:26

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

NOOOOOOOOOOOOOOOOOOOB SSSSSSSSSSSSSSoOOOOOOOOOOOOOOOORRRRRRRRRRRRRRYYYYYYYYYYY


I hadn't used Arch for some months and I forgot that I had installed the 64 bit version!!!!

I'm so sorry sad

Thanks for the help big_smile


Now my only problem is that  I have python 2.6 and blender wants the 2.5 version (cannot find libpython2.5.so.1.0)............arrhgghghh how do I downgrade?

Last edited by Alberto Ferreira (2009-04-21 17:00:33)

Offline

#12 2009-04-21 19:26:23

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

blender is in the Arch repos, built against python 2.6, so you should use that. Running binaries from one distro in another is never a good idea.

Offline

#13 2009-04-21 21:17:51

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

I get this error with the repos version>

blender: error while loading shared libraries: libGLU.so.1: cannot open shared object file: No such file or directory

Last edited by Alberto Ferreira (2009-04-21 21:18:01)

Offline

#14 2009-04-21 21:51:45

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

It seems you have found a bug - a missing dependency, in this case. libGLU is provided by mesa, so blender should depend on mesa. To get it going right no, install mesa, but you should also report it on the bugtracker.

Offline

#15 2009-04-22 12:52:39

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Thanks , that solved it!

Offline

#16 2009-04-22 22:42:30

ngoonee
Forum Fellow
From: Between Thailand and Singapore
Registered: 2009-03-17
Posts: 7,356

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

That's great. If your issues on auto-mount are also solved, perhaps you could edit your OP and mark the thread [SOLVED]?


Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.

Offline

#17 2009-04-23 16:22:34

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

I would like to but I have a big problem with keyboard layout sad

In the terminal my layout is set to "pt_PT.utf8" in /etc/rc.conf and works just fine, however I have put this layout in the Xorg.config and the keyboard layout isn't right :S (so there are a lot of characters I cannot access like the square brackets from the GUI session (startx))

Offline

#18 2009-04-24 06:00:52

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

You should start a new thread. The issue described in the title of this thread is solved.

Offline

#19 2009-04-24 06:20:05

Zeist
Arch Linux f@h Team Member
Registered: 2008-07-04
Posts: 532

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Alberto Ferreira wrote:

I would like to but I have a big problem with keyboard layout sad

In the terminal my layout is set to "pt_PT.utf8" in /etc/rc.conf and works just fine, however I have put this layout in the Xorg.config and the keyboard layout isn't right :S (so there are a lot of characters I cannot access like the square brackets from the GUI session (startx))

For xorg keyboard layouts see /usr/share/xkb/symbols for the names that you can use in xorg.conf. I'm guessing yours would be just "pt". People are right in saying that you should start a second thread for it though.


I haven't lost my mind; I have a tape back-up somewhere.
Twitter

Offline

#20 2009-04-24 13:54:56

Alberto Ferreira
Member
Registered: 2008-10-08
Posts: 41

Re: Ahh ...Entering other partitions trough file-manager [SOLVED]

Ok, thanks everyone big_smile

Last edited by Alberto Ferreira (2009-04-24 15:32:08)

Offline

Board footer

Powered by FluxBB