Ubuntu :: "Keep Aligned" On Desktop?

Feb 10, 2011

What does the "Keep Aligned" option for the desktop do in Ubuntu (Nautilus)? I was expecting it to work much like what I had previously seen in other operating systems, but it doesn't.So for example, I can drag an icon and drop it two pixels away from its original place, and it is not aligned back to the previous place automatically, however, if I disable and re-enable the Keep Aligned option, it is aligned to the grid.Is it that Keep Aligned option is not working on my installation, or is it generally supposed to work like that?

View 3 Replies


ADVERTISEMENT

OpenSUSE Wireless :: Eth0 Not Aligned And Wlan Not Aligned?

Aug 6, 2010

I use with 11.2 a network without problems.Now I installed in the same PC on another hdd 11.3 and get in yast2 network the messages:eth0 not aligned and for wlan too.My driver realtek r8192s_usb What can I do? adda7,

View 1 Replies View Related

Debian :: Can't Kill Desktop 'keep Aligned'?

May 31, 2011

OK, I admit I'm a little OCD about icon placement on the Desktop - I want to do it myself - so this is driving me a bit nuts.I have right-clicked to disable the option 'keep aligned'. I have made sure it is disabled in gconf-editor. BUT IT KEEPS COMING BACK!ince I don't mess a lot with my desktop, I'll notice it's reverted when I add something new, can't place it exactly where I want to and once again have to untick 'keep aligned'.It seems to be random so not quite sure what might be triggering it.

View 2 Replies View Related

Ubuntu Installation :: Creating 4KB Aligned Partitions During 10.04 Install?

May 1, 2010

I'm currently running a Ubuntu 9.10 64bit machine with one of those 2TB WD disks that does have 4KB blocks.Unfortunately the current partition layout is misaligned, so I plan to back up my home directory and start fresh with a 10.04 install, trying to make the partitions aligned as suggested here:what I'm wondering is, does the 10.04 partitioning program take care of the alignment today or I have to resort doing manual partitioning with a separate tool?

View 1 Replies View Related

Ubuntu Installation :: Create Aligned Partitions With Fdisk On EBS?

Jul 17, 2010

After reading Markus Ewald blogpost on http:[url]...n-ssd-on-linux about Aligning an SSD on Linux I decided to give it a try.I have bought two 80 GB Intel X25-M SSD for my home server. The plan is to install Ubuntu 10.04 64-bit server and use the SSDs as system discs and vmware data storage using software raid for redundancy.After reading the blog post I am not sure how to make all my partitions aligned and set up on EBS (Erase Boundary Size)I am planning for four partitions:Boot, size 1GB

Root, size 25GB
Swap, size 4GB
Data storage for vmware server, size 40GB

According to Markus Ewald I should use 32 heads and 32 sectors.Using the live CD, I started using fdisk -S 32 -H 32 /dev/sda.Fdisk can create partitions using cylinders or sectors, and now I ran into trouble.

First partition /boot must start on cylinder 2 (or sector 1024). Size is 1 GB and the following partition should be aligned and start on a new EBS block. How do I do this with fdisk?Should the next partition start on a new cylinder? Otherwise, after formatting, fdisk gives a warning that the partition is not aligned to the cylinder size? The overall question is how to format four aligned partitions which all are aligned with Intels X25-M EBS. EBS for Intel X25-M is either 128KB or 512KB (Have not found a confirmed value yet)

View 1 Replies View Related

Ubuntu :: Window List In Bottom Panel Not Aligned?

Feb 21, 2011

recently my window list in the bottom panel (where it shows all the minimized windows, etc.) got removed. When I added it back,'s not aligned all the way to the left as expected, it's more towards the middle

View 3 Replies View Related

Ubuntu :: Overlaying Image Onto GIF Animation Is Aligned Improperly?

May 16, 2011

I'm on Ubuntu 11.04, and am trying to overlay a static blue coastline image onto a geostationary animation with 12 frames using imagemagick. I have received no replies from them on their forums.The code I used to create the composite animation is as follows:

Code:
convert ( animation.gif -coalesce ) null: ( outline.tif outline.tif outline.tif outline.tif outline.tif outline.tif outline.tif outline.tif outline.tif outline.tif

[code]....

View 1 Replies View Related

Fedora :: Keep Aligned Check Box - Clears After Reboot

Jan 3, 2010

I have Fedora 12 & GNOME. But, this actually is an issue with many Linux distro's and GNOME. If I set the Keep Aligned Check Box Off - the next reboot it is back too set on. (Right click empty area on GNOME Desktop). I have searched many forums and search engines, I must be doing my search wrong there must be others that have noticed this, And the posts I do find on it are sometimes pretty old, so it does not seem like a bug would be around so long. I saw some notes about Nautilus also but no answers. FYI In CentOS 5.4 & GNOME it works properly.

View 3 Replies View Related

General :: Switch Man Formatting To Left-aligned?

Sep 19, 2010

I installed openSuSE 11.3. By default, man pages blocks are justified (block-aligned). Example:

Code:

WARNING Improper use of this command may seriously damage your system,so read this manual carefully to understand how to use it correctly and prevent yourself from destroying your system. Instead, I would like all manual pages would be displayed left-aligned, like this:

Code:

WARNING Improper use of this command may seriously damage your system, so read this manual carefully to understand how to use it correctly and prevent yourself from destroying your system.

I definitely would not like to reformat all the manual pages one-by-one. but rather just changing sometnihg in some macro-definition file or something similar? .. Is it possible achieve that simply and quickly?

View 15 Replies View Related

Programming :: Bash - Generating A Table With Aligned Fields

Apr 9, 2009

I want to write a function which calculates the space needed between fields, to generate a table with aligned fields, like when you type "ls -l", the operating system generates a table with beautifully aligned fields. I've got this code so far:

Code:

for line in $(cat tmpSearch)
do
line=`echo $line | tr ":" " "`

[code]....

View 2 Replies View Related

Software :: Overlaying An Image Onto A GIF Animation With Imagemagick Gets Aligned Improperly?

May 16, 2011

I'm on Ubuntu 11.04, and am trying to overlay a static blue coastline image onto a geostationary GIF animation with 12 frames using imagemagick. The code I used to create the composite animation is as follows:

Code:

convert ( animation.gif -coalesce ) null: ( outline.tif -coalesce ) -layers Composite composite_animation.gif

The resulting animation is below:

[URL]

It's a bit hard to see, but the blue outline should be aligned much farther to the left on the image, but the vast majority of it is cut-off to the right because it is shifted so far. It should be centered. Both the outline and the background are actually cropped regions out of respectively larger images that are identical in size and are designed to be overlaid.

If I choose a cropped region farther to the right on the background animation, the cropped blue outline of the same region won't even show up at all after the overlaying, as if it is shifted completely off the screen for some reason. I have had success overlaying outlines before with the above command, but here it is not working. I tried appending "-gravity center" to the command with no success.

View 1 Replies View Related

Programming :: Making Dynamic Memory As 64kB Aligned In C Lang?

Aug 17, 2010

I doing malloc and getting the chunk of dynamic memory. Now I want it to align that memory to 64KB. This means that the address of the memory starts from 64KB or multiple of 64KB.

View 3 Replies View Related

Programming :: Script To Delete Aligned Single-character Columns With No Field Separator?

Apr 20, 2010

The lines beginning with greater-than symbols are the sequence descriptors and the lines immediately after each descriptor with A-Z characters, dashes, and question marks are the aligned DNA sequences. The sequences are always the same length within a file and never span/wrap across more than one line.I am trying to write a script to remove positions in the sequences that are only represented by a -, X, ?, or N (these represent gaps or missing data). Also, if there is exactly one non-gap/missing character in a position it is also useless (there is nothing to compare it to) so I would like to remove those positions as well.

Position 5 (from the left) was removed because it was all gap/missing characters. Position 9 was removed because only one character was a non-gap/missing character. Position 10 was retained because there were 2 non-gap/missing characters.I'm really not sure where to start here. My first concern is I can't figure out how to tell awk to treat each character in lines not containing a greater-than symbol as a separate field. After that, I'm thinking I should use set up a counter to count the number of lines with gap/missing characters comparing that to the total number of lines not containing greater-than signs?

View 14 Replies View Related

Ubuntu :: "Keep Aligned" Is Always Activated Again After Reboot?

Jun 11, 2010

When I deactivate "Keep aligned" for all icons on my desktop it works fine - until the next reboot. Then the entry is enabled back again. How can I permanently the feature int he future?

View 3 Replies View Related

Red Hat / Fedora :: Permanently Uncheck "Keep Aligned"?

Dec 31, 2010

In Fedora 14, is there a setting in Configuration Editor that you can't uncheck, to uncheck Keep Aligned in right click desktop? Or, is there a piece of code that destroys that indelible check? When that box is unchecked, it's back on the next boot. It always messes up my desktop icons.

View 4 Replies View Related

Ubuntu :: "Keep Aligned" Bug?

Apr 29, 2010

In Ubuntu 9.10 (karmic) right-click the desktop and uncheck the "Keep Aligned" checkbox.Then reboot. Now the Keep Aligned checkbox is checked again. Keep Aligned automatically reverts to the checked state. I didn't have this problem with Ubuntu 9.04.Why can't I permanently uncheck the Keep Aligned checkbox?If you search Ubuntu Forums for the term "Keep Aligned", you will find several discussions about this bug, some dated almost 6 months ago. As yet no one has offered a solution. Several people, including myself, are very irritated by this bug.

View 6 Replies View Related

Ubuntu :: When Originally Tried Out (wubi Test Drive) Desktop 10.10 The Default Desktop Interface?

Dec 16, 2010

I just installed Ubuntu Server, I'd like to try out other desktops interfaces.When I originally tried out (wubi test drive) Ubuntu Desktop 10.10 the default desktop interface was very nice and clean...plus it seemed to render screen fonts very well I currently have Kubuntu Plasma interface installed.Can I use that Ubuntu Desktop on Ubuntu Server?If so, how would I go about installing it?

View 1 Replies View Related

Ubuntu :: Installed Desktop On Server To Get Boinc Manager Running Now Remove Desktop?

Apr 20, 2010

First problem:

apt-get --purge remove ubuntu-desktop
Reading package lists...
Building dependency tree...
Reading state information...
Package ubuntu-desktop is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

I have installed Ubuntu desktop on Ubuntu Server to get Boinc manager running. Now I want to remove Ubuntu-desktop.

Second Problem: /etc/init.d/xorg start : No such file or directory When the server boots i get a blinking cursor.

View 1 Replies View Related

Ubuntu :: Kubuntu Desktop Start - Shows Terminal After Login And Cant Get My Desktop Back

Jul 4, 2010

Have recently tried to start ubuntu with kubuntu-desktop, but as I reboot my computer kubuntu only shows the terminal after the login and I cant get my desktop back.

View 1 Replies View Related

Ubuntu Multimedia :: Sony FP - No Display But Desktop Accessible Via Remote Desktop?

Mar 18, 2010

I'm working on getting my myth box hooked up to my Sony flat panel display.Originally the nvidia drivers could not read the EID, so defaulted to only 640x480 over my HDMI-DVI connection.I manually updated xorg.conf with a mode for the resolution I know the thing can handle. Suddenly there are several resolutions avaialble in nvidia-settings and it seems to be communicating with the TV, as it is now listed as a Sony FP display rather than a CRT.I'm able to change the resolution now as expected.my problem, however, lies with the TV itself. I can't seem to get it to actually display the output. I'm able to remote desktop into the box and can see Gnome logged in and everything.However nothing on the TV itself.How do I troubleshoot this? Am I missing something obvious?

View 6 Replies View Related

Ubuntu Installation :: Make A Live-USB Containing Among Others Both Desktop I386 And Desktop AMD64

May 1, 2010

I want to make a live-USB containing among others both Ubuntu desktop i386 and Ubuntu desktop AMD64. How do I go about this? I tried using unetbootin, first adding i386 and then amd64, but that failed. My computer with an athlon II did manage to boot, and showed it had booted into the 64-bit version (ram shown was 3.9 GB, i386 goes to about 2.7 I think), my wife's computer with a pentium 4 did not manage to boot, got to a black screen. I think this is because casper has issues, being overwritten (I'd seen something to that effect somewhere), and thus only the latest version added being booted (in this case amd 64).

I'm under the impression that the startup disc creator included won't help, nor won't the multicd.sh script, so how do I circumvent the issues?

View 4 Replies View Related

Ubuntu :: Possible To Instead Of Using Desktop Folder Plasmoid / Usual Desktop Act As File Manager?

Nov 12, 2010

1. Is it possible to instead of using the Desktop Folder plasmoid, have a usual Desktop act as a file manager?
2. What is Akondi? There are tons of processes which have Akonadi in their name, and it seems to be using up lots of memory.Can I disable these somehow, or is it safe to do so?
3. Any general tips on how to reduce the amount ram that is used on startup? I am using somewhere around 750MB on startup, which is about double the amount Gnome uses. After a few hours of use, Xorg uses close to 1GB of memory.
4. Whenever I get a notification, they don't delete themselves, so when I click on the (i), I see tons of notifications. Is there a way to get them to delete themselves after they have been shown?

View 1 Replies View Related

Ubuntu Networking :: Use Remote Desktop Viewer To See The Desktop On A Windows XP Machine?

Nov 20, 2010

I have my main box, Ubuntu 10.04lts, and I am trying to use remote desktop viewer to see the desktop on a Windows XP machine. The machines are side by side The Ubuntu box is hardwired to my network router, and the XP machine is connected via wireless. Both get to the internet fine, and I can ping the Ubuntu box from the XP box. But, I cannot ping the XP box from the Ubuntu box, and Remote Desktop Viewer won't establish a connection to the VNC server I have running on the XP box.

View 6 Replies View Related

Ubuntu :: Nautilus - Desktop Flashes All The Icons On The Desktop A Couple Of Times

Mar 25, 2011

EVERY SINGLE TIME when I try to close the Nautilus File Browser (ie when I go to my Documents folder), the desktop flashes all the icons on the desktop a couple of times (for a sec you would see no icons on the desktop) before everything goes back to normal.

View 9 Replies View Related

Ubuntu :: Reset Gnome Desktop To Default Without Affecting Unity Desktop?

May 27, 2011

I have my Unity desktop just how I like it, but sometimes I like to log in to the Gnome (Ubuntu Classic) desktop. However, I was playing around with CCSM while in Gnome and I've totally messed it up, I have the Gnome panels and also the Unity launcher, it's a total mess. Is there a way to reset my Gnome desktop to default without affecting my Unity desktop?

View 3 Replies View Related

Ubuntu :: Access Files Of My Windows Desktop From System Desktop?

Feb 25, 2010

How can I access files of my Windows desktop from Ubuntu desktop while using Ubuntu?

View 3 Replies View Related

Ubuntu Networking :: Connect 10.04 Desktop System Wirelessly To Another Desktop

Jul 7, 2010

I am trying to connect an Ubuntu 10.04 desktop system wirelessly to another desktop that is directly connected to a cable modem via dlink wireless router and ethernet card. I have not been able to connect on the second system (Ubuntu) to the wireless router.

View 9 Replies View Related

Ubuntu :: Light Desktop - Install Desktop Command Only + Xfce?

Jul 19, 2010

Looking for a light desktop for a P3/512MB I installed xubuntu and I felt it slow. For a test, just tried installing lubuntu and it was so fast compared to xubuntu. The word here is I would like to move to xfce. Doing another test, I installed Debian Lenny + xfce and was way much faster than xubuntu.

My question: Can I install Ubuntu Desktop command only + xfce ? Is it going to be faster than xubuntu? Is there another recommendation for a debian based distro with xfce which runs faster than xubuntu?

View 1 Replies View Related

Ubuntu :: Desktop-Recorder Soft Records Desktop Very Slow?

Sep 19, 2010

I had downloaded "GTK-Recorder" in order 4 Desktop Recording...

whenever i start it,it first make my PC quite bit-Slow,and also his recording is quite slow.....i want a recorder which is quite fast in recording and doesn't really effect my Computer performance...

View 4 Replies View Related

Ubuntu :: Desktop Doesn't Correspond To /home/user/Desktop?

Sep 25, 2010

While I was trying to drag the Desktop icon to the places sidepane in nautilus file browser so that I can have it above Documents icon, I accidentally dropped it in Documents icon. I immediately deleted the "Desktop" shortcut that was created in "/home/user/Documents" but it was too late already and the damage has been done. When I try to create a new document on my desktop, it says "Error while coying to Desktop There was an error getting information about the destination. Show more details Error stating file '/home/user/Documents/' Desktop':No such file or directory" Now, I know that my desktop now is pointing me to a location in Documents folder which doesn't exist at all. I tried looking for any available settings/options in gconf-editor, but only in vain.

View 4 Replies View Related







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