Ubuntu :: Configure Nautilus To Remember Preferred Column Widths?

Apr 6, 2010

Is there any way to configure Nautilus to remember my preferred column widths so I don't have to fiddle with them every time I open a Nautilus instance?

View 2 Replies


ADVERTISEMENT

Ubuntu :: Nautilus - Don't Remember Default Program?

May 26, 2010

When i choose a default program(from the properties-> open with...), the nautilus don't open with the program, which i have chosen...

View 2 Replies View Related

Ubuntu :: 10.04 - Nautilus Will Not Remember Default Action

May 28, 2010

I did a fresh install of 10.04 a couple of weeks ago, and all seemed well, but lately when I double-click on, say, an OpenOffice (.odt) file in Nautilus, I get the following message:The file '/home/zerubbabel/Documents/Teachings/Queue/2010.05.15-A02.odt' is not marked as executable. If this was downloaded or copied form an untrusted source, it may be dangerous to run. For more details, read about the executable bit.(The pop-up window title reads: "Blocked: wine start /unix"). I've repeatedly set the "Open with..." and checked "Remember this application...", but it doesn't "stick".

View 5 Replies View Related

Fedora :: Getting Nautilus To Remember Window Size?

Dec 17, 2009

How do I get Nautilus to "remember it's window size? It seems that with F12 when I open a nautilus window it starts at some preset default size, and even though I change it and then close it. It returns to the default size when I open it again.

View 6 Replies View Related

Ubuntu :: Preserving Column Width In Nautilus?

Jan 8, 2010

Using "List View" in Nautilus (Ubuntu 9.10), is there a way to preserve the column width? If I manually change the column width and click into another folder, the width automatically reverts to the old width when I return.

View 4 Replies View Related

Security :: Configure PAM To Use The Remember Option For The Password?

Jan 7, 2010

How do I configure PAM to use the remember option for the passwd. It should remember the last 10 passwords and shouldnt allow the user to use the same old passwords. Here is what I have configured but doesnt work

#%PAM-1.0
# This file is auto-generated.
# User changes will be destroyed the next time authconfig is run.
auth required pam_env.so
auth required /lib64/security/pam_tally.so deny=2 onerr=fail even_deny_root_account unlock_time=5
auth sufficient pam_unix.so likeauth nullok

[Code]...

View 1 Replies View Related

Ubuntu Multimedia :: Two Screen Widths From Same Monitor On Web Page

Nov 30, 2010

I have apache set up on my 10.04 64 bit system. I am serving a web site that I am developing and I have noticed a situation that Alice might describe as curious.

When I access the site from the domain name, I get 1024 screen width. when I access the site locally with my computer name, I get 1264 screen width. The image actually changes, and I of course prefer the larger width.

The 'curiouser and curiouser' part is that the native driver will only show the monitor as 1024 as the largest possible width. I have a dual monitor, and while one is at 1960, the other is limited to 1024 in the current setting.

It is capable of 13xx when the nVidia driver is installed. (I was not happy with the screen settings available in their driver.)

So, somewhere, there is a file/setting/routine which allows for the larger res to be seen, if only through a locally accessed website. I have looked in the /etc/x11 files and folders and nothing screamed at me. If there are any suggestions about where to look under the hood to get the larger image for more or most and hopefully all the time, even through firefox.

I am using an nVidia GeForce:

View 3 Replies View Related

General :: Calculate 3rd Column Which Should Be Addition Of Value In 1 And 2nd Column?

Jul 19, 2010

How would i calculate following values.Initial file

10 3
20 4
How would i calculate 3rd column which should be addition of value in 1 and 2nd column.File after calculation
10 3 13
20 4 24

View 14 Replies View Related

Programming :: Awk Multiple Column Into Single Column?

Jul 15, 2010

I have a multicolumn datas, like

a1 b1 ... f1
a2 b2 ... f2
. . ... .

[code]...

I would like to make a file with all these data in one column, like

a1
a2
.
.

[code]....

Can it be done with awk or some other command? Also, is it possible then do add another column in front of this one with numbers of the lines (for every previous column), like

1 a1
2 a2
. .
. .

[code].....

View 14 Replies View Related

Ubuntu :: Cannot Configure Nautilus On Netbook?

Sep 27, 2010

Ubuntu 10.04 with Nautilus 2.30.1 The netbook has a screen resolution of 1024 x 600. The Edit; Preferences dialog window is too big to fit - I cannot see below "Tree View Defaults"; "[ ]Show Only Folders" line so I am missing the Help and Close buttons. I have not found any way to resize the window. Is this a bug which I need to report?

p.s. I have tried the Netbook Remix - don't care for it - not an option.

View 3 Replies View Related

General :: Awk Gsub() Command - String (column) Manipulation - Replace The Value Of The $1 Column In The Awk Print String?

Mar 7, 2010

i use this script to get the time and date of back and fourth transactions for a particular execution id. I use a substr command on the 5th column to to cut the milli seconds off the time value. - otherwise the times would look like 08:30:04.235

grep <executionID> <auditfile> | awk '{ print $1, $2, $3, $4, substr($5,1,8}
FIX -> Mon 3/1/2010 08:30:04
FIX <- Mon 3/1/2010 08:32:36
FIX <- Mon 3/1/2010 08:35:08

[code].....

anyhow - i append two sed commands to further clarify the direction of the message.

awk '{ print $1, $2, $3, $4, substr($5,1,8} | sed -e 's/->/ ->IN/g' | sed -e 's/<-/<-OUT/g'
FIX -> IN Mon 3/1/2010 08:30:04
FIX <- OUT Mon 3/1/2010 08:32:36

[code]....

I tried using an awk gsub () command within the string instead of the two seds, but it did not work:

awk '{ print gsub(/<regex>/, <replace with>,$1), $2, $3, $4, substr($5,1,8}

the sed works ok, but it would be cooler to make the replacement within the awk command:

gsub(/->/,-> IN, $1)

Is there a way where i could replace the value of the $1 column in the awk print string?

View 1 Replies View Related

Ubuntu Security :: Configure SMB Share Via Nautilus-share?

Apr 28, 2011

equivalent of "force_user" when sharing with nautilus-share? To put this question into context, I have shared out a folder with "Allow others to create ..." and "Guest Access ..." turned on via the GUI (I believe nautilus-share is applicaition behind the GUI). When Guest accounts create files or folders, I want the owner of the files or folders to be a specific user, rather then "nobody". In a Samba Server, I know you can use the parameter "force_user" in the smb.conf (under an individual sharename) which will specify the owner of the files and subfolders created through the share.

I have tried to add this parameter to the files created in /var/lib/samba/usershares but the owner of the files and folders are still "nobody" (NOTE: I rebooted the PC after making the change to the file) I have just done a fresh installation of Ubuntu 10.10 Desktop with nothing else installed (except the current Updates and the necessary components needed when sharing folders) As a follow on question, I also want to set the permissions for files and folders. To replicate what the "create_mask", "force_create_mode", "directory_mask" and "force_directory_mode" parameters do within a Samba Server.

View 1 Replies View Related

Ubuntu :: Set Preferred Applications More Specifically?

May 29, 2010

The Preferred Applications applet doesn't do what I need it to do.

What I'm looking for is a Win 3.x style File Association applet or config file so I can have .mp3's handled by Audacious and .m3u's handled by VLC, and so on. I'm sure it's out there somewhere, but I can't find it.

View 2 Replies View Related

Ubuntu :: Adobe Is Uninstalled But Still Preferred?

Mar 3, 2011

I installed Adobe Reader from the repository, but didn't like it (it takes way to long to load a page evince does instantly).I've removed it with the package manager, purged it with apt-get, completely removed it with synaptic, and set the right click to always use evince; the thing is still the preferred program and double-clicking on a pdf still tries to use Adobe and fails every time. This is really annoying in that Chrome tries to use Adobe to open pdf files too, so now I have to open my download folder, right-click, click "open with", and click "document viewer" (all for something that used to take one click!)

View 1 Replies View Related

Ubuntu :: Adding Thunderbird Preferred Application?

Feb 22, 2010

I have Ubuntu 9.10 64but with Mozilla Thunderbird (Shredder v3.0.3pre) and Firefox 3.5.8.

I can't seem to get the Menu - File - Send Link to work nothing happens.
Also for Preferred Applications the only thing available for the Mail Reader is the choice custom. I removed Evolution earlier.

I suspect that if I populate the Mail Reader with the proper command line it should fix my problem.

View 4 Replies View Related

Ubuntu :: Preferred Configuration For Dual Boot?

Apr 29, 2010

I got a new laptop having windows 7 preinstalled. Now I want to dual boot it by installing ubuntu as second os. I will be using ubuntu as primary, and windows 7 only if its absolute necessary. How can i make home folder common for both os? I mean (Users/mithun in windows 7 should be mapped to my home folder in ubuntu). I would also like to know what others do (hd partitioning etc) while dual booting.

View 9 Replies View Related

Ubuntu :: 10.04 - How To Change / Modify Preferred Font

Apr 30, 2010

I want to use Sans for English and another font for Chinese. I was thinking maybe I can modify
/etc/fonts/conf.d/69-language-selector-zh-cn.conf
/etc/fonts/conf.d/99-language-selector-zh.conf
to change the order of preferred font. But I couldn't find the files and I not sure if that will achieve my purpose at all...

View 1 Replies View Related

Ubuntu Multimedia :: Preferred App Settings For Media?

Aug 15, 2010

Using Preferences->Preferred Applications, in the multimedia tab, I've selected 'custom' and set the command to "guayadeque". But, if I double click on a .mp3, movieplayer pops up, and if I use a Media Control Applet in AWN, rythmbox shows up as the default. Anyway to make guayadeque (or other) as the true system default for music files?

View 4 Replies View Related

Ubuntu :: What Is Best / Preferred Way To Format Entry In / Etc / Fstab?

Jul 24, 2011

I have a disk that is formatted as NTFS (from Windows 7 - dual boot with Ubuntu Studio). This is not a boot disk, just an extra disk for data. I would like it to be available to both OS's. In Ubuntu, I went to System -> Administration -> Disk Utility and saw the disk. I clicked on the volume name and clicked Mount. I would like this always mounted when I restart Ubuntu. It was mounted as /media/Data2 (/dev/sdc5).What is the best/preferred way to format the entry in /etc/fstab?

View 5 Replies View Related

Ubuntu :: Preferred Use Of Sudo For Root-gaining

Oct 2, 2010

Which use of sudo do you prefer to get a root shell?

View 14 Replies View Related

Ubuntu Multimedia :: Are Nvidia Graphics Cards Still Preferred To ATI?

Apr 11, 2010

After a PSU and motherboard failure, I'm about to spec out a new PC. The last time I looked, Nvidia was the preferred graphics chipset as they tended to support Linux better than ATI. Is this still the case?[url].... seem to have lots of ATI cards in stock but hardly any Nvidia (despite offering a similar sized range), but I don't want to get an ATI card if it's not preferred for technological reasons (or even FOSS ethical reasons!).

View 9 Replies View Related

Ubuntu :: Preferred Method For Slimming Down Alternate Install CD?

Nov 30, 2010

What is the preferred utility for removing a significant quantity of packages from the alternate installer and adding a few, without going through the more full-featured, start to finish customizers?

View 1 Replies View Related

Ubuntu Multimedia :: Preferred Video Editors For Novices?

Dec 12, 2010

What are the preferred video editors for novices, and where may I locate/download them,

View 3 Replies View Related

Ubuntu :: Can't Set Alternative Mail Clients In Preferred Apps / Fix It?

Apr 28, 2011

I'm trying to set Desktop-Webmail to be the preferred Mail Client in Preferred Applications in Natty, but Evolution is the only selectable option.

Purging Desktop-Webmail didn't help, nor did trying other such apps like gnome-gmail.

Any ideas on how the list of Mail Clients can be set?

View 5 Replies View Related

Ubuntu Installation :: SAMBA Preferred File System?

Jul 8, 2011

Installing Ubuntu on fresh hard drives, need a SAMBA share on the second drive. Is there a file system that I should use (ext4, ext3, NTFS, etc.)?I will be accessing the share with:- Ubuntu 10.04 (I have one older one but that'll be upgraded to this version)- Windows XP, Vista, and 7The entire second drive will be a big share, so the I'll be formatting the entire drive. Can't seem to find any information on supported or recommended file systems.

View 3 Replies View Related

Ubuntu :: Shortcut To Access Sudo Nautilus (gksudo Nautilus) From The Current Window

Feb 11, 2011

Is it possible to change my current nautilus window to have sudo capabilities,? e.g. to delete locked files. It may be lazy but if it takes a lot of navigation then it would be handy to somehow activate sudo from the open window without the terminal command (gksudo nautilus) which always begins at root.

View 5 Replies View Related

Ubuntu :: Thunderbird Preferred Application Setting Changed After Update

Nov 7, 2010

I have to go back to System->Preferences->Preferred Applications and reset Thunderbird as my preferred email program after most updates. It usually gets set to custom after an update, which does not work right with Firefox alt-F E to send link to email recipient. I sure would like to know how to make this setting stick.
Ubuntu 10.04 32bit on Dell Inspiron 1501 - AMD Turion - 2GB ram 80GB HD

View 1 Replies View Related

Ubuntu :: Nautilus Not Work Correctly After Install Nautilus Elementary From PPA?

Jun 20, 2010

I attempted to install Nautilus Elementary...the results were not what I expected however. First of all, it doesn't seem to even have installed correctly, but thats not the main issue...after installing, Nautilus looks like this...

View 2 Replies View Related

Debian Multimedia :: Preferred Format To Rip DVDs To?

Apr 27, 2011

Handbrake defaults to .mp4 but can also rip to .mkv. I'm not sure which to use. I like to rip CDs to .flac if that gives you any idea of what I'm trying to achieve.

View 3 Replies View Related

Fedora :: Preferred Apllications And Hidden Files?

Oct 9, 2009

First is this:Whenever I open a file through - say - Open Office, the list of files I get shown automatically also show all the hidden files. Right click -> uncheck hidden files does the trick only for one session. If I hit Open again, they're shown again. How can I set it to not show hidden files by default in the 'open file' dialogue (for all apps)?Second is this:Under preferences, there's an item called 'preferred applications'. This is great, and works ok, but is way too general for me. How can I set that files with certain extensions always open with one app, and files with another extension always open with another app.

View 1 Replies View Related







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