CentOS 5 :: Mounting Windows Share - Get An Error 'Couldn't Find "smb://blah/blah" , Check The Spelling And Try Again?

Nov 12, 2010

I'm trying to mount a Windows Server share from Centos 5.5 (kernel 2.6.18-194.26.1.el5). I've tried two approaches neither of which work.

1). Using Places->Connect To Server. This approach works fine on Ubuntu but not at all for Centos. Using the 'Windows Share' Service type, it allows me to see the remote directory - I can see all of the directories on the server. But as soon as I click one, I get an error 'Couldn't find "smb://blah/blah". Please check the spelling and try again. As I say, this worked fine on ubuntu. Tried loads of options but with no luck. I saw something on the web about leading slashes being a problem.

2). Using Mount . Tried to use mount to mount as a cifs filesystem, as documented on a number of web pages:

mount -t cifs //server/dir -o username=username,password=password /mnt/tmp

This completely hangs the machine.I means completely, no mouse, no nothing. I've seen some references to unstable cifs on the web but I believe that this kernel has the fix for this.

View 5 Replies


ADVERTISEMENT

Software :: [blah]$ Somecommand - Which Shell Has This Sort Of Layout

Jan 13, 2010

I forget which one it was, but the prompt looked like this:

Code:

[blah]$ somecommand

Which shell has this sort of layout?

View 8 Replies View Related

Ubuntu :: Error "Could Not Find A Compatible Opengl Display Resolution. Please Check Your Driver Configuration. (Error: Couldn't Find A Matching GLX Visual)"

Jul 22, 2011

I am having issues with 3d I am trying to start up a game called auteria but it displays this error "Could not find a compatible opengl display resolution. Please check your driver configuration. (Error: Couldn't find a matching GLX visual)" I am on ubuntu 10.10 could anybody give me a solution on how to fix this issue?

View 5 Replies View Related

Fedora :: Set Check Spelling Language Default?

Feb 18, 2010

i like to have fedora in english language, without any translation. I have a problem: i'ld like to set the check spelling in gnome to italian by default, but i don't know how to do. When i use pidgin or pan (newsreader) the check spelling is always set to english and i need to switch to italian all the time. Is there a way to set italian check spelling by default?

View 1 Replies View Related

Fedora :: How To Reduce Language List (spelling Check)

Mar 16, 2010

Is there a way to reduce or edit the list of languages in the Spelling Checker application? I'm using only three languages:English / United States

Dutch / Netherlands
Croatian / Croatia

The other languages waist my time, I would prefer that surplus languages are not displayed in the list. Is the language list configurable?

View 2 Replies View Related

OpenSUSE Install :: Error In Installing Gcc 4.5.0 - Error Couldn't Find The C Compiler

Sep 9, 2010

i tried to install gcc-4.5.0 on opensuse 11.2 I gave ./configure but it gave the error couldn't find the c compiler.. the message was

[Code]....

View 2 Replies View Related

Networking :: Mounting Permissions Error / Mounting A Windows Host?

May 28, 2009

I am having permissions errors every time I try to mount a windows host. I have a linux server and all the windows computers can see that computer and its files, but we wanted to start backing up the linux machine to one of our other computers. so I tried to mount one of the computers. here is the sequence of events:

Code:
$mount -t cifs //192.168.1.194/Admin$ /mnt/Anita-comp
password: (I have no password so I left it blank)
Mount error (13): Permission Denied
I tried all sorts of passwords we use around the office and none of them worked.

I then decided to try mounting one of our other computers. this one looked like it worked fine. no error messages at all. (I left password blank) so I look in my filesystem and the mounted drive is not in the /mnt/Anita-comp file. What gives?

View 11 Replies View Related

Ubuntu :: Mounting A Windows NFS Share

May 12, 2011

I am attempting to mount an NFS share that has been setup on a Windows Storage Server 2008 (R1). Initially, I could not even mount the share, though it would show up using "showmount -e <server_ip>". After adding the "ANONYMOUS LOGON" user to the NTFS permissions and granting the "Full Control" permission, I was able to successfully mount the share and read from it. However, I cannot write to it. The NFS share is set to allow anonymous access, UID 0 and GID 0. The appropriate host is listed in the NFS Share Permissions with Read-Write permissions, and ANSI encoding. Root access has also been allowed. I also tried granting the "Everyone" user full control in the NTFS permissions as well. See screenshots and console quote for clarification if needed.

View 1 Replies View Related

CentOS 5 :: Mounting NFS Share In Net Install?

Sep 5, 2010

I am trying to install the net install version of 5.5 from an NFS share that I setup with freenas. I have fully functioning DNS (hosted on freebsd) and can mount the iso share on another centos box with the command mount [URL] on that machine.

but when I go to do the same thing in the centos net install I get an error stating simply: "that directory cannot be mounted from the server".

in the settings I have the following values:

NFS server name: nas.example.com
CentOS directory: /mnt/iso1
NFS mount options (optional):

View 1 Replies View Related

CentOS 5 :: Couldn't Find Git Package In Any Of Yum Repositories

Jul 14, 2009

I have centos 5.3.I couldn't find git package in any of the yum repositories. Is there a package location, version you would recommend.

View 1 Replies View Related

Fedora Networking :: Mounting A Windows Share In FC 10

Jun 12, 2009

Usually you put external mounts in the /mnt folder, then link there with a symbolic link if you want access from somewhere else. By keeping all of your mounts in /mnt its easier to manage them as your system and ability grow.

You need to make mounts as root. Mounts take the data in the target and put it on top of an existing folder. When you mount something on top of a folder whatever was there becomes invisible until you remove the mount on top of it. If there is a problem with a mount and it does not work, any writes to the mount will go to the folder underneath, and any data you expect to read from there will not exist.

In making a mount you should realize that the char requires an escape char in bash to show up in the final output to the command. The escape char is also . Therefore to show \ in a Windows command, you need to type \\. Also, spaces must be escaped once with .

Howto:

You should substitute your ip or name for 10.10.9.5

Reminders: Make sure your Windows folder is shared read/write if you need to write to it.

You probably want to change permissions on /mnt/WindowsDocuments to 777

Tips:If you want a link from your desktop to your Windows "My Documents" folder you can now do this:

$cd ~/Desktop ln -s /mnt/WindowsDocuments WindowsDocs

This will make a symbolic link to /mnt/Windows, and if you execute: ls -l ~/Desktop you should see the links information in the response

Finally, if you want to keep a local backup of what's on the windows box in a local folder you could do:

The ~ char is shorthand for /home/<uername> and represents your home folder.

The result of the rsync command is to make a copy of WindowsDocs (which points to your mount at /mnt/WindowsDocuments which is linked to your Windows machine shared 'My Documents' folder) and put it into ~/WindowsDocumentsBackup

As always, make use of the man command if you get confused or the info command for more detail. ie man rsync

View 1 Replies View Related

Ubuntu :: Mounting Windows Share Using Nautilus

Jul 20, 2010

In Nautilus, I can find the share under Network which I want to mount. When I double-click on the desired folder, I was prompted for a username, domain and password. However, I could not log in; there was no error messages, but Nautilus kept prompting me for my username etc..It would seem like I've entered the wrong details, but I've used a Mac OS to access the share using the same wired network and I had no problems doing so.So what could be the problem? Am I missing some setting? Or is the Windows share setting denying access to Linux systems?

View 9 Replies View Related

Ubuntu :: Nautilus Mounting Windows Share?

Aug 4, 2010

I have been looking into how to get Nautilus to emulate the windows "map network drive" feature.

I have found several howto's that use various command line utilities to try to do this, however they tend to be like trying to use a sledgehammer to fix small dents.

When I connect to a share server, Nautilus puts a directory on my desktop that only Nautilus seems to be able to see and use. I would like to be able to access this directory with non-Nautilus applications.

View 5 Replies View Related

Fedora :: Getting Error While Mounting Nfs Share?

Jul 19, 2011

When ever i try to mount my nfs share i got a msg mount: 192.168.10.1:/home failed, reason given by server: Permission denied

And my log file show the message Jul 19 04:33:25 localhost mountd[28294]: mount request from unknown host 192.168.10.1 for /mount_rhel/Server (/mount_rhel/Server)

My Exportfs file
/mount_rhel 192.168.10.0(rw,sync)

i try to reinstall nfs but the problem is still same. i also checked all the daemon is running in backgroup like portmap , mountd etc.

View 4 Replies View Related

Ubuntu :: Apt-get Error / E / Couldn't Find Package

Apr 26, 2011

I have ubuntu intrepid installed in one of the amazon servers , when i try to install any software using apt-get i used to get the following error.Code: E: Couldn't find package E: Some index files failed to download, they have been ignored, or old ones used instead.

View 5 Replies View Related

General :: Error: Couldn't Find Clock_gettime?

Jul 3, 2010

When i install libdrm, i get the following error:checking for clock_gettime... no.checking for clock_gettime in -lrt... no.configure: error: Couldn't find clock_gettime

It seems that it cannt find clock_gettime function, but i find it as follow:
$ grep clock_gettime /usr/include/time.h
extern int clock_gettime (clockid_t __clock_id, struct timespec *__tp) __THROW;

View 6 Replies View Related

CentOS 5 Server :: Mounting A NFS Share On A VM Host?

Sep 2, 2010

I'm having some trouble mounting an NFS share on a VM host (both CentOS 5.5):

-------------------------
SAN/NAS BOX (NFS Server):
-------------------------
/ filesystem on VolGroup00/LogVol00 = 7.6GB A 20GB filesystem on vg_vm/lv_vm1 is mounted at /srv/vm1 A 100GB filesystem on vg_vm/lv_data1 is mounted at /srv/data1

Output of 'df -h' (extraneous stuff removed):

Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
7.6G 1.8G 5.5G 25% /
/dev/mapper/vg_vm-lv_vm1
20G 173M 19G 1% /srv/vm1
/dev/mapper/vg_vm-lv_data1
99G 188M 94G 1% /srv/data1

View 3 Replies View Related

Fedora Networking :: Mounting Windows Share With Cifs?

Feb 10, 2009

Following instructions that I received from the Fedora 10 Guide, I recently edited my etc/fstab file so that I could auto mount my Windows share. It worked the first time, but when I rebooted, I noticed an error saying that Linux could not not unmount the cifs shares. Eventually it did reboot, but now I cannot mount the share at all from fstab. When I run the command #mount -a and then #mount, my share is shown to be mounted although I cannot access it and there is no link to it on the desktop like there was the first time it mounted. I basically want my Windows share to be permanently mounted with read/write permissions. My Distro is Fedora Core 10 64 bit. How can I resolve this issue?

View 3 Replies View Related

General :: Automatically Mounting Windows Share In Fedora 12?

Apr 8, 2010

I'm trying to automatically mount a windows share in a Fedora 12 instance (FC12).When I manually mount things work:mount -t cifs //nas01/servers -o username=guest,password=myPassword /mnt/nas01/serversIf I update /etc/fstab with the following://nas01/servers /mnt/nas01/servers cifs username=guest,password=myPassword 0 0Nothing happens after reboot. The thing that has me baffled is after a reboot if I run:mount -aThe share is mounted.

View 3 Replies View Related

Ubuntu Networking :: Odd Mounting Windows Share With Fstab?

Jun 8, 2010

I cannot mount my windows share automatically with fstab and have the files be R/W. They are only mounted as read-only.I have tried several dozen commands in the fstab file with many mount points and different users. The share is on a Windows 2000 server, but NOT a domain controller.Thing is, using the Places|Connect To Server|Windows Server menu selection, it works fine. And when I use that, the share shows up on the desktop. However, in some programs I cannot see the share in the open/close dialog boxes. I can however go to /mnt/server to see them if I mount them in fstab. The files just open as "read only" that way however.Have tried... on last line of fstab mount command.....rw option, +777 option, using IP address of server, using server name.

Same result (as fstab) if I do a manual mount command, then a mount -a. Mounts Ok, just as "Read only".
ex: sudo mount -t smbfs //192.168.1.xxx/sharename /media/server -o username=xxxxxx,password=xxxxxxxxThis has been the case with Ubuntu 8.04 until my current one, 9.10. Ubuntu (if you are listening) really needs to make this easier. It truly is basic network stuff that for some reason is rather difficult to do. Read only access is not actual network access and my other option (having to manually connect via the drop-down menu) each time I boot up is a pain.What is different about that "connect to server" option on the menu that makes it work? It'd be great if there was a check box there that said "remember this connection". Then all would work fine.

View 3 Replies View Related

Ubuntu Networking :: Mounting Windows Share No Password?

Oct 6, 2010

We have a computer here with stuff on it we all use. If I load up my Windows XP VM and open it through My Network Places it loads up just fine. In Ubuntu Nautilus complains that it cant mount the share. If I do:

sudo mount -t cifs //tech1/e /mnt/tech1

it asks for a password. There is no password.

View 5 Replies View Related

Ubuntu Networking :: Mounting Windows Share On Network?

Jan 1, 2011

I have a network PC running Win7 that u use for storage of all my media; movies, music and pictures.I can connect and use the share just fine using the "connect to server" option under places menu.I think i need to modify the fstab file but I am not familiar enough with it to do this.Have searched other threads for help but I am doing something wrong.HP Laptop running Ubuntu 10.10 connecting to a win7 share through a router.

View 9 Replies View Related

Ubuntu Servers :: Mounting Windows XP Share For Back Up

Jan 9, 2011

Mounting Windows XP Share for back up.

View 1 Replies View Related

Networking :: Mounting Windows Share Without Encrypted Passwords?

Aug 4, 2010

We have a Windows server at work that has several shared directories. For whatever reason the lab administrator has required clear-text passwords for it. There is a registry tweak for Windows boxes. Nautilus can't mount shares because it is trying to use an ecrypted password. Ironically enough the Windows VM I have running in Virtual Box can mount the shares.... smbclient can see the server and shares if I specify a clear-text password option.

View 1 Replies View Related

Ubuntu :: ERROR: Couldn't Find Matching Glx Visual

Aug 4, 2011

When I try to play some OpenGL games, I get this error.How can I fix this? My graphics card is Nvidia, and I use the nvidia-current driver.Here's what it says under OpenGL/GLX Information. I don't know if this is the info you need, but oh well.

GLX_EXT_visual_info
GLX_EXT_visual_rating
GLX_SGIX_fbconfig
GLX_SGIX_pbuffer

[code]....

View 3 Replies View Related

CentOS 5 :: Samba CIFS - Mounting Directory On Share

Jul 22, 2009

I've to make a Windows 2000 share on my Server Linux CentOS 5.1 with all the updates installed with yum. I've a directory on a Windows 2000 that contains some images for a catalogue. I have my internet site on CentOS 5.1 with a Apache - Mysql - PHP web server. I have to mount my directory on a share in /mnt/catalogueimages and made a symbolic link from my /var/www/html/mysite/catimages to this samba share.

This is what I do following your guide a this link: [URL]
I have placed in my /etc/fstab this line:
//SERVER/C/Catalogue /mnt/catalogueimages cifs user,username=Administrator,password=,uid=apache,gid=apache 0 0
My Windows 2000 server have no password.

After that I made the symbolic link:
ln -s /mnt/catalogueimages /var/www/html/mysite/catimages
All it's OK.

The problem is that I can't see the images via browser. I have tried also to put some images in the directory /mnt/catalogueimages, deleting the mount point, in order to see if the problem was in apache: the images are visible via browser. Why I don't reach to see the images mounted with samba?

View 9 Replies View Related

OpenSUSE Network :: Mounting Apache WebDAV Share On Windows 7

Aug 12, 2011

I want to setup a SSL encrypted WebDAV share on my OpenSUSE 11.4 server that is accessible from the internet. Everything is working fine when using Windows XP or Linux clients, but a connection with Windows 7 is not possible ("the selected folder is not valid").

I already searched for a solution to this problem I tried several setups:
- with and without encryption
- with Basic authentication
- with Digest authentication
- without authentication

I did not have success so far. Is there any solution to this (except not using Windows 7)? Or can anyone confirm that this should be working (and maybe my configuration is messed up)?

View 1 Replies View Related

Ubuntu Networking :: Mounting A Volume As An ISCSI Share On A Windows Box?

Jun 21, 2010

Does anyone have any good articles on mounting a Ubuntu volume as an iSCSI share on a windows box? Originally I was just going to use a SAMBA share but it turns out samba has issues with my lan security. So I thought since all I really want to do is create the share on my backup server that an iSCSI device would do. Been using the following article with limited success... [URL]

View 2 Replies View Related

General :: Fedora 13 Mounting Share On Windows Server 2003?

Sep 1, 2010

I'm trying to mount a Windows Server 2003 share in Fedora 13. With Fedora 8 and with RHEL 5.5 this works properly, but not with Fedora 13.

The mount point I'm using is /usr/eg

The symptoms are: Nautilus (the file browser) does not display the mount in the places or tree as a mounted drive. Using the file broser I can browse under file system down to the files on the server Programs cannot find the files under /usr/eg ie the files on the server.

Here is my fstab entry:

//192.168.1.40/eg /usr/eg cifs auto,user=<user>,password=<password>,rw,uid=500,gid=500,file_mode=0774._netdev 0 0

View 1 Replies View Related

General :: Mounting Windows 2008 Server Share On Red Hat 4 Machine?

Jun 8, 2010

I am having issues mounting a share on a Windows 2008 Server from all of our Redhat 4 machines. I am trying to back up files before wiping and upgrading them to 5. I will try and post as much information that I gathered after trying different things. I am a newer hire for this network and a Linux newbie.

The scenario is this:

1. Windows 2008 Active Directory.
2. Redhat Enterprise 4 machines

I have root access and I tried entering at the terminal:

" smbclient -L "servername" -U "username"

get the "password" prompt I enter my password and get:

"session setup failed: NT_STATUS_ACCOUNT_LOCKED_OUT."

I check event viewer on the 2008 box and last week was seeing:

Event ID: 4625
Keywords: Audit Failure
etc, etc
"Account for which Logon failed:
Security ID: NULL SID
Account name: anonymous
Account Domain:MYGROUP
Failure Information:
Failure Reason: Uknown user name or bad password
etc, etc

Now the last couple of days the audit failures have not shown up on the 2008 Server box even though I attempted to log in.

The end users used to just use Konquerer smb://"servername"/"share" and it worked but for some reason starting last week this no longer works. Nothing was changed that I know of, this network is in a sealed classified environment with no external access. All additions to the network are monitored and no unapproved software is installed. The lab is in a vault type environment and only a few people know the combination and alarm pass codes so no chance of somebody adding stuff without me knowing it.

I would think with the locked out message it was an issue with my user account but that works fine on the Windows side so I tried my Linux credentials with no success when trying to mount the directory.

Is there something anybody can suggest Linux or Windows side to check? No user accounts work connecting to the Windows share.

p.s. I am aware the above command is only to see the Windows shares but i get the same thing when I just try and mount using CIFS or SMBFS.

View 6 Replies View Related







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