id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
5746
1
null
2010-10-10T20:12:41.320
2
1216
<p>After upgrade Ubundu 10.04 to 10.10, remote desktop doesn't work anymore. I've checked the settings (vino-preferences) and everything is Ok, but I still can't access remotely to the machine! Any solution?</p>
null
235
2010-10-10T20:17:07.563
2010-11-24T19:46:09.053
Remote Desktop doesn't work after upgrade?
[ "10.10", "remote-desktop", "vnc", "vino" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-12T17:22:05.623", "id": "6411", "postId": "5746", "score": "0", "text": "Are you able to connect with another 10.04 machine (or a livecd)? Make sure the other end is still working correctly.", "userDisplayName": null, "userId": "186" }, { "creationDate"...
null
[ { "accepted": null, "body": "<p>I've tried 3 fresh install and connect with Ubuntu 10.04, Windows XP, without success. I couldn't understand why it happens in that PC. Before that I've made an install in a different PC and it works fine.</p>\n", "commentCount": "1", "comments": [ { "cr...
null
null
null
null
maurycio
5748
1
5767
2010-10-10T20:14:46.367
21
131697
<p>I have been playing with Ubuntu for a few weeks now, and I'd like to revert my computer back to it's original - factory - defaults. </p> <p>On the computer I have a recovery partition (it's a netbook). I went through the process of recovery and everything seemed fine. However, when I restart the computer I'm presented with </p> <pre><code>grub rescue &gt; </code></pre> <p>Now, my understanding is that when I installed Ubuntu "side by side" it replaced the MBR or something like it, with GRUB. </p> <p>I've read on a slew of forums, that I need to use a Windows Recovery Disk. </p> <p>Here are my issues: </p> <p>a) I don't have a recovery disk, I have a recovery partition - it's a netbook. b) I don't have an external cd drive. </p> <p>What I do have is a USB key that has about 1gb of space on it. </p> <p>Thanks in advance. </p>
2638
54298
2012-06-12T23:11:32.393
2017-06-05T15:51:48.020
How to restore Windows 7 MBR without a CD
[ "boot", "grub2", "dual-boot", "windows-7" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>install Ubuntu LiveCD on your pendrive, boot from your pendrive, open terminal and type:</p>\n\n<pre><code>sudo apt-get install mbr\nsudo install-mbr -i n -p D -t 0 /dev/sda\n</code></pre>\n\n<p>Replace <code>/dev/sda</code> with the name of your drive.</p>\n\n<p>What parameters do (<a href=\"http://manpages.ubuntu.com/manpages/precise/man8/install-mbr.8.html\" rel=\"noreferrer\">from man page</a>):</p>\n\n<blockquote>\n <p><strong><code>--interrupt &lt;mode&gt;</code>, <code>-i &lt;mode&gt;</code></strong></p>\n \n <p>This option sets the list of events which will cause the MBR to display it's prompt. Use <code>-i +&lt;event&gt;</code> to add an event to the list or <code>-i -&lt;event&gt;</code> to remove an event from the list. Values of <code>&lt;event&gt;</code> are:</p>\n \n <ul>\n <li><code>s</code> – A shift or control key is pressed.</li>\n <li><code>k</code> – A non shift-like key is pressed</li>\n <li><code>a</code> – The prompt is always displayed.</li>\n <li><code>n</code> – Never display the prompt (unless an error occurs).</li>\n </ul>\n \n <p><strong><code>-p &lt;partn&gt;</code>, <code>--partition &lt;partn&gt;</code></strong></p>\n \n <p>This specifies the default boot sector to load. Valid values of\n <code>&lt;partn&gt;</code> are:</p>\n \n <ul>\n <li>1, 2, 3, 4 The specified partition number.</li>\n <li><code>F</code> The first floppy disk.</li>\n <li><code>D</code> The partition marked with the bootable flag in the partition table.</li>\n </ul>\n \n <p><strong><code>-t &lt;timeout&gt;</code>, <code>--timeout &lt;timeout&gt;</code></strong>\n This option changes the time which the MBR waits for before booting the default partition to the value specified in 1/18 seconds (approx). The maximum timeout that can be specified is 65534 which is about an hour.</p>\n</blockquote>\n\n<p>If <code>mbr</code> not on repo you can download the Deb package <a href=\"https://packages.ubuntu.com/search?keywords=mbr\" rel=\"noreferrer\">from here</a>.</p>\n\n<p>Another method:</p>\n\n<pre><code>sudo apt-get install syslinux\nsudo dd if=/usr/lib/syslinux/mbr.bin of=/dev/sda\n</code></pre>\n", "commentCount": "4", "comments": [ { "creationDate": "2014-02-19T10:33:35.040", "id": "547040", "postId": "5767", "score": "0", "text": "Instead of using the whole Ubuntu LiveCD, one may use more easily the boot repair disk that is mentioned in a different answer and just boot in that one.", "userDisplayName": "user47206", "userId": null }, { "creationDate": "2015-11-17T13:27:31.940", "id": "1024328", "postId": "5767", "score": "0", "text": "The second method worked for me, I didn't know what was the name of my drive so I just want with /dev/sda which work for me. But now I don't have a dual boot (windows 7/ubuntu) anymore only windows 7 ( but at least I didn't loose anything). Thanks Pawel!", "userDisplayName": null, "userId": "473020" }, { "creationDate": "2017-07-02T12:02:27.163", "id": "1474197", "postId": "5767", "score": "3", "text": "i would appreciate if someone explained how linux commands/files like mbr or mbr.bin end up restoring/repairing a Windows MBR boot sector.. - i mean - these are two different OSes and many people mention bootsec.exe and only being able to repair windows MBR via Windows Rescue CD etc. - how come linux commands that vaguely look like copying (dd) linux MBR - do magic to a windows partition? i'm sorry for that level of incompetence, and thank you for understanding", "userDisplayName": null, "userId": "105804" }, { "creationDate": "2018-08-05T18:24:02.697", "id": "1739767", "postId": "5767", "score": "0", "text": "Notice that `-p D` might not work as expected. You might need to try all four options one-by-one explicitly: `-p 1`, `-p 2`, ...", "userDisplayName": null, "userId": "323249" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-10T20:50:58.540", "id": "5767", "lastActivityDate": "2017-06-05T15:51:48.020", "lastEditDate": "2017-06-05T15:51:48.020", "lastEditorDisplayName": null, "lastEditorUserId": "175814", "ownerDisplayName": null, "ownerUserId": "2937", "parentId": "5748", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>install Ubuntu LiveCD on your pendrive, boot from your pendrive, open terminal and type:</p>\n\n<pre><code>sudo apt-get install mbr\nsudo install-mbr -i n -p D -t 0 /dev/sda\n</code></pre>\n\n<p>Replace <code>/dev/sda</code> with the name of your drive.</p>\n\n<p>What paramet...
null
null
null
null
null
5749
1
null
2010-10-10T20:16:09.327
3
1440
<p>Whenever i connect my monitor to my laptop, it won't display the video at the native resolution in Ubuntu, but my monitor works fine and does both in Windows 7!</p> <p>In Ubuntu it just gives me stripes and the image "dances, so if i lower the resolution of the monitor, video displays just fine. I've tried the monitor on my Netbook and it works. Both the Netbook and my Laptop i'm connecting to have an Intel "GMA 950 graphics card". </p> <p>I've tried Kubuntu, Arch Linux, Mint, and Fedora and they all have the same issue, regarding the monitor resolution, whereas it continues to work fine in Windows 7.</p>
null
47151
2012-03-08T14:44:44.077
2012-03-08T14:44:44.077
Monitor won't display at native resolution.
[ "xorg", "graphics", "intel-graphics", "resolution", "screen" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2010-10-10T21:31:53.637", "id": "5789", "postId": "5749", "score": "0", "text": "What model of monitor is it, and what is its native resolution? What is the exact GMA950-based chipset on each computer?", "userDisplayName": null, "userId": "1059" }, { "creationD...
null
[ { "accepted": null, "body": "<p>Try setting a lower frequency and/or <a href=\"https://askubuntu.com/questions/4658/how-to-install-intel-82852-855gm-driver/4659#4659\">updating drivers</a>. I've used to have this problem with old (up to this July) drivers and the workaround was to set an external monitor to...
null
0
null
null
Kevin
5758
1
null
2010-10-10T20:33:11.127
-1
1479
<p>I am new to Ubuntu. I have installed Ubuntu 9.04(Jaunty). After installation I found that network card is not wokring. And id doest not list in "System > Preferenes > Network Connections" So , i got another card from my friend and try to search on internat about my problem but still cant find solution.</p> <p>Some commands output is here which may be help to solve problem</p> <pre><code>root@mzeeshan-desktop:/home/mzeeshan# uname -r 2.6.28-11-generic root@mzeeshan-desktop:/home/mzeeshan# ifconfig -a eth0 Link encap:Ethernet HWaddr 00:02:44:4a:45:12 inet addr:192.168.5.37 Bcast:192.168.5.255 Mask:255.255.255.0 inet6 addr: fe80::202:44ff:fe4a:4512/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:3774 errors:0 dropped:0 overruns:0 frame:0 TX packets:3611 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:4307045 (4.3 MB) TX bytes:583067 (583.0 KB) Interrupt:22 Base address:0x1000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:4 errors:0 dropped:0 overruns:0 frame:0 TX packets:4 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:240 (240.0 B) TX bytes:240 (240.0 B) pan0 Link encap:Ethernet HWaddr 5e:25:17:a1:18:ac BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) root@mzeeshan-desktop:/home/mzeeshan# lspci 00:00.0 Host bridge: Intel Corporation Device 0069 (rev 12) 00:01.0 PCI bridge: Intel Corporation Auburndale/Havendale PCI Express x16 Root Port (rev 12) 00:19.0 Ethernet controller: Intel Corporation Device 10f0 (rev 05) 00:1a.0 USB Controller: Intel Corporation Ibex Peak USB2 Enhanced Host Controller (rev 05) 00:1c.0 PCI bridge: Intel Corporation Ibex Peak PCI Express Root Port 1 (rev 05) 00:1c.4 PCI bridge: Intel Corporation Ibex Peak PCI Express Root Port 5 (rev 05) 00:1c.6 PCI bridge: Intel Corporation Ibex Peak PCI Express Root Port 7 (rev 05) 00:1c.7 PCI bridge: Intel Corporation Ibex Peak PCI Express Root Port 8 (rev 05) 00:1d.0 USB Controller: Intel Corporation Ibex Peak USB2 Enhanced Host Controller (rev 05) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) 00:1f.0 ISA bridge: Intel Corporation Ibex Peak LPC Interface Controller (rev 05) 00:1f.2 IDE interface: Intel Corporation Ibex Peak 4 port SATA IDE Controller (rev 05) 00:1f.3 SMBus: Intel Corporation Ibex Peak SMBus Controller (rev 05) 00:1f.5 IDE interface: Intel Corporation Ibex Peak 2 port SATA IDE Controller (rev 05) 01:00.0 VGA compatible controller: nVidia Corporation GeForce 8400 GS (rev a1) 06:00.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 07) 06:00.1 Input device controller: Creative Labs SB Live! Game Port (rev 07) 06:01.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10) 06:03.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) root@mzeeshan-desktop:/home/mzeeshan# </code></pre> <p>Motherboard is Intel DP55WG.</p> <p>I don't know what to do next. Any help will be greatly appreciated.. Thanks</p>
null
169736
2014-02-25T19:04:20.090
2014-02-25T19:04:20.090
Built-in network card not working?
[ "networking" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You might want to consider installing a newer version of Ubuntu, such as 10.04 LTS (the <em>Lucid Lynx</em>) or 10.10 (the <em>Maverick Meerkat</em>), as Ubuntu 9.04 will reach end-of-life in two weeks and will cease to be supported.</p>\n\n<p>In addition, hardware support ge...
null
null
2011-06-07T13:41:51.877
null
Zeeshan
5760
1
7053
2010-10-10T20:33:27.053
2
952
<p>When I try to login via browser (Chrome, Firefox) to Ubuntu One, I get following error:</p> <blockquote> <p>Something has gone wrong Sorry about that. This problem has been reported to Ubuntu One engineers and we'll fix it as quickly as possible. This may be a temporary problem, so try again in a few minutes. You can also review the current status of Ubuntu One which may contain more information about this issue.</p> </blockquote> <p>I can, however, go to machine adding page on Ubuntu One. I'm using only one computer, and it is listed there several times. I tried to delete every entries there and adding my computer once more, but it doesn't seem to fix the problem.</p> <p>What blocks connecting my computer to Ubuntu One cloud? It happened ever since I remember. I really wanna use it to store my 100GB stuff, but I just can't connect :)</p>
2937
null
null
2010-10-14T05:41:14.657
Ubuntu One and 'Something has gone wrong'
[ "ubuntu-one" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-10T20:49:11.557", "id": "5787", "postId": "5760", "score": "2", "text": "Consider reporting a bug here: https://bugs.launchpad.net/ubuntuone.", "userDisplayName": null, "userId": "667" } ]
{ "accepted": true, "body": "<p>the problem was fixed by contacting support, my account was broken and they've fixed it :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-14T05:41:14.657", "id": "7053", "lastActivityDate": "2010-10-14T05:41:14.657", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2937", "parentId": "5760", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>Check your terminal after executing command:</p>\n\n<pre><code>ubuntuone-launch\n</code></pre>\n\n<p>Maybe you got any Python's backtrace or something. Worth try ;)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-10T22:03:18.917", ...
null
null
null
null
null
5763
1
5766
2010-10-10T20:39:16.527
80
174249
<p>I would like to know how to upgrade from my current version of Ubuntu to the next stable from the Command line interface?</p>
333
169736
2014-02-18T15:57:45.013
2016-07-25T01:12:32.900
Upgrading from the command line?
[ "command-line", "upgrade", "release-management" ]
3
4
CC BY-SA 3.0
[ { "creationDate": "2014-02-18T15:58:02.000", "id": "546348", "postId": "5763", "score": "0", "text": "The other answers doesn't address this question.", "userDisplayName": null, "userId": "169736" }, { "creationDate": "2014-02-18T16:50:46.570", "id": "546400", "postId": "...
{ "accepted": true, "body": "<p>You'll first need to make sure update-manager-core is present (it may already be installed):</p>\n\n<pre><code>sudo apt-get install update-manager-core\n</code></pre>\n\n<p>Next, run:</p>\n\n<pre><code>sudo do-release-upgrade\n</code></pre>\n\n<p>You may need to check <code>/etc/update-manager/release-upgrades</code> and change the line:</p>\n\n<pre><code>Prompt=lts\n</code></pre>\n\n<p>to:</p>\n\n<pre><code>Prompt=normal\n</code></pre>\n\n<p>for the release to show up.</p>\n\n<ul>\n<li><a href=\"http://www.ubuntu.com/desktop/get-ubuntu/upgrade\">Upgrade Documentation</a></li>\n<li><a href=\"https://help.ubuntu.com/community/UpgradeNotes\">Upgrade Notes</a></li>\n</ul>\n", "commentCount": "4", "comments": [ { "creationDate": "2018-04-30T12:03:13.380", "id": "1674859", "postId": "5766", "score": "0", "text": "I have Ubuntu 17.10 installed. Apparently the `update-manager-core` package has been added to the core packages since the answer was given, as trying to install it yields the output `update-manager-core is already the newest version (1:17.10.13).`, and the command `do-release-upgrade` is available. However, giving this command on the command line produces the output `No new release found.`, even though release 18.04 was released last week. (I do have the line `Prompt=normal` in file `/etc/update-manager/release-upgrades`.)", "userDisplayName": null, "userId": "38043" }, { "creationDate": "2019-10-19T20:17:40.110", "id": "1974934", "postId": "5766", "score": "0", "text": "@TeemuLeisti the `/etc/update-manager/release-upgrades` documentation says ```normal - Check to see if a new release is available. If more than one new\n release is found, the release upgrader will attempt to upgrade to\n the supported release that immediately succeeds the\n currently-running release.```", "userDisplayName": null, "userId": "844745" }, { "creationDate": "2019-10-19T20:18:53.113", "id": "1974936", "postId": "5766", "score": "0", "text": "So it seems that setting `Prompt=normal` is NOT enough to update to the latest version. This will only update you to the second-to-latest version", "userDisplayName": null, "userId": "844745" }, { "creationDate": "2019-10-19T20:30:22.357", "id": "1974940", "postId": "5766", "score": "1", "text": "I found running `/usr/lib/ubuntu-release-upgrader/check-new-release -d` and then `do-release-upgrade -d` works for me", "userDisplayName": null, "userId": "844745" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T20:43:31.977", "id": "5766", "lastActivityDate": "2011-01-17T18:25:29.767", "lastEditDate": "2011-01-17T18:25:29.767", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "2987", "parentId": "5763", "postTypeId": "2", "score": "124" }
[ { "accepted": null, "body": "<p>You can do</p>\n\n<pre><code>sudo do-release-upgrade\n</code></pre>\n\n<p>for command line updating</p>\n\n<p>(This is actually the same as for <a href=\"http://www.ubuntu.com/desktop/get-ubuntu/upgrade\" rel=\"noreferrer\">Ubuntu Server</a>)</p>\n", "commentCount": "0", ...
null
null
2014-02-18T08:48:41.707
null
null
5776
1
null
2010-10-10T21:36:55.733
0
886
<p>i installed CompizConfig and activated Windows Preview, worked fine so far, also the windows previews, now i the window previews are shown anymore, in the menu of CompizConfig they are activated but work no longer. Already tried to reset the Standart-Profile in Profile and Backend. But makes no difference. Anybody has an advice what to do to fix it?</p>
2689
null
null
2011-01-05T13:44:08.947
Problems with Window Previews with CompizConfig
[ "compiz" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-06T00:16:52.233", "id": "21795", "postId": "5776", "score": "0", "text": "Hi,\r\nI have the same problem. When I restart my machine it works. As soon as I do an Alt+Tab action to switch between windows, the preview disappears. Maybe you can confirm this?\r\n\r\nUDATE:\...
null
[ { "accepted": null, "body": "<p>It often happened to me to think that it was not working because, in contrast to what happens in Microsoft Windows, this functionality only works for non-minimized windows. Are you sure this is not your case?</p>\n", "commentCount": "0", "comments": [], "community...
null
null
null
null
null
5778
1
5787
2010-10-10T21:43:08.040
2
3906
<p>My monitor brightness is reduced because it was causing me headaches. Web pages are displayed fine, but flash videos are too dark. I can control gecko-mediaplayer plugin brightness via mplayer config, but I'm not able to do the same for flash.</p> <p>In Windows I was able to do that via nvidia driver settings, which allows to control video overlay brightness independently, but the Linux nvidia driver doesn't allow to do that.</p>
2950
null
null
2010-10-10T22:06:59.297
Is there a way to control flash video brightness independently, via config file?
[ "video", "flash", "brightness" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can control video overlay settings with the proprietary NVIDIA driver. (<code>nvidia-current</code> package, in case you're using the default nouveau driver.) Open System > Administration > NVIDIA X Server Settings. Hit <strong>X Server XVideo Settings</strong> in the list on the left, and tweak the values on the right to suit your needs. This should affect anything that uses XVideo, such as most media players.</p>\n\n<p>The only issue may be Flash, which could bring you back to square one. It's possible that it does use XVideo (and awesome if it does) but if not you don't have a whole lot of options for that.</p>\n\n<p><em>Edit</em>: I tried this out myself, and it turns out Flash is not affected, unfortunately. You may have to wait for Adobe to implement XVideo or video acceleration in Flash unless another solution comes up.</p>\n\n<p><em>However,</em> it is possible that the darkness issues you're experiencing could also be video driver related, though I've never heard of an instance of this on Linux before.</p>\n\n<p><img src=\"https://i.stack.imgur.com/HE1t7.png\" alt=\"NVIDIA XVideo settings screenshot\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-10T22:38:53.523", "id": "5802", "postId": "5787", "score": "0", "text": "Thanks for your answer. Very helpful. Unfortunately, there are two problems. First, flash indeed doesn't use xv. The second one is that I don't have those options in my nvidia \"X Server XVideo Settings\". The only option I have is \"Sync to VBlank\" for \"Video Texture Adaptor\" and \"Video Blitter Adpator Settings\". Perhaps my card, which is a 7300GT doesn't support it.", "userDisplayName": null, "userId": "2950" }, { "creationDate": "2010-10-10T23:36:11.860", "id": "5809", "postId": "5787", "score": "0", "text": "Interesting. You're probably right; it may not be supported there. This screenshot is from the 260 driver.", "userDisplayName": null, "userId": "2224" }, { "creationDate": "2010-10-11T00:37:47.133", "id": "5823", "postId": "5787", "score": "0", "text": "I'm also using the 260 driver.", "userDisplayName": null, "userId": "2950" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T22:06:59.297", "id": "5787", "lastActivityDate": "2010-10-10T22:06:59.297", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2224", "parentId": "5778", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>You can control video overlay settings with the proprietary NVIDIA driver. (<code>nvidia-current</code> package, in case you're using the default nouveau driver.) Open System > Administration > NVIDIA X Server Settings. Hit <strong>X Server XVideo Settings</strong> in the lis...
null
null
null
null
null
5780
1
5816
2010-10-10T21:49:14.277
14
9759
<p>I have used Ubuntu for many years and this has always been a problem for me on every printer I encounter (HP, Lexmark, and Samsung, among others). Whenever I print, the fidelity is fine but instead of printing so that the first page ends up on top of the finished stack, it prints the first page first, then the second page, etc, so that all of the pages are in reverse order.</p> <p>Is there a software fix for this? Is anyone else having this problem?</p>
3095
null
null
2022-01-04T12:55:44.840
Printers Always Print Pages In Reverse Order
[ "printing" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>When you print in an application the Print Dialog shows up. Ensure that the Reverse option is checked.</p>\n\n<p><img src=\"https://i.stack.imgur.com/tksbx.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T23:56:42.823", "id": "5816", "lastActivityDate": "2010-10-10T23:56:42.823", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5780", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>If you go through the menu to \"System > Administration > Printing\" you'll see a list of printers you have install in your machine. right-click on one of them, i.e. the default one, and select \"properties\". Now on the left you have a list select \"Job options\" and hit the...
null
null
null
null
null
5786
1
5788
2010-10-10T22:04:54.037
2
2376
<p>So I might be getting a new MP3 player and I think that is going to be the Sony Walkman NWZ-S545. I don't want to have the same situation with the last MP3 player, which was the Shuffle and it didn't have good compatibility with Ubuntu so I was wondering if the Sony Walkman NWZ-S545 would work with Ubuntu?</p> <p>Thanks. :) </p>
2983
235
2010-10-10T22:15:32.133
2010-10-10T22:15:32.133
Will the Sony Walkman NWZ-S545 work with Ubuntu?
[ "hardware", "compatibility", "sony" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I would advise going with a different mp3 player. A lot of people on the web seem to have issues with making the walkman interact smoothly with audio programs.</p>\n\n<p>If you want that particular mp3 player, here's how to make it work with ubuntu:</p>\n\n<p><a href=\"http://ubuntu-virginia.ubuntuforums.org/showthread.php?t=866297\" rel=\"nofollow\">http://ubuntu-virginia.ubuntuforums.org/showthread.php?t=866297</a></p>\n\n<p>Otherwise, I'd recommend a generic used iPod nano/classic/touch. They are <em>almost</em> always perfectly compatible.</p>\n\n<p>Good Luck!</p>\n\n<p>EDIT: Additional How-To: kubuntuforums.net/forums/index.php?topic=3096598</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-10-10T22:09:46.410", "id": "5793", "postId": "5788", "score": "0", "text": "I want a good sound quality MP3 player", "userDisplayName": null, "userId": "2983" }, { "creationDate": "2010-10-10T22:11:24.273", "id": "5794", "postId": "5788", "score": "0", "text": "AFAIK, the mp3 player has no impact on the sound quality. The headphones, as well as the mp3 file ITSELF, are the culprits for bad/shoddy quality.", "userDisplayName": null, "userId": "3039" }, { "creationDate": "2010-10-10T22:12:55.743", "id": "5795", "postId": "5788", "score": "0", "text": "Compare the iPod and the Walkman. :D Lol, thanks for the link, that was a quick response. :)", "userDisplayName": null, "userId": "2983" }, { "creationDate": "2010-10-10T22:15:14.963", "id": "5796", "postId": "5788", "score": "0", "text": "Ah, turns out you were right on that bit. Here's a quote I found: MP3/M4A/AAC Sound quality depends upon three things:\n\na) The source quality (crap in = crap out)\nb) Encoding bit rate - the higher the better but that increases file size. Good music will come at 192 kbps or higher.\nc) The quality of headphones or sound system.", "userDisplayName": null, "userId": "3039" }, { "creationDate": "2010-10-10T22:21:06.310", "id": "5797", "postId": "5788", "score": "0", "text": "Okay, just to make sure, it works with Ubuntu, right?", "userDisplayName": null, "userId": "2983" }, { "creationDate": "2010-10-10T22:22:06.857", "id": "5798", "postId": "5788", "score": "0", "text": "It will, in the end. You may have to do some tweaking (issues might have been resolved with newer Ubuntu releases. The links I posted are 1+ year old.)", "userDisplayName": null, "userId": "3039" }, { "creationDate": "2010-10-10T22:22:46.170", "id": "5799", "postId": "5788", "score": "0", "text": "Oh, okay. Thanks. :D This new site is awesome. Really quick.", "userDisplayName": null, "userId": "2983" }, { "creationDate": "2010-10-10T22:24:23.613", "id": "5800", "postId": "5788", "score": "0", "text": "^.^ I'd appreciate it if you'd 'accept' the answer so people don't continue to post on a resolved question. (unless you are still waiting for more posts).", "userDisplayName": null, "userId": "3039" }, { "creationDate": "2010-10-10T22:25:46.860", "id": "5801", "postId": "5788", "score": "0", "text": "Ohhh, sorry. I was looking for the \"Mark thread as Solved\" button. :P", "userDisplayName": null, "userId": "2983" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T22:09:04.290", "id": "5788", "lastActivityDate": "2010-10-10T22:09:04.290", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3039", "parentId": "5786", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I would advise going with a different mp3 player. A lot of people on the web seem to have issues with making the walkman interact smoothly with audio programs.</p>\n\n<p>If you want that particular mp3 player, here's how to make it work with ubuntu:</p>\n\n<p><a href=\"http:/...
null
null
null
null
null
5790
1
5821
2010-10-10T22:13:25.917
4
2225
<p>I know docky can be installed seperately from gnome-do but I like both and don't want to install both app when I can install one only. Is there a way to get docky back in gnome-do?</p>
3102
235
2010-10-10T22:44:35.000
2011-12-28T13:52:50.723
Gnome-Do in doesn't have the docky appearance anymore
[ "10.10", "gnome-do", "docky" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Docky and Do were split after it became clear that the Docky theme for Do was collecting a huge amount of code not shared with anything else in Do.</p>\n\n<p>The Docky found in the <code>docky</code> package has a large number of extra features and a huge number of bugs fixed (particularly with respect to window matching) compared to the docky theme from Do.</p>\n\n<p>You will have a better dock experience with the stand-alone <code>docky</code> package than with the docky theme of the (previous) <code>gnome-do</code> package.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T00:07:37.143", "id": "5821", "lastActivityDate": "2010-10-11T00:07:37.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "188", "parentId": "5790", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Do you mean that when you activate gnome-do, it pops up where docky would normally be?</p>\n\n<p>From what I understand, you're going to need to have both apps installed. Don't worry, you can have docky disabled but still achieve the cool gnome-do affect.</p>\n\n<p>If you nee...
null
0
null
null
null
5791
1
6261
2010-10-10T22:16:29.317
3
2694
<p>I performed a <code>sudo apt-get install lamp-server^</code> on my Ubuntu 10.10 desktop for development purposes and then installed Webmin. Now, Webmin doesn't seem to think Apache is running when it really is, and if I try to start Apache from the Webmin interface I get the following output:</p> <pre><code>Failed to start apache : : * Starting web server apache2 ...done. </code></pre> <p>Also, through Webmin, if I try to view the Apache error log I get this:</p> <pre><code>cat: /var/log/apache2$SUFFIX/error.log: No such file or directory </code></pre> <p>Whatever is going on is preventing me from using name-based hosting to view local sites. What is wrong and how do I fix it?</p>
3101
235
2010-10-12T02:33:22.510
2010-10-12T02:39:22.160
Webmin seem to think Apache isn't started when it really is, how do I fix this?
[ "10.10", "apache2", "php" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As can been seen from the first paragraph of the webmin documentation on the <a href=\"https://help.ubuntu.com/community/WebMin\" rel=\"nofollow\">Ubuntu Wiki</a> and <a href=\"https://answers.edge.launchpad.net/ubuntu/+question/2873\" rel=\"nofollow\">Launchpad</a>, webmin is no longer supported in Ubuntu. Instead, users are being pointed to <a href=\"http://help.ubuntu.com/community/eBox\" rel=\"nofollow\">eBox</a>. The same issue was reported on the forums and was determined to be an <a href=\"http://ubuntu-ky.ubuntuforums.org/showthread.php?p=9951118\" rel=\"nofollow\">issue with Webmin</a> that needs to be resolved.</p>\n\n<p>The issue was reported as a bug against Webmin here: <a href=\"http://sourceforge.net/tracker/?func=detail&amp;aid=3081423&amp;group_id=17457&amp;atid=117457\" rel=\"nofollow\">http://sourceforge.net/tracker/?func=detail&amp;aid=3081423&amp;group_id=17457&amp;atid=117457</a></p>\n\n<p>The fix seems to be to edit <code>/etc/apache2/envvars</code>, to quote jcameron:</p>\n\n<blockquote>\n <p>Ok, thanks .. I see the issue now. The fix is to remove $SUFFIX from the\n lines :</p>\n \n <p>export APACHE_PID_FILE=/var/run/apache2$SUFFIX.pid\n export APACHE_RUN_DIR=/var/run/apache2$SUFFIX\n export APACHE_LOCK_DIR=/var/lock/apache2$SUFFIX\n export APACHE_LOG_DIR=/var/log/apache2$SUFFIX</p>\n \n <p>as it will be empty anyway.</p>\n</blockquote>\n\n<p>So you have 3 options:</p>\n\n<ol>\n<li>Use eBox</li>\n<li>Patch the file yourself to resolve the issue</li>\n<li>Wait for the Webmin maintainer to fix the bug and new packages to be released.</li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-19T16:35:29.657", "id": "8158", "postId": "6261", "score": "0", "text": "Thanks, I found most of this information out after doing some independant research. However, the news of Webmin no longer being supported by Ubuntu is new.", "userDisplayName": null, "userId": "3101" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-12T02:22:48.890", "id": "6261", "lastActivityDate": "2010-10-12T02:39:22.160", "lastEditDate": "2010-10-12T02:39:22.160", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "469", "parentId": "5791", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>As can been seen from the first paragraph of the webmin documentation on the <a href=\"https://help.ubuntu.com/community/WebMin\" rel=\"nofollow\">Ubuntu Wiki</a> and <a href=\"https://answers.edge.launchpad.net/ubuntu/+question/2873\" rel=\"nofollow\">Launchpad</a>, webmin i...
null
null
null
null
null
5793
1
135100
2010-10-10T22:18:21.207
4
994
<p>I want access to two networks:</p> <ul> <li>a PPPoE network: for external computers (www, etc.) <ul> <li>IP(dhcp), DNS, default route</li> </ul></li> <li>a LAN for access to other local computers (local file sharing) <ul> <li>IP(dhcp), no DNS, only LAN route</li> </ul></li> </ul> <p>Both networks are setup through the same Ethernet connection.</p> <p>One way of accessing both networks at the same time is to connect to PPPoE from network-manager, and add the LAN info by hand:</p> <ul> <li>add an IP on eth0</li> <li>add a route for traffic to that network</li> </ul> <p>I can configure two distinct connections in NetworkManager, but because both are on the same physical (Ethernet) network, selecting one of them makes the other one disconnect => can't have both of them at the same time.</p> <p>Is there a way to have both of the active simultaneously?</p>
3026
3026
2010-10-14T11:14:35.113
2012-05-10T18:10:49.520
Can two networks be activated on the same physical connection in network-manager?
[ "10.10", "network-manager" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I found a solution that seems to work with an ethernet port managed by NM.<br>\nI'm no expert and am new to NM and Ubuntu -so be advised.</p>\n\n<p>Using Ubuntu 12.04\nAdded a script: /etc/NetworkManager/dispatcher.d/wjw-alias-eth1<br>\n(an edited version of installed file: /etc/NetworkManager/dispatcher.d/01ifupdown). </p>\n\n<p>NM docs say scripts in dispatcher.d are run in alphabetic sort order, so name your\nadded file so it runs last.</p>\n\n<p>In my case eth1 is behind a router which assigns an IP# via 'static' DHCP.<br>\nI need a 2nd IP# on the same LAN segment so I can run two DLNA servers at the same time. (Mythtv and Serviio in my case.) It seems DLNA servers must each bind to a \ndifferent IP#. I wanted to keep NM managing eth1 to keep using its built in goodies </p>\n\n<p>my added script:</p>\n\n<pre><code>#!/bin/sh -e\n# Script for nm to add an alias eth1:0 and multicast routing on eth1 up---wjw\n\nif [ -z \"$1\" ]; then\n echo \"$0: called with no interface\" 1&gt;&amp;2\n exit 1;\nfi\n eth1=\"eth1\"\nif [ \"$1\" != \"$eth1\" ]; then\n exit 0;\nfi\n\n\n# Run the right scripts\ncase \"$2\" in\n up|vpn-up)\n ifconfig eth1:0 192.168.10.10 netmask 255.255.255.0 broadcast 192.168.10.255\n route add -net 239.0.0.0 netmask 255.0.0.0 dev eth1:0\n ;;\n down|vpn-down|hostname|dhcp4-change|dhcp6-change)\n # Do nothing more\n exit 0\n ;;\n *)\n echo \"$0: called with unknown action \\`$2'\" 1&gt;&amp;2\n exit 1\n ;;\nesac\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-05-10T18:10:49.520", "id": "135100", "lastActivityDate": "2012-05-10T18:10:49.520", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "62370", "parentId": "5793", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>You can create an alias. Both of which are on the same subnet. You can then assign your services accordingly.</p>\n\n<pre><code>ifconfig eth0:0 10.0.0.3\nifconfig eth0:1 10.0.0.4\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "20...
null
null
null
null
null
5794
1
7779
2010-10-10T22:20:25.467
3
812
<p>Just did an upgrade on my laptop from 10.04 to 10.10, and audio doesn't work at all anymore. I have the indicator applet, and it <em>seems</em> like everything is working fine. I've even tried installing several mixers in case something is muted, but nothing is (and mixers are showing activity as if everything is working fine).</p> <p>No application is reporting any errors, they all seem to be playing happily, but no sound comes out. I've tried reinstalling PulseAudio with --purge but that didn't help either.</p> <p>(If you need any logs or command output please let me know in the comments, I don't know where to look..)</p> <p>Things tried so far:</p> <ul> <li>Creating a new user to eliminate any configuration problems</li> <li>Creating /etc/asound.conf with <a href="https://wiki.ubuntu.com/PulseAudio#ALSA%20Configuration" rel="nofollow">these instructions</a></li> <li><code>sudo apt-get install libxine1-ffmpeg</code></li> <li>Booted from a live CD (10.04) to eliminate any hardware problems</li> </ul>
2385
2385
2010-10-12T16:55:39.703
2010-10-16T19:08:26.837
Lost audio after upgrading from 10.04 to 10.10
[ "10.10", "sound", "pulseaudio" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Did some more research and found a \"solution\".</p>\n\n<p>After a lot of googling, finally ran into this launchpad bug:</p>\n\n<p><a href=\"https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/617647\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/617647</a></p>\n\n<p>After seeing <a href=\"https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/617647/comments/39\" rel=\"nofollow\">comment #39</a> mentioning my laptop model, I've modified my alsa-base.conf and restarted. In more detail:</p>\n\n<ol>\n<li><code>sudo vi /etc/modprobe.d/alsa-base.conf</code> (or some other editor instead of Vi)</li>\n<li><p>Append the following at the end of the file:</p>\n\n<pre><code>alias snd-card-0 snd-hda-intel\noptions snd-hda-intel model=auto\n</code></pre></li>\n<li><p>Reboot</p></li>\n</ol>\n\n<p><strong>Warning:</strong> These instructions should only be used with the models mentioned in the launchpad bug discussion and not just on <em>any</em> configuration.</p>\n\n<p>To be honest, I'm not sure what the lines above actually <em>do</em>, but my noob instinct tells me it helps ALSA detect the proper sound card model and load the appropriate driver.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-16T19:08:26.837", "id": "7779", "lastActivityDate": "2010-10-16T19:08:26.837", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2385", "parentId": "5794", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>Have you tried to create a new Ubuntu user just for testing, to see if it is some config causing the trouble?</p>\n\n<p>Try this:</p>\n\n<p><a href=\"https://wiki.ubuntu.com/PulseAudio#ALSA%20Configuration\" rel=\"nofollow\">https://wiki.ubuntu.com/PulseAudio#ALSA%20Configura...
null
null
null
null
null
5795
1
null
2010-10-10T22:21:00.133
5
1447
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/86669/how-to-integrate-audacious-in-the-sound-menu">How to integrate Audacious in the sound menu?</a> </p> </blockquote> <p>Is there any plug-ins already available? I couldn't find any</p>
3104
-1
2017-04-13T12:25:03.423
2012-12-02T20:02:13.377
Will Audacious support the Sound Menu?
[ "indicator", "indicator-sound", "audacious" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-12-03T09:38:21.910
null
null
5800
1
5805
2010-10-10T22:34:12.803
1
1409
<p>No matter what I do, I can't get the Ubuntu One client to allow me to add my computer to the sync list in my account. I've tried reinstalling, deleting config files, etc... nothing seems to work.</p> <p>When I click on the "Manage Account" link, it just opens my browser and takes to my account page in Ubuntu one. It does not ask to add a computer, and if I try to click connect, it doesn't do anything, just remains disconnected. Anyone know what to do?</p>
2757
null
null
2010-10-11T01:18:13.607
Ubuntu One won't allow me to connect or add my computer to sync list
[ "ubuntu-one" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>A number of users have reported issues with connecting, and there is <a href=\"https://wiki.ubuntu.com/UbuntuOne/FAQ#How%20do%20I%20add%20my%20computer?\" rel=\"nofollow\">a recommended workaround.</a></p>\n\n<p>Open <code>System &gt; Preferences &gt; Passwords and Encryption Keys</code>.</p>\n\n<p>Under \"Passwords,\" right-click on <strong>Ubuntu One</strong> and select <code>Delete</code>.</p>\n\n<p>Open <code>Applications &gt; Accessories &gt; Terminal</code> and run: </p>\n\n<pre><code>killall ubuntu-sso-login; u1sdtool -q; u1sdtool -c\n</code></pre>\n\n<p>That command should cause the Ubuntu One SSO dialog to appear. From there you can either sign up for a new Ubuntu One account or add your computer to an existing Ubuntu One account.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-19T17:50:58.227", "id": "8167", "postId": "5805", "score": "0", "text": "Awesome, worked for me!", "userDisplayName": null, "userId": "2490" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T23:16:34.383", "id": "5805", "lastActivityDate": "2010-10-10T23:16:34.383", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5800", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>When you launch Ubuntu One in Menu > System > Preferences > Ubuntu One, have you clicked on the devices tab once the program launches? That tab allows me to connect/disconnect multiple devices and such.</p>\n\n<p>Let me know what happens.</p>\n", "commentCount": "2", ...
null
null
null
null
null
5807
1
6941
2010-10-10T23:18:45.047
6
9426
<p><a href="https://wiki.ubuntu.com/MaverickMeerkat/ReleaseNotes#Linux%20kernel%202.6.35">Ubuntu 10.10</a> has dropped support for i586 and lesser processors, along with i686 processors that do not support the CMOV instruction (Conditional MOVe, AFAIK).</p> <p>What is so special about the CMOV command? It even has a flag of its own in the <code>flags :</code> line of <code>/proc/cpuinfo</code>.</p>
1629
null
null
2011-01-04T03:46:46.617
What is the significance of the CMOV CPU instruction?
[ "10.10", "kernel" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The CMOV instruction is a predicated (or conditional) move instruction. It combines a branch and move instruction into one opcode.</p>\n\n<p>The CMOV instruction is useful in compiler optimization because it helps remove some of the conditional jump instructions from the code. This is important in modern superscalar processors because many instruction are in flight and executed in parallel and a conditional jump instruction would make it harder to predict whether code should be executed or not until the branch is resolved.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-14T00:10:35.823", "id": "6888", "postId": "6941", "score": "0", "text": "Ah, just like the conditionals in ARM and ia64 architectures, in this case applying only to a move instruction. Thank you.", "userDisplayName": null, "userId": "1629" }, { "creationDate": "2011-12-21T00:15:02.820", "id": "102109", "postId": "6941", "score": "0", "text": "@ΤΖΩΤΖΙΟΥ: See also http://www.blueraja.com/blog/285/branchless-conditionals-compiler-optimization-technique", "userDisplayName": null, "userId": "38709" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-13T20:05:11.410", "id": "6941", "lastActivityDate": "2010-10-13T20:05:11.410", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3686", "parentId": "5807", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>When source code is compiled for the 686 architecture with gcc and the -march flag, gcc will sometimes generate object code which contains the CMOV instruction. That is because CMOV was an instruction which came with the original 686 architecture which was released 15 years ...
null
null
null
null
null
5808
1
null
2010-10-10T23:22:35.590
1
311
<p>I have an old Toshiba Laptop with a very old graphic card <strong>"Trydent CyberAladdin P4 v6.x"</strong></p> <p>After installing of Ubuntu 10.04, my screen resolution is 800x600 and this is a maximum size? I can not find a video driver for my video card.</p> <p>Can you help me?</p> <p>thanks</p>
4880
null
null
2010-10-12T12:51:30.483
Old video card problem
[ "video", "graphics", "resolution" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Try to install the Trident (not Trydent) drivers :</p>\n\n<pre><code> sudo apt-get install xserver-xorg-video-trident\n</code></pre>\n\n<p>And restart your computer.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC...
null
null
null
null
null
5809
1
5843
2010-10-10T23:27:52.513
4
2876
<p>It's well known that if you push <kbd>Up</kbd> and <kbd>Down</kbd> keys in gnome-terminal, you can move on used commands. It only works for the commands wich are introduced before closing the window, but When I close it, gnome-terminal &quot;forget&quot; all commands. Also, I cannot paste text <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>.</p>
2827
null
2023-02-21T11:07:33.263
2023-02-21T11:34:46.727
Bash does not remember commands
[ "bash" ]
3
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>The quick answer is 'add the following to the very end of your .bashrc file': </p>\n\n<pre><code>\nshopt -s histappend\nexport HISTSIZE='10000'\nexport HISTFILE=\"$HOME/.bash_history\"\nexport HISTIGNORE=cd:ls:bg:fg:exit\nexport HISTCONTROL=ignoreboth:erasedups\n</code></pre>\n\n<p>...Or something like it, that's directly out of my .bashrc file.</p>\n\n<p>The correct answer is 'read up on the bash shell'.<br>\nI highly recommend Learning The Bash Shell (http://oreilly.com/catalog/9781565923478).</p>\n\n<p>Otherwise there's a lot of free material on the web to get you started, for example : \nhttp:www.ibm.com/developerworks/library/l-bash.html<br>\n<a href=\"http://tldp.org/LDP/abs/html/\" rel=\"noreferrer\">http://tldp.org/LDP/abs/html/</a></p>\n\n<p>Also, Romanovzky and Dennis have a valid point - the file may already be there.<br>\nYou might also make sure your user owns and can write to your .bash_history file : </p>\n\n<pre><code>\nsudo chown $USER:$USER $HOME/.bash_history\nsudo chmod u+w $HOME/.bash_history\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T02:13:39.977", "id": "5832", "postId": "5843", "score": "0", "text": "Regarding pasting: You can highlight text and then paste into terminals with Shift+Insert, or with middle-click on your mouse.", "userDisplayName": null, "userId": "3135" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T01:54:46.793", "id": "5843", "lastActivityDate": "2010-10-11T01:54:46.793", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3135", "parentId": "5809", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Check if you have the file <code>.bash_history</code> in your home. If not, create a new one using the command:</p>\n<pre><code>touch ~/.bash_history\n</code></pre>\n<p>You may also try to remove the file if it exists, using:</p>\n<pre><code>rm ~/.bash_history\n</code></pre>\...
null
null
null
user1673389
null
5811
1
5813
2010-10-10T23:40:52.043
5
3884
<p>I've upgraded from 10.04 to 10.10 and so much of my preferences are set as they where in 10.04. I haven't seen much difference in the fonts used by ubuntu, do they have a different name? Which is it?</p>
null
235
2011-12-13T23:54:40.010
2011-12-13T23:54:40.010
What is the name of the new ubuntu font?
[ "fonts", "ubuntu-font-family" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's called the <a href=\"http://font.ubuntu.com\" rel=\"nofollow noreferrer\">Ubuntu Font Family</a></p>\n\n<p>In the UI for the font menu it shows up as just \"Ubuntu\"</p>\n\n<p><img src=\"https://i.stack.imgur.com/lIkEu.png\" alt=\"alt text\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-11T04:07:36.680", "id": "5844", "postId": "5813", "score": "0", "text": "Couldn't resist commenting:\"Dejavu Sans Mono\" is also great for use as the \"Fixed width font\".", "userDisplayName": null, "userId": "2362" }, { "creationDate": "2010-10-12T00:01:23.070", "id": "6150", "postId": "5813", "score": "1", "text": "The “Liberation Mono” font is also a great choice for the “Fixed width font” setting.", "userDisplayName": null, "userId": "1629" }, { "creationDate": "2011-12-13T23:52:25.020", "id": "99820", "postId": "5813", "score": "1", "text": "Of course, if you're using 11.10 or later then \"Ubuntu Mono\" (which is part of the Ubuntu Font Family) is the best choice of all, and set by default. ;)", "userDisplayName": null, "userId": "18612" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T23:47:38.150", "id": "5813", "lastActivityDate": "2010-10-10T23:47:38.150", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5811", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>It's called the <a href=\"http://font.ubuntu.com\" rel=\"nofollow noreferrer\">Ubuntu Font Family</a></p>\n\n<p>In the UI for the font menu it shows up as just \"Ubuntu\"</p>\n\n<p><img src=\"https://i.stack.imgur.com/lIkEu.png\" alt=\"alt text\"></p>\n", "commentCount":...
null
null
null
null
Romanovzky
5817
1
11565
2010-10-11T00:01:18.070
9
17863
<p>That's about it. Whenever I press the eject button on my cd player, nothing happens. CD player is not the cause of the problem because this never happens to me under Windows. Any suggestions?</p> <p>In addition, running the eject command from a terminal also does nothing.</p> <p>More information : I am running ubuntu 10.04 64 bits, have previously read a CD (like 2 hours ago), which I ejected using nautilus because I couldn't eject it using the same hardware button.</p> <p>Here is the output of the command 'eject -v' :</p> <pre><code>eject: using default device `cdrom' eject: device name is `cdrom' eject: expanded name is `/dev/cdrom' eject: `/dev/cdrom' is a link to `/dev/sr0' eject: `/dev/sr0' is not mounted eject: `/dev/sr0' is not a mount point eject: `/dev/sr0' is not a multipartition device eject: trying to eject `/dev/sr0' using CD-ROM eject command eject: CD-ROM eject command failed eject: trying to eject `/dev/sr0' using SCSI commands eject: SCSI eject succeeded </code></pre> <p>UPDATE: Ok I would like to add that I am unable to reproduce this bug, as I upgraded to Ubuntu 10.10 using said CD, and behavior seems ok now. It was probably the upgrade to a more recent kernel that did the trick. Thanks everyone!</p>
119
119
2010-11-06T13:55:25.603
2020-12-08T11:44:54.087
CD tray won't open. What can I do?
[ "hardware", "cd-drive" ]
7
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T00:34:42.790", "id": "5820", "postId": "5817", "score": "0", "text": "What is the output of `eject -v`?", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2010-10-30T03:32:07.430", "id": "10518", "postId": "5817", "score": ...
{ "accepted": true, "body": "<p>Does</p>\n\n<pre><code>sudo umount /dev/cdrom\nsudo eject /dev/cdrom\n</code></pre>\n\n<p>work?</p>\n\n<p>If not can you eject the CD whilst the PC is at the BIOS screen?</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-20T13:42:14.503", "id": "19511", "postId": "11565", "score": "0", "text": "for clarification, if you have more than one cd drive, you may need to switch /dev/cdrom with /dev/cdrom1, /dev/cdrom2 etc for the number of drives you have until you eject the right one.", "userDisplayName": null, "userId": "5533" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-05T14:58:45.110", "id": "11565", "lastActivityDate": "2010-11-05T14:58:45.110", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5533", "parentId": "5817", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>try</p>\n\n<pre><code>sudo eject\n</code></pre>\n\n<p>on the command line.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T00:53:11.617", "id": "5829", "postId": "5824", "score": "0", "text": "Stil...
null
null
null
null
null
5818
1
null
2010-10-11T00:01:28.967
3
992
<p>While installing Ubuntu 10.10 on my newly partitioned drive - it stops at the login info screen and the &quot;Forward&quot; button won't activate and let me continue. I'm new to drive partitioning so I'm fairly sure I goofed up there. The drive partition was unformated, so I was letting the installation do the leg work.</p> <p>Pardon me, utterly new to this. Any ideas? Or is there a guide I missed?</p>
null
527764
2022-03-17T08:59:30.107
2022-03-17T08:59:34.960
I cannot seem to get past the "Who are you?"
[ "system-installation", "10.10" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>If it's holding you at the login info screen, it must be that you are not filling in something on that page. Are you filling in all five of the text fields: your name, your computer name, pick a username, choose a password and confirm your password?</p>\n\n<p>If it helps, th...
null
0
2022-03-17T09:00:06.100
null
Liam
5820
1
null
2010-10-11T00:05:58.280
5
324
<p>Please excuse my ignorance, I just find it weird. I am on my Win7 box. Also, only this site renders the font in my browser while design.canonical.com does not. I am pretty sure the latter uses Ubuntu font as the default the last time I logged into my Ubuntu box.</p>
2051
null
null
2010-10-11T00:11:51.943
Why is Ubuntu font being used in my browser when it's not even installed in my PC?
[ "fonts" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Because this site <a href=\"https://developer.mozilla.org/en/CSS/@font-face\" rel=\"nofollow\">embeds the font itself</a>; the canonical site just requests it, perhaps?</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T00:28:13.583...
null
null
null
null
null
5825
1
13782
2010-10-11T00:29:12.627
5
1353
<p>I've only today, started to use Evolution.</p> <p>What does Evolution's <strong>Flagged</strong> column indicate?<br> The Flagged column is the third one from the left in the Mail window of the default setup. Its icon is a red exclamation-mark in a red circle. </p> <p>I find lots of references to the fact that it is a sortable column, but nothing to indicate what its function is. </p> <p>I've noticed that an <strong>un-deleted</strong> message (from the Trash) shows as <strong>Flagged</strong>, but the word "flagged" can suggest that something is currently <strong>pending</strong>? </p> <p>I've been experimenting, and now have several <strong>Flagged</strong> messages. I am reluctant to close Evolution, until I know exactly what it means.</p> <p><strong>PS.</strong> The <strong>Flagged</strong> column is not the same as the <strong>Flag Staus</strong> column. The <strong>Flag Status</strong> column's icon is a <strong>Flag</strong>... The names are confusing, and as I mention in a comment below, I've been through the Help, but have not found a definitive answer. </p> <hr> <p>Here is a screenshot of the column-headers, and their names (in the customize dialog). </p> <p><img src="https://i.stack.imgur.com/mTVi3.png" alt="alt text"></p>
2670
2670
2010-11-18T12:19:55.413
2010-11-18T12:19:55.413
What does the Evolution "Flagged" column represent?
[ "evolution" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-11-18T12:48:08.707", "id": "14387", "postId": "5825", "score": "0", "text": "The 'Flagged' field works the same way as the 'starred' field works in gmail.\nThus it is used as a visual reminder that you need to follow-up on a message or conversation later.", "userDisp...
{ "accepted": true, "body": "<p>It is same as the 'starred' in gmail. Used to mark important mails.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-11-18T13:24:17.240", "id": "14398", "postId": "13782", "score": "0", "text": "Aneeshep, thanks for the answer. You have prompted me to look at this issue again (after 4+weeks)... It's finally sorted out... The 3rd column, **\"Flagged\"** = *\"Important / Unimportant\"* (in the context-menu)... \nThe 4th column in my pic, **\"Flag Statuses\"** is activated by the context-menu's *\"Mark for follow-up\"* and by then choosing from approximately 10 flags. This displays a Flag-Status of \"To Do (Red-ish)\" or \"Completed (Green-ish Flag)\" and finally blank (Cleared).", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-18T06:04:24.180", "id": "13782", "lastActivityDate": "2010-11-18T06:04:24.180", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4980", "parentId": "5825", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>It's basically just a marker for your own reference, so you remember to come back to it later. You can read more about this and other features of evolution in the User Guide.</p>\n\n<p><a href=\"http://library.gnome.org/users/evolution/stable/\" rel=\"nofollow\">Evolution Use...
null
null
null
null
null
5826
1
null
2010-10-11T00:33:35.723
1
680
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/2194/how-can-i-improve-overall-system-performance">How can I improve overall system performance?</a> </p> </blockquote> <p>I try to use the CPU Frequency Monitor in Performance but every time I logout, restar, turn off the machine the configuration change to on demand.</p> <p>How i can keep 'Performance' permanently</p>
3127
-1
2017-04-13T12:23:52.807
2010-10-11T00:33:35.723
How to keep Ubuntu in max performance?
[ "performance" ]
0
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T00:55:39.500", "id": "5830", "postId": "5826", "score": "0", "text": "This is a duplicate of this question: http://askubuntu.com/questions/2194/how-can-i-improve-overall-system-performance", "userDisplayName": "user2405", "userId": null }, { "creatio...
null
[]
null
null
2010-10-11T00:41:34.913
null
null
5828
1
null
2010-10-11T00:50:28.900
10
4285
<p>I tend to download lots of articles as PDFs, and I find that when I browse a directory of these Nautilus takes 1 minute to load the directory. I assume that's because it's generating previews of their front pages. That feature is useless to me, alas.</p> <p>I'd like to tell it not to do that.</p>
2473
null
null
2010-10-11T01:02:41.563
Is there a way to tell Nautilus not to generate previews of PDF files?
[ "nautilus" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-12-12T03:20:55.283", "id": "99144", "postId": "5828", "score": "0", "text": "Have these vulnerabilities that you mention already been reported?", "userDisplayName": null, "userId": "18612" } ]
null
[ { "accepted": null, "body": "<p>Assuming you're using Ubuntu 11.10, running the following in a terminal should do the trick:</p>\n\n<pre><code>gsettings set org.gnome.desktop.thumbnailers disable \"['application/pdf']\"\n</code></pre>\n\n<p>Alternatively, you can do this in the GUI by installing the <code>d...
null
null
null
null
null
5831
1
5841
2010-10-11T00:54:59.363
2
310
<p>The one that is currently up is pretty outdated; I was just curious if one such as myself could update, package then upload it?</p>
3130
41
2010-10-11T03:46:35.603
2010-10-11T03:46:35.603
How can I get the latest version of Assault Cube?
[ "packaging", "development", "motu", "updates" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>assaultcube is currently synced directly from Debian. You might consider <a href=\"http://www.debian.org/Bugs/Reporting\" rel=\"nofollow\">reporting a wishlist bug</a> against the package in Debian.</p>\n\n<p>If you are interested in trying to do it yourself, this might be a good place to start:</p>\n\n<p><a href=\"https://wiki.ubuntu.com/PackagingGuide/HandsOn#Tutorial%202:%20Updating%20a%20Package\" rel=\"nofollow\">https://wiki.ubuntu.com/PackagingGuide/HandsOn#Tutorial%202:%20Updating%20a%20Package</a></p>\n\n<p>You would also need to update the associated “assaultcube-data” package. Then you would need to follow the <a href=\"https://wiki.ubuntu.com/SponsorshipProcess\" rel=\"nofollow\">sponsorship process</a> to get the package uploaded.</p>\n\n<p>There is already an <a href=\"https://bugs.edge.launchpad.net/ubuntu/+source/assaultcube/+bug/621704\" rel=\"nofollow\">open bug</a> about this in Ubuntu.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T01:44:44.707", "id": "5841", "lastActivityDate": "2010-10-11T01:44:44.707", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5831", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>assaultcube is currently synced directly from Debian. You might consider <a href=\"http://www.debian.org/Bugs/Reporting\" rel=\"nofollow\">reporting a wishlist bug</a> against the package in Debian.</p>\n\n<p>If you are interested in trying to do it yourself, this might be a ...
null
null
null
null
null
5840
1
null
2010-10-11T01:36:06.737
4
160
<p>Where can I get the source files of this CD label</p> <p><a href="https://wiki.ubuntu.com/DIYMarketing#Current%20DIYMarketing%20content" rel="nofollow">https://wiki.ubuntu.com/DIYMarketing#Current%20DIYMarketing%20content</a>:</p>
2736
null
null
2010-10-11T20:53:49.663
Where can I get the source files of the CD label?
[ "cd" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I don't think they're available. The finalized PDF was uploaded by Canonical's Marketing Coordinator, which means the actual production of the document was probably done through channels internal to Canonical. A professional design team does not publish its source files.</p>\...
null
null
null
null
null
5845
1
210556
2010-10-11T02:14:31.473
123
60969
<p>When I right-click the desktop icon for my USB drive or SD card I have the choice to "Eject" or "Safely Remove Drive":</p> <p><img src="https://i.stack.imgur.com/2uLUF.png" alt="screenshot"></p> <p>In the Tree side pane in Nautilus, I can either "Unmount" or "Eject":</p> <p><img src="https://i.stack.imgur.com/wOPxz.png" alt="screenshot"></p> <p>The Places side pane in Nautilus has some kind of eject icon:</p> <p><img src="https://i.stack.imgur.com/e96Qm.png" alt="screenshot"></p> <p>What do all of these do?</p> <p>Specifics I've been wondering about include:</p> <ul> <li>What happens when a drive has multiple partitions mounted?</li> <li>Under what conditions is a prompt to empty the trash displayed?</li> <li>Do any of these result in a state in which the drive cannot be mounted again without first being physically reconnected?</li> </ul>
1859
169736
2014-04-05T05:51:43.230
2015-12-09T12:16:35.113
What is the difference between "Unmount", "Eject", "Safely Remove Drive" and the eject icon?
[ "nautilus", "gvfs" ]
4
5
CC BY-SA 2.5
[ { "creationDate": "2011-01-26T21:33:38.290", "id": "25339", "postId": "5845", "score": "0", "text": "I think that there was a papercut on LP about unifying/simplifying these names.", "userDisplayName": null, "userId": "8973" }, { "creationDate": "2017-08-16T23:40:17.027", "id...
{ "accepted": true, "body": "<p>The main differences are the following:</p>\n<h2>Unmount</h2>\n<p>This option will &quot;literally&quot; unmount the device/partition and it applies normally (In Nautilus) to hard drives, be them, internal or external. Is not common to see it for Flash Drives / Pen Drives / Thumb Drives / SD Card / Digital Camera and any other device that needs to sync before powering down.</p>\n<p>This is not the recommended way of doing it when addressing a device that needs to power down first if your intention is to disconnect the device afterwards, as the device will still show in the Nautilus panel..</p>\n<p>Have in mind that unmount gives you the ability to mount the device again (since it did not power down or actually eject the device from the system).</p>\n<h2>Eject / Eject Button</h2>\n<p>Somehow similar to Unmount, it will unmount the device/partition. The problem is that this option should only be present for Optical Devices (Devices that do not need to sync data before disconnecting) since this actually EJECTS the device. I mean literally ejects or opens your CD Drive/DVD Drive Device so you can take the CD/DVD out of it, physically speaking.</p>\n<p>You will not be able to mount the device again, except if you insert the CD/DVD back in (With Optical devices) or remove and reinsert the USB Drive again (For Flash Drives and other similar devices). Since this option also appears for USB Drives, and CD/DVD Drives behave differently than USB Drives (Hard Drives and Pen Drives in this case, Optical devices are omitted), ejecting a not properly synced USB Drive (Flash Drive or Hard Drive) could cause problems.</p>\n<p>There is however a verification process that runs when you try to Eject a device that needs sync. For example, if you try to eject a device that is copying data at that precise moment, it will give you the following warning:</p>\n<p><img src=\"https://i.stack.imgur.com/QNaR6.png\" alt=\"enter image description here\" /></p>\n<p>If you try to Eject the device and the sync is not done yet, you will get a message along the lines of &quot;waiting for sync to finish before ejecting device&quot;. This only shows or at least it gives you enough time to see the message if you copy a lot files, specially small ones mixed in with big ones and then immediately after finishing the copy process you try to Eject it.</p>\n<p>Note a couple of things:</p>\n<ol>\n<li><p>If you have an USB CD/DVD Drive and you Eject the medium, this will actually eject the whole device. You would have to insert the CD/DVD image back in to make the device appear again.</p>\n</li>\n<li><p>If you Eject (At least with 12.04 and 12.10, haven't tested older versions) a USB Device that needs sync, the Eject process will power down the device AFTER the sync is done. This might be the cause of not seeing the option for &quot;Safely Remove Drive&quot;.</p>\n</li>\n<li><p>If you connect a device that has multiple partitions (Like some IPods, N900 Smartphone or other devices that show 2 or more Devices in Nautilus), Eject will only &quot;eject&quot; with the device you have selected. It will not work with others until you specifically tell it.</p>\n</li>\n<li><p>Ejecting a device that has multiple partitions does not work correctly. It does not power down the device correctly so you might have problems or issues.</p>\n</li>\n</ol>\n<h2>Safely Remove Drive</h2>\n<p>This option differs from the others since it is specifically design for synced devices like USB Hard Drives, Pen Drives, etc.. It will sync the device, unmount it and then power it down. This option should be available for devices that need sync, although Eject has taken some of the properties of Safely Remove Drive.</p>\n<p>Here are some pics that show what you can see when you try to disconnect the device:</p>\n<p>As you can see in this image, a Pen Drive / Flash Drive has the &quot;Eject&quot; option\n<img src=\"https://i.stack.imgur.com/nlbJf.png\" alt=\"enter image description here\" /></p>\n<p>An external USB Hard Drive has the &quot;unmount&quot; option\n<img src=\"https://i.stack.imgur.com/tM3b2.png\" alt=\"enter image description here\" /></p>\n<p>An external USB DVD Drive has the &quot;Eject&quot; option<br />\n<img src=\"https://i.stack.imgur.com/1NIu1.png\" alt=\"enter image description here\" /></p>\n<p>Unity Launcher showing an &quot;Eject Parent Drive&quot; option on a multi-partitioned Pen Drive (Has 2 partitions in this case)\n<img src=\"https://i.stack.imgur.com/a3ogi.png\" alt=\"enter image description here\" /></p>\n<p>A 2 partition created pen drive</p>\n<p>Basically what we should see is this:</p>\n<p><strong>Unmount</strong> - For Hard Drives<br />\n<strong>Eject</strong> - For Optical Drives<br />\n<strong>Safely Remove</strong> - For USB Drives that need sync and power down (Pen Drives for example)</p>\n<p>Should be noted that Unity Launcher shows options differently than Nautilus. GPARTED or the Disk App also show differently than Nautilus.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2014-12-11T19:50:06.327", "id": "769936", "postId": "210556", "score": "1", "text": "after safely remove drive now drive wont remount", "userDisplayName": null, "userId": "311667" }, { "creationDate": "2014-12-11T20:15:20.957", "id": "769951", "postId": "210556", "score": "0", "text": "You may have found a bug", "userDisplayName": null, "userId": "7035" }, { "creationDate": "2015-03-04T21:04:09.520", "id": "824936", "postId": "210556", "score": "5", "text": "Thanks. How can we do \"Safely Remove\" a external hdd by command line?", "userDisplayName": null, "userId": "1471" }, { "creationDate": "2015-03-04T23:42:24.473", "id": "825028", "postId": "210556", "score": "1", "text": "umount /dev/DRIVE_ID then eject /dev/DRIVE_ID", "userDisplayName": null, "userId": "7035" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-11-01T14:24:31.420", "id": "210556", "lastActivityDate": "2015-12-09T12:16:35.113", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "5845", "postTypeId": "2", "score": "37" }
[ { "accepted": null, "body": "<p>When a drive is connected and its filesystem loaded, it is mounted, as if with the <code>mount</code> (or <code>pmount</code>) command, to a location on the root filesystem (usually somewhere inside <code>/media</code>). When the filesystem is no longer needed, it can be unmo...
null
null
null
null
null
5847
1
null
2010-10-11T02:22:51.483
6
18706
<p>I am trying to compile chromium source on ubuntu 10.10. But I get this "gdk-pixbuf/gdk-pixbuf.h: No such file or directory" error. Can you please tell how can I fix it? I have the '/usr/include/gtk-2.0/gdk/gdkpixbuf.h', so I should have gdkpixbuf dev package right? (since it said '/usr/include/gtk-2.0/gdk/gdkpixbuf.h:37: fatal error: gdk-pixbuf/gdk-pixbuf.h: No such file or directory'</p> <pre><code>$ make out/Debug/chrome CXX(target) out/Debug/obj.target/app_base/app/active_window_watcher_x.o In file included from /usr/include/gtk-2.0/gdk/gdkcairo.h:28, from /usr/include/gtk-2.0/gdk/gdk.h:33, from app/active_window_watcher_x.cc:6: /usr/include/gtk-2.0/gdk/gdkpixbuf.h:37: fatal error: gdk-pixbuf/gdk-pixbuf.h: No such file or directory compilation terminated. make: *** [out/Debug/obj.target/app_base/app/active_window_watcher_x.o] Error 1 </code></pre>
3129
449
2011-01-18T10:25:32.343
2013-06-14T19:40:49.240
How to resolve 'gdk-pixbuf/gdk-pixbuf.h: No such file or directory'
[ "chromium" ]
7
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Install <code>libgtk2.0-dev</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T02:44:18.123", "id": "5854", "lastActivityDate": "2010-10-11T02:44:18.123", ...
null
null
null
null
null
5850
1
81709
2010-10-11T02:33:37.573
2
540
<p>If I install Ubuntu on hard drive A and mount (via nautilus) hard drive B that has Windows 7 installed on it with a RAID1, could Ubuntu even remotely screw up the RAID Controller? Or would it look at it like a normal single hard drive not in RAID?</p> <p>I believe the RAID 1 is FakeRAID since I don't have a hardware raid controller card. </p> <p>I can't afford to risk losing the RAID1 setup so I'm just double checking. ^^</p> <p>-Thanks</p>
3130
6045
2011-11-22T14:46:14.917
2011-11-22T14:48:25.380
How does Ubuntu handle looking at a Windows Raid?
[ "nautilus", "windows-7", "raid", "dmraid" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-12T02:54:21.030", "id": "6203", "postId": "5850", "score": "0", "text": "You can add such additional info to your original question, that's easier to get a complete overview than burying it inside comments... :)", "userDisplayName": null, "userId": "935" }, ...
{ "accepted": true, "body": "<p>From the looks of it, I can't tell if you've used up your Fake RAID volumes free space. If you haven't then you could add an additional partition in the Ubuntu installer which does support fakeraid. If Ubuntu is already up the just:</p>\n\n<pre><code>sudo apt-get install -y dmraid\nsudo reboot\n</code></pre>\n\n<p>and the fake raid volume should be present in <code>/dev/mapper</code></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-11-22T14:48:25.380", "id": "81709", "lastActivityDate": "2011-11-22T14:48:25.380", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6045", "parentId": "5850", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>It could be \"fakeraid\" or Windows software raid.</p>\n\n<p>I think that <em>if</em> Ubuntu recognizes your Windows partition (meaning it's fakeraid with an onboard controller supported by the kernel), then it should be safe to use it. If the RAID is not recognized (and thu...
null
null
null
null
null
5853
1
12861
2010-10-11T02:40:26.433
1
411
<p>I was rummaging around in <strong>gconf-editor</strong> yesterday, and I noticed a setting to Group or Un-group a set of windows... (but I forget the exact Key-name) </p> <p>This setting was something which looked like a swtich to the default behavioural difference between Ubuntu and Windows... It was called something like: Group windows/dialogs</p> <p>I switched to "Group". This locks a child window/dialog to the parent, so that it appears "on-top" of the parent (which is pretty much the MS-Windws standard). I thought I'd try it out, to see which mode I preferred...</p> <p>An typical example of the "Grouped" behaviour is: An Open-file dialog is forced to stay on top of its parent, until it is closed. </p> <p>24 hours later, I've decided I prefer the default Ubuntu way... but I can't find that option again. </p> <p>Does anyone know which/where it is?</p>
2670
169736
2014-04-24T00:21:05.787
2014-04-24T00:21:05.787
How do I group/un-group parent/child windows?
[ "window-management" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-13T01:27:14.943", "id": "6560", "postId": "5853", "score": "0", "text": "Hmm... This is a hard one. There's a Compiz group plugin that has gconf settings, but it's behavior is different than what you're describing. If you really can't remember, your best bet might just...
{ "accepted": true, "body": "<p>The answer to this question has been resolved in this <a href=\"https://askubuntu.com/questions/12845/clicking-a-windows-decoration-brings-the-window-to-the-top-but-clicking-elswher\">askubuntu question</a> ... </p>\n\n<p>The transition from this question to the one I now refer you to, is explained in the comment I wrote to Martin's answer...</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-12T14:29:42.340", "id": "12861", "lastActivityDate": "2010-11-12T16:31:17.540", "lastEditDate": "2017-04-13T12:25:03.423", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "2670", "parentId": "5853", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>The only known location for that sort of option is:</p>\n\n<p><code>/apps/gnome/interface</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-11-12T14:11:21.240", "id": "13412", "postId": "12805", "score": "0...
null
null
null
null
null
5855
1
null
2010-10-11T02:45:53.707
0
103
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/5675/i-upgraded-from-10-10-beta-am-i-now-running-the-official-non-development-vers">I upgraded from 10.10 beta - am I now running the official (non development) version?</a> </p> </blockquote> <p>I have this sinking feeling that my system isn't fully upgraded to the released 10.10. If nothing else I am missing the Ubuntu Font Family. It just feels like some things aren't updating. I don't know if from release to release, beta to LTS, there aren't that many updates but I certainly haven't been seeing long lists when I start my update manager.</p> <p>I just don't feel like I'm upgraded/updated to the LTS 10.10. How can I check? And if not, how can I update?</p>
null
-1
2017-04-13T12:24:17.760
2010-10-11T03:00:47.897
Is my system fully upgraded?
[ "fonts", "update-manager", "lts" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Open a terminal and type:</p>\n\n<pre><code>cat /etc/issue\n</code></pre>\n\n<p>If it still shows 10.04, you can upgrade by going to System > Administration > Update Manager > Settings... > set \"Show New Distribution Releases\" to \"Normal Releases\" > Close > Check. Now yo...
null
null
2010-10-11T03:05:20.057
null
user3140
5859
1
5927
2010-10-11T03:02:56.477
8
10273
<p>I was wondering if it was possible to export anything built in Inkscape to inDesign CS or CS5. If it is possible, how can I get it to work? </p>
2935
169736
2014-01-31T17:31:30.100
2020-05-17T12:43:01.307
Is is possible to export Inkscape files for inDesign?
[ "inkscape" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T06:28:16.520", "id": "5879", "postId": "5859", "score": "2", "text": "You might want to add a little more info for folks that might know Inkscape but not inDesign. What file types could you use? Inkscape is more similar to Illustrator. It works with svg file, but ca...
{ "accepted": true, "body": "<p>According to Adobe [<a href=\"http://help.adobe.com/en_US/indesign/cs/using/WSa285fff53dea4f8617383751001ea8cb3f-6bd1a.html\" rel=\"noreferrer\">1</a>], InDesign does not support importing SVG files. It does, however, support importing EPS files, which Inkscape can export to (just choose EPS from the drop-down box in the &quot;Save as ...&quot; dialog).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T08:53:34.363", "id": "5927", "lastActivityDate": "2010-10-11T08:53:34.363", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "5859", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>As far as I remember Photoshop can import SVG. So inDesign should too.\nThere are many discussions on this theme.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T08:44:1...
null
null
null
null
null
5861
1
5905
2010-10-11T03:19:08.027
14
25851
<p>I used the Disk Utility to create an encrypted volume on an external drive. When I click the Unlock Volume button in that program, it mounts the drive for me.</p> <p>Now, I want to automate this process so that it will happen at boot-up.</p> <p>When I run <code>sudo cryptsetup luksUUID /dev/sdb1</code>, I get this:<br> <code>ca709269-1e3e-4e9e-9e08-7248f0e6c5a6</code></p> <p>So, I create <code>/etc/crypttab</code> like this:<br> <code>backup_drive UUID=ca709269-1e3e-4e9e-9e08-7248f0e6c5a6 none</code></p> <p>And I added this line to <code>/etc/fstab</code>:<br> <code>/dev/mapper/backup_drive /mnt/backup ext3 default 0 2</code></p> <p>When I reboot, Ubuntu tells me that the device is not available to map, so I tell it to skip it. It appears that the <code>/etc/crypttab</code> is not getting run correctly.</p> <p>How can I debug this?</p>
2565
null
null
2012-10-04T20:46:05.680
/etc/crypttab not working
[ "10.04", "encryption" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I think you need a fourth parameter there to specify the encryption type.</p>\n\n<p>This is what my <code>/etc/crypttab</code> looks like:</p>\n\n<pre><code>home_crypt /dev/disk/by-uuid/6f13e221-69f0-4f0e-9082-e2e7b32fc1dd /mnt/Keys/home-data luks\nswap_crypt /dev/sda3 /dev/urandom swap\n</code></pre>\n\n<p>The <a href=\"http://manpages.ubuntu.com/manpages/hardy/man5/crypttab.5.html\">Crypttab manpage</a> says that all four fields are mandatory.</p>\n\n<p>To test your settings, you can use the following commands to start and stop the cryptdisks after you make your changes.</p>\n\n<pre><code>cryptdisks_start\ncryptdisks_stop\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-12T23:45:06.893", "id": "6541", "postId": "5905", "score": "0", "text": "Thanks, I misunderstood the man page. Also, I like the use of /dev/disk/by-uuid -- that's easy to understand.", "userDisplayName": null, "userId": "2565" }, { "creationDate": "2014-04-23T03:01:45.087", "id": "595799", "postId": "5905", "score": "1", "text": "FYI for future travelers, the fourth parameter is no longer mandatory", "userDisplayName": null, "userId": "136192" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T07:23:46.523", "id": "5905", "lastActivityDate": "2011-10-14T23:06:16.437", "lastEditDate": "2011-10-14T23:06:16.437", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3168", "parentId": "5861", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>I think you need a fourth parameter there to specify the encryption type.</p>\n\n<p>This is what my <code>/etc/crypttab</code> looks like:</p>\n\n<pre><code>home_crypt /dev/disk/by-uuid/6f13e221-69f0-4f0e-9082-e2e7b32fc1dd /mnt/Keys/home-data luks\nswap_crypt /dev/sda3 /dev/u...
null
null
null
null
null
5862
1
8725
2010-10-11T03:20:49.823
2
470
<p>I use Eclipse IDE (Zend Studio to be exact) for editing code on my development servers.</p> <p>Because we have internal development servers, I connect to them via SSH and use the .gvfs folder in my home directory to access the files through Eclipse.<br> I.e: <code>/home/s.rees/.gvfs/sftp for s.rees on internal.dev/var/www</code></p> <p>Before upgrading to 10.10 Maverick I was fine reading and writing the files, but now any time it goes to save a file I get an empty file as a result. Making it impossible to do any work...</p> <p>I don't know if this is a bug or a wacky feature (that can be disabled?)... or where I need to report it as such if it is a bug. Any ideas?</p>
176
235
2010-10-11T03:33:14.317
2010-10-21T16:24:51.767
Eclipse writing to .gvfs directory results in empty file
[ "10.10", "eclipse", "gvfs" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T16:31:49.513", "id": "5989", "postId": "5862", "score": "0", "text": "Just noted that this is happening also with other editors such as IntelliJ IDEA, GEdit and so on. Problem definitely on 10.10 since was ok on 10.04\n\nI guess that there is a bug in GVFS.", "u...
{ "accepted": true, "body": "<p>As Valorin who asked the question commented, this is a bug: <a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-vfs/+bug/658069\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gnome-vfs/+bug/658069</a> The rest should be followed there.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-21T16:24:51.767", "id": "8725", "lastActivityDate": "2010-10-21T16:24:51.767", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3781", "parentId": "5862", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>As Valorin who asked the question commented, this is a bug: <a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-vfs/+bug/658069\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gnome-vfs/+bug/658069</a> The rest should be followed there.</p>\n", "comment...
null
null
2010-10-21T16:40:26.717
null
null
5865
1
null
2010-10-11T03:33:28.730
0
651
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/5790/gnome-do-in-doesnt-have-the-docky-appearance-anymore">Gnome-Do in doesn&#39;t have the docky appearance anymore.</a> </p> </blockquote> <p>Since development of Gnome-Do has halted while the world continues to spin, I was wondering if there are any compatibility issues with the Docky theme of Gnome-Do (as opposed to Docky "proper") in Maverick? </p> <p>I much prefer Do to Docky, and would rather continue using it. </p>
null
-1
2017-04-13T12:24:32.903
2010-10-11T03:57:34.613
Does Gnome-Do (with the Docky theme) work well with 10.10 Maverick?
[ "10.10", "compatibility", "gnome-do" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><a href=\"https://askubuntu.com/questions/5790/gnome-do-in-doesnt-have-the-docky-appearance-anymore\">Gnome-Do in Maverick doesn't have the docky appearance anymore.</a> </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense"...
null
null
2010-10-11T04:08:21.127
null
StandupPhilosopher
5866
1
5869
2010-10-11T03:36:02.370
15
5976
<p>I can output a single key-value, as per the following example: </p> <pre><code>gconftool-2 --get /apps/panel/applets/clock_screen0/object_type bonobo-applet </code></pre> <p>How can I dump the entire gconf database? ... Key-names <strong>and</strong> Values</p>
2670
235
2010-12-13T21:36:52.827
2021-08-14T23:33:09.063
What Terminal command will dump all Gconf keys and values? ie the ones seen in gconf-editor
[ "command-line", "gconf" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>To list all keys and values:</p>\n\n<pre><code>gconftool-2 --recursive-list /\n</code></pre>\n\n<p>To list all keys and values in xml format:</p>\n\n<pre><code>gconftool-2 --dump /\n</code></pre>\n\n<p>See <a href=\"http://manpages.ubuntu.com/manpages/maverick/en/man1/gconftool-2.1.html\"><code>man gconftool-2</code></a> for more info.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T04:08:45.587", "id": "5845", "postId": "5869", "score": "1", "text": "Thanks Andrew... I took a coffee-break too soon... The blurr of unfamiliar man navigation was starting to make things look like all ones and zeroes... but I manage to rally with the caffeine, and tried again and finally found the first one (at least)... and it's good you have pointed `--dump`; I might have stopped hunting, as I'm due for anothe cuppa. :)", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T03:46:40.470", "id": "5869", "lastActivityDate": "2010-10-11T03:46:40.470", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5866", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>To list all keys and values:</p>\n\n<pre><code>gconftool-2 --recursive-list /\n</code></pre>\n\n<p>To list all keys and values in xml format:</p>\n\n<pre><code>gconftool-2 --dump /\n</code></pre>\n\n<p>See <a href=\"http://manpages.ubuntu.com/manpages/maverick/en/man1/gconf...
null
null
null
null
null
5868
1
5874
2010-10-11T03:40:07.133
19
3930
<p>There are many logs in <code>/var/log/</code> For a standard home installation, which ones should I be checking regularly?</p>
2565
41
2010-10-11T05:55:01.400
2015-06-05T02:46:05.997
Which logs should I pay attention to?
[ "administration" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Each log serves it's own purpose. It really depends on what you're trying to check for. Some common ones are outlined below:</p>\n\n<ul>\n<li><code>/var/log/auth.log</code> - Information pertaining to authentication - including sudo/su activity</li>\n<li><code>/var/log/boot.log</code> - All information during the booting process</li>\n<li><code>/var/log/crond.log</code> - Information from cron daemon</li>\n<li><code>/var/log/messages</code> - Typical dumping point for messages not regarding the system</li>\n<li><code>/var/log/pm-suspend.log</code> - Logged during the Power management suspend function</li>\n<li><code>/var/log/user.log</code> - Information from all userlevels</li>\n<li><code>/var/log/syslog</code> - This organizes output from different softwares and is a \"general log\"</li>\n<li><code>/var/log/kern.log</code> - Information being logged from the kernel</li>\n</ul>\n\n<p>There are additional logs - like the apache2 folder, mysql.log/mysql.err, and others. These are all software specific - if you don't have apache2 installed, you won't have the log files for it. The only time you would want to check logs is when an issue arises - most of the time though it'll be okay to let them sit in the dark.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-11T09:14:11.863", "id": "5900", "postId": "5874", "score": "0", "text": "I have three logfiles (kern,messages and syslog) totally spammed by crazy \"NVRM: os_raise_smp_barrier(), invalid context!\" message. So I dont check it anymore....", "userDisplayName": null, "userId": "2026" }, { "creationDate": "2012-02-22T01:21:14.583", "id": "123831", "postId": "5874", "score": "0", "text": "`egrep -v 'os_raise_smp_barrier' /var/log/{kern.log,messages,syslog} | less` \n\nAnd, track down that message - it's symptomatic of some problem that you should fix.", "userDisplayName": null, "userId": "25618" }, { "creationDate": "2015-06-05T02:53:44.690", "id": "900852", "postId": "5874", "score": "0", "text": "You could ask `rsyslogd` which files it logs to: `cat /etc/rsyslog.d/* | egrep -v '^#|^$' | egrep -o '/[^ ]+'` on your system.", "userDisplayName": null, "userId": "25618" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T04:06:39.660", "id": "5874", "lastActivityDate": "2010-10-11T04:06:39.660", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "5868", "postTypeId": "2", "score": "19" }
[ { "accepted": null, "body": "<p>I would argue that for a standard home installation, there is no need for you to be checking any logs regularly. Though they may be helpful in diagnosing a problem or filing a bug report.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010...
null
null
null
null
null
5870
1
5878
2010-10-11T03:47:00.920
3
6070
<p>I was using Ubuntu 9.10 version and today I want to upgrade to 10.10. </p> <p>I updated my ubuntu 9.10 with this commands: </p> <pre><code>sudo aptitude install ubuntu-desktop sudo aptitude update &amp;&amp; sudo aptitude safe-upgrade update-manager -d </code></pre> <p>But when I opened update manager I couldn't see button for upgrading to 10.10 (or 10.04) will be available.</p> <p>How can I upgrade now?</p>
3145
41
2010-10-11T03:50:28.340
2010-10-23T13:30:11.293
Can I update directly from Ubuntu 9.10 to 10.10?
[ "10.10", "upgrade", "9.10" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Go to System->Administration-><strong>Software Sources</strong>, go to the tab <strong>Updates</strong>, set the <strong>Release upgrade</strong> to <strong>Normal releases</strong> then restart the Update Manager, that should solve the problem.</p>\n\n<p>You can't upgrade to 10.10 directly, you'll have to upgrade to 10.04 and then upgrade to 10.10.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T04:38:52.427", "id": "5878", "lastActivityDate": "2010-10-11T04:38:52.427", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2834", "parentId": "5870", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Go to System->Administration-><strong>Software Sources</strong>, go to the tab <strong>Updates</strong>, set the <strong>Release upgrade</strong> to <strong>Normal releases</strong> then restart the Update Manager, that should solve the problem.</p>\n\n<p>You can't upgrade to...
null
null
null
null
null
5873
1
null
2010-10-11T04:05:56.393
4
1587
<p>My system used to display the Full HD resolution - the native, very well on the Karmic.</p> <p>I upgraded my system to Maverick and the maximum 16:9 resolution X server supports is 1280x720.</p> <p>As far as I can remember, I didn't have to do any changes for the display back when I originally installed 10.04.</p> <p>From the <code>lspci</code>, the graphics card I have is the one follows:</p> <p>02:00.0 VGA compatible controller: ATI Technologies Inc Manhattan [Mobility Radeon HD 5000 Series]</p> <p>How can I get back the high native resolution?</p>
639
639
2010-10-11T04:33:16.443
2010-11-13T20:01:27.890
Upgrade to Maverick broke the display resolution - Dell Studio
[ "10.10", "upgrade", "display", "graphics" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T04:25:07.270", "id": "5850", "postId": "5873", "score": "0", "text": "Have you checked System > Administration > Additional Drivers?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-10-11T04:33:52.387", "id": "5854", "post...
null
[ { "accepted": null, "body": "<p>Ok, not sure if I should delete the question. But I am sure some people may face same issue, so I will just answer it anyway.</p>\n\n<p>Disable the additional driver, enable it and then restart, boom, everything back to normal!</p>\n", "commentCount": "2", "comments":...
null
null
null
null
null
5876
1
null
2010-10-11T04:36:12.950
1
414
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/131/which-computers-are-guaranteed-to-work-with-ubuntu">Which computers are guaranteed to work with Ubuntu?</a> </p> </blockquote> <p>I'm thinking about buying a Dell Inspiron 13z - I basically want a small, light laptop for programming while I travel to and from work.</p> <p>I'm just looking for reassurance that all of the hardware is supported.</p> <p>Spec from <a href="http://www1.ap.dell.com/au/en/home/notebooks/inspiron-13z-intel/pd.aspx?refid=inspiron-13z-intel&amp;s=dhs&amp;cs=audhs1&amp;~ck=mn" rel="nofollow noreferrer">http://www1.ap.dell.com/au/en/home/notebooks/inspiron-13z-intel/pd.aspx?refid=inspiron-13z-intel&amp;s=dhs&amp;cs=audhs1&amp;~ck=mn</a> </p> <p>Intel Core i5-470UM (1.33GHz, turbo boost up to 1.86Ghz, 3M cache) Standard 4GB (2 X 2 GB) 2 DIMM DDR3 1333Mhz</p> <p>Chipset: Intel® HM57 Graphics: ATI Mobility RadeonTM HD5430 - 1GB Wireless: Dell Wireless 1501 802.11b/g/n Half Mini Card (standard)</p> <p>Thanks.</p>
171
-1
2017-04-13T12:25:03.423
2010-10-11T04:36:12.950
Is a Dell Inspiron 13z compatible with Ubuntu 10.10?
[ "ati", "inspiron" ]
0
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T05:53:09.020", "id": "5875", "postId": "5876", "score": "1", "text": "The 13z is not mentioned in any of the links in that question. So my question remains unanswered.", "userDisplayName": null, "userId": "171" } ]
null
[]
null
null
2010-10-11T05:18:45.367
null
null
5881
1
null
2010-10-11T04:41:50.030
6
2924
<p>I have an Acer Aspire 1551-5448 Netbook that is running Ubuntu 10.10 64bit Desktop. </p> <p>I'm loving making the move to Ubuntu but my major stopping point is waking the laptop from a suspend/hibernate mode. When waking the computer I get a black screen. I understand this is most likely a hardware issue and would like to note that I am using the ATI drivers. </p> <p>Also, I checked the <code>/var/log/pm-suspend.log</code> and everything seems normal, meaning I am not seeing any failures. </p> <p>Any ideas where I should look next?</p>
3147
235
2010-10-18T21:35:56.470
2010-10-25T17:40:08.840
Acer Aspire 1551 Will Not Wake After Suspend
[ "10.10", "ati", "suspend-resume", "acer", "aspire" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>On the blank screen try entering your password and hit enter. I had a similar issue.. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-12T03:51:12.140", "id": "6217", "postId": "5903", "score": "0", "...
null
null
null
null
null
5882
1
5925
2010-10-11T04:44:50.713
34
2669
<p>When I click on a link to an email address in Firefox or Google Chrome a "Welcome to Evolution" screen appears. Can I make Gmail open instead, or at the very least disable Evolution from running?</p>
1859
5592
2011-01-04T12:25:28.690
2023-02-25T09:54:20.330
Can I make links to email addresses open Gmail instead of Evolution?
[ "firefox", "evolution", "email", "google-chrome", "gmail" ]
10
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You might want to take a look at an application called desktop-webmail.</p>\n<p>To install desktop-webmail in Ubuntu 18.04 and earlier open the terminal and type:</p>\n<pre><code>sudo apt-get install desktop-webmail\n</code></pre>\n<p>Then go to &quot;Applications -&gt; Internet -&gt; Desktop Webmail&quot; and set your web email service.\nFinally go to &quot;System -&gt; Preferences -&gt; Preferred Applications&quot; and under &quot;Mail Reader&quot; set Desktop Webmail as your choice.</p>\n<p>Desktop webmail supports following services: Gmail, Yahoo, Hotmail and Zoho.</p>\n<p>This could be a solution for other people as well that use other webmail providers.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-05-03T08:26:46.683", "id": "43415", "postId": "5925", "score": "0", "text": "Does that work in Unity because I still have only Evolution & Thunderbird under Preferred Applications!!", "userDisplayName": null, "userId": "389" }, { "creationDate": "2011-05-04T21:14:02.423", "id": "44034", "postId": "5925", "score": "0", "text": "Yes, I believe this post is out of date. It doesn't work for me in Unity either.", "userDisplayName": null, "userId": "14747" }, { "creationDate": "2011-05-04T21:54:07.260", "id": "44047", "postId": "5925", "score": "0", "text": "I can also verify that this no longer works in 11.04", "userDisplayName": null, "userId": "3448" }, { "creationDate": "2011-08-30T05:33:26.737", "id": "67605", "postId": "5925", "score": "0", "text": "also doesn't work for me in 11.04 :(", "userDisplayName": null, "userId": "21350" }, { "creationDate": "2012-04-13T04:39:26.017", "id": "144709", "postId": "5925", "score": "0", "text": "As two other answers point out, there are options in Chrome and Firefox for doing this. So no need to install some program.", "userDisplayName": null, "userId": "43660" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-10-11T08:45:20.840", "id": "5925", "lastActivityDate": "2023-02-25T09:54:20.330", "lastEditDate": "2023-02-25T09:54:20.330", "lastEditorDisplayName": null, "lastEditorUserId": "94914", "ownerDisplayName": null, "ownerUserId": "2898", "parentId": "5882", "postTypeId": "2", "score": "22" }
[ { "accepted": null, "body": "<p>If you are using Chrome, the <a href=\"https://chrome.google.com/webstore/detail/mgdnblnolcinnndenjnollpiplgkbjcn\" rel=\"nofollow\">Better Gmail extension</a> will handle mailto links. It also tweaks a few other things about Gmail, but you can turn the rest off on the option...
null
null
null
null
null
5884
1
10098
2010-10-11T04:46:52.537
4
5561
<p>I'm use Oracle VM VirtualBox 3.2.8 (PUEL) on my Windows 7 as host.</p> <p>I use seamless mode almost exclusively, and post upgrade to Ubuntu 10.10 the seamless mode is broken. Is there a way I can fix this or do I need to wait for the next release of VirtualBox?</p> <p>(PS: I have looked at <a href="http://lifehacker.com/5633811/fix-virtualboxs-guest-additions-in-ubuntu-1010" rel="nofollow">Lifehacker's article</a> and <a href="http://www.unixmen.com/linux-tutorials/1157-install-guest-addition-in-ubuntu-1010-maverick-meerkat-fix" rel="nofollow">other</a> related <a href="http://www.sysprobs.com/maverick-meerkat-ubuntu-1010-virtualbox-328-ubuntu-1010-guest-additions-fix" rel="nofollow">blog posts</a>, and none of them work for me)</p>
1182
3037
2011-01-03T15:13:54.660
2011-01-03T15:13:54.660
How do I get Seamless mode working under Oracle VM VirtualBox?
[ "10.10", "virtualbox", "virtualization" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T07:25:34.437", "id": "5885", "postId": "5884", "score": "0", "text": "Have you installed the VirtualBox extensions?", "userDisplayName": null, "userId": "612" }, { "creationDate": "2010-10-11T13:32:24.953", "id": "5936", "postId": "5884", ...
{ "accepted": true, "body": "<p>I had to update to <a href=\"http://www.virtualbox.org/wiki/Downloads\">VirtualBox 3.2.10</a> to get the seamless mode back. Alternatively, if you don't want to update, you can just <a href=\"http://www.virtualbox.org/download/testcase/VBoxGuestAdditions-r65553.iso\">download the updated Guest Additions CD</a> and install the new guest additions and it should work fine.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-28T18:47:54.907", "id": "10098", "lastActivityDate": "2010-10-28T18:47:54.907", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1182", "parentId": "5884", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>Install the package <a href=\"http://apt.ubuntu.com/p/virtualbox-ose-guest-x11\" rel=\"nofollow\">virtualbox-ose-guest-x11</a> on the Maverick guest.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-11T13:29:51.013", "id": "5...
null
null
null
null
null
5887
1
5892
2010-10-11T04:54:51.690
5
1042
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/5571/how-can-i-install-unity-after-installing-desktop-edition">How can I install Unity after installing Desktop Edition?</a> </p> </blockquote> <p>I'm running Ubuntu Desktop 10.10, but I just saw a screenshot of Ubuntu Netbook Edition and I'd like to try it out.</p> <p><img src="https://i.stack.imgur.com/JfHJd.jpg" alt="screenshot"></p> <p>Is it possible to install just the netbook desktop interface and then switch between it and the normal GNOME desktop?</p>
1859
-1
2017-04-13T12:23:36.527
2010-12-03T18:35:15.343
Can I try out the Netbook Edition's interface from the Desktop Edition?
[ "10.10", "ubuntu-netbook" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-23T20:19:35.360", "id": "9074", "postId": "5887", "score": "1", "text": "There's a subtle difference between this and that... is very subtle though.", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-10-23T20:44:49.247", "id": "90...
{ "accepted": true, "body": "<p>Yes, when you install the Ubuntu Netbook edition <a href=\"https://askubuntu.com/questions/5571/how-can-i-install-unity-after-installing-desktop-edition\">How can I install Unity after installing Desktop Edition</a> after successful installation when you logout the GDM login screen will have an additional option for Ubuntu Netbook - you'll be able to switch from Gnome to Netbook (Just as if you were switching between Gnome and KDE, etc)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T05:01:41.267", "id": "5892", "lastActivityDate": "2010-10-11T05:36:35.937", "lastEditDate": "2017-04-13T12:24:40.397", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "41", "parentId": "5887", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>Yes, when you install the Ubuntu Netbook edition <a href=\"https://askubuntu.com/questions/5571/how-can-i-install-unity-after-installing-desktop-edition\">How can I install Unity after installing Desktop Edition</a> after successful installation when you logout the GDM login ...
null
null
2011-06-05T19:16:20.053
null
null
5889
1
6312
2010-10-11T04:57:13.510
3
693
<p>I don't have a lot of memory and sometimes, when I play video games, its get full and my computer start freezing, anything I do take more than 1 minutes before getting done that include mouse move and mouse click.</p> <p>So what I want is to be able to kill some process I use and I know I can kill (like my Internet browser) before the memory get full so I have little more space left. Do you know a way to do it ?</p> <p>In technical terms, what I want is that when the memory is almost full it trigger a script that will send a SIGTERM (order to close) to my Internet browser so my PC don't freeze and I can choose to save whatever I'm doing and reopen my browser or forget about my browser. </p> <p>Thanks for your help.</p>
2834
2834
2010-10-12T04:06:22.180
2010-10-12T12:04:12.343
Execute a script when memory peaks?
[ "scripts", "memory", "optimization" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Alright, here goes:</p>\n\n<pre><code>#!/bin/bash\nthreshold=100 # Minimum amount of memory left when you should start killing, in MB\nbrowser=\"firefox-bin\" # Change this to whatever you use, firefox is actually firefox-bin\nwhile true; do\n available=$(free -m | head -2 | tail -1 | awk '{print $4}')\n if [ \"$threshold\" -ge \"$available\" ]; then\n killall -q $browser # Will not complain if no processes were killed\n fi\n sleep 20\ndone\n</code></pre>\n\n<p>Put this into <code>/home/USERNAME/bin</code>, execute <code>chmod +x ~/bin/SCRIPTNAME</code>, and then add it to your auto-start programs through <code>System-&gt;Preferences-&gt;Startup Applications</code>.</p>\n\n<p>Then the script will run when you log in, automatically. You can run it manually with <code>~/bin/SCRIPTNAME &amp;</code></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-12T11:47:20.470", "id": "6325", "postId": "6312", "score": "0", "text": "You forgot to have an infinite loop to keep the process running and it's `if [ \"$threshold\" -ge \"$available\" ];` and not `if [ \"$available\" -ge \"$threshold\" ];`. I have corrected this and added a check up to see if the program is running `if ps ax | grep -v grep | grep $browser > /dev/null; then ...` and it's working perfectly well. Because the current version of the script doesn't work I'll wait for you to correct it before setting it up as the correct answer. Thank you very much.", "userDisplayName": null, "userId": "2834" }, { "creationDate": "2010-10-12T11:54:49.650", "id": "6328", "postId": "6312", "score": "0", "text": "Oh my god, I completely screwed that one up :D Thanks, I fixed it - also, is it alright if it uses `killall -q` instead of checking if the process is running? It does not raise any errors for me.", "userDisplayName": null, "userId": "2804" }, { "creationDate": "2010-10-12T12:04:25.930", "id": "6330", "postId": "6312", "score": "0", "text": "That should be fixed now.", "userDisplayName": null, "userId": "2804" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-12T07:02:13.450", "id": "6312", "lastActivityDate": "2010-10-12T12:04:12.343", "lastEditDate": "2010-10-12T12:04:12.343", "lastEditorDisplayName": null, "lastEditorUserId": "2804", "ownerDisplayName": null, "ownerUserId": "2804", "parentId": "5889", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Killing anything to conserve memory is a bad idea, <strong>especially automatically</strong>. Make sure that you have enough swap and RAM available - of course, running something that uses 1 gig of memory on a 512MB machine is like trying to win a F1 Grand Prix while driving ...
null
null
null
null
null
5901
1
5961
2010-10-11T07:05:52.077
0
724
<p>I don't get it. Why does the options for cities under Philippines not include Cebu City when it is the 2nd largest city next to Manila? How do we get this included in the weather applet options?</p>
null
667
2010-11-05T09:07:20.683
2010-11-05T09:07:20.683
Cebu City not an option in weather applet
[ "gnome", "applet" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The weather applet gets its information for from the <a href=\"http://www.weather.gov/\" rel=\"nofollow\">U.S. National Weather Service</a>. This service only provides data for a very limited amount of locations, in particular for non-U.S. locations like the <a href=\"http://weather.noaa.gov/weather/PH_cc.html\" rel=\"nofollow\">Philippines</a>. Even for U.S. locations coverage is not great apparently. Here is a related <a href=\"https://bugs.edge.launchpad.net/ubuntu/+source/gnome-applets/+bug/403184\" rel=\"nofollow\">Ubuntu bug report</a>.</p>\n\n<p>There does not seem to be an alternative GNOME applet. If you do not mind installing a couple of extra packages and customizing your desktop in a bit \"hackish\" way, you can use the weather applet of the <a href=\"http://www.xfce.org/\" rel=\"nofollow\">XFCE project</a> (of course, you could also directly switch to <a href=\"http://www.xubuntu.org/\" rel=\"nofollow\">xubuntu</a> :-)): Install the packages <code>xfce4-panel</code> and <code>xfce4-weather-plugin</code> and add an XFCE panel. Then add the weather applet. This applet uses weather.com data and should be able to provide information for Cebu City.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-11T13:55:48.880", "id": "5939", "postId": "5961", "score": "0", "text": "Ahhh... indeed it is very limited. That is sad. Thanks for the answer. Can you suggest a good alternative weather applet that runs on the panel? I don't need fancy widgets on the desktop. I almost never look at the desktop. I prefer it visible directly from the panel.", "userDisplayName": "JCebuano", "userId": null }, { "creationDate": "2010-10-11T15:14:17.033", "id": "5967", "postId": "5961", "score": "0", "text": "The only alternative I know of is the XFCE plugin, I added some info to my answer.", "userDisplayName": null, "userId": "275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T12:32:30.633", "id": "5961", "lastActivityDate": "2010-10-11T15:13:56.473", "lastEditDate": "2010-10-11T15:13:56.473", "lastEditorDisplayName": null, "lastEditorUserId": "275", "ownerDisplayName": null, "ownerUserId": "275", "parentId": "5901", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Are you talking about weather applet in default Ubuntu clock? You can manually enter longitude and lattitude of your city there.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T07:48:10.977", "id": "5889", "postId...
null
null
null
null
JCebuano
5907
1
5987
2010-10-11T07:33:39.070
7
6165
<p>Today I installed the Ubuntu 10.10 release on my Desktop PC. I was running Ubuntu 10.04 LTS with an Apple Magic Trackpad and everything was working fine. After today's <em>fresh</em> installation of Ubuntu 10.10, I don't see my Apple Magic Trackpad's multitouch working. Two-finger scrolling and three-finger third mouse button clicking are completely broken. </p> <p>Has anyone else experienced a similar issue? Has anyone had success with Ubuntu 10.10 and an Apple Magic TrackPad?</p> <p>Please help me to fix this issue. Your help is highly appreciated...</p>
3170
1304
2011-02-14T03:48:28.020
2011-05-26T15:19:38.353
Apple Magic Trackpad multitouch configuration
[ "10.10", "multi-touch", "trackpad", "magic-trackpad" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-14T06:59:16.163", "id": "28849", "postId": "5907", "score": "2", "text": "Note: If you have a MacBook, don't look here. This is about the Magic Trackpad only. Different drivers are needed: http://askubuntu.com/questions/9460/is-it-possible-to-get-dragging-working-on-a-...
{ "accepted": true, "body": "<p>So far I've only had success in 10.10 by using the \"synaptics\" driver.</p>\n\n<p>Put the following in your xorg.conf:</p>\n\n<pre><code>Section \"InputClass\"\n Identifier \"multitouch touchpad\"\n MatchIsTouchpad \"on\"\n MatchDevicePath \"/dev/input/event*\"\n Driver \"synaptics\"\nEndSection\n</code></pre>\n\n<p>Once that's done, you should be able to tweak the cursor speed, scrolling speed and other parameters with gpointing-device-settings. Not sure if it's legacy now, but you may need </p>\n\n<pre><code>Option \"SHMConfig\" \"True\"\n</code></pre>\n\n<p>in the above section for that as well.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-10-11T17:31:38.123", "id": "6006", "postId": "5987", "score": "0", "text": "Thanks alot. It worked. However, I was having one finger touch for left click and two finger touch for right click and 3 finger touch for middle click. Now, 3 finger click as expected... Single finger touch changed to right click and two finger touch changed to left click. How can change this ?. Thanks in advance...", "userDisplayName": null, "userId": "3170" }, { "creationDate": "2010-10-11T19:43:53.033", "id": "6044", "postId": "5987", "score": "0", "text": "I'm unable to reproduce that behavior. You may want to ask for assistance in the #ubuntu-touch channel on Freenode.", "userDisplayName": null, "userId": "2181" }, { "creationDate": "2010-10-11T22:49:19.500", "id": "6124", "postId": "5987", "score": "0", "text": "Thanks. Is your trackpad single touch mapped to left click ?. (for right hand mouse). I didn't had Option SHMConfig \"True\". Is that makes any difference ?. http://ubuntu-snippets.blogspot.com/2009/03/multi-touch-for-anyall-synaptics.html", "userDisplayName": null, "userId": "3170" }, { "creationDate": "2010-10-12T00:41:14.883", "id": "6163", "postId": "5987", "score": "0", "text": "Yes, it's left click; try adding that option.", "userDisplayName": null, "userId": "2181" }, { "creationDate": "2010-10-14T04:31:54.500", "id": "6942", "postId": "5987", "score": "0", "text": "yesterday, i added option SHMConfig \"true\" to my xorg.conf and i didnt reboot since i was working some important stuff.. till today afternoon 2 finger was left click... just now, i came back to work after a small break, i saw 2 finger is right click and one finger touch is left click. :).. not sure what happened and what module config related or whatever..now I'm happy with current settings....", "userDisplayName": null, "userId": "3170" }, { "creationDate": "2010-10-14T04:55:26.343", "id": "6943", "postId": "5987", "score": "0", "text": "Does the middle click work, with three fingers? I've updated the answer to make MatchDevicePath \"catch-all\"; it should prevent falling back to the evdev driver if the event your MT is on changes.", "userDisplayName": null, "userId": "2181" }, { "creationDate": "2012-05-30T22:08:11.577", "id": "173460", "postId": "5987", "score": "0", "text": "Is this still the most correct answer for the Magic Trackpad with version 12.04 LTS? I just got the Wireless keyboard and TrackPad today and I can say that I don't need to do some of the steps you guys did for 10.10. There is still the problem where Two Finger scroll is not active by default.", "userDisplayName": null, "userId": "13860" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T13:38:10.683", "id": "5987", "lastActivityDate": "2010-10-14T04:52:36.307", "lastEditDate": "2010-10-14T04:52:36.307", "lastEditorDisplayName": null, "lastEditorUserId": "2181", "ownerDisplayName": null, "ownerUserId": "2181", "parentId": "5907", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p><a href=\"https://wiki.ubuntu.com/Multitouch/AppleMagicTrackpad\" rel=\"nofollow\">wiki.ubuntu</a> page about 10.10 and Apple Magic Trackpad</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creatio...
null
null
null
null
null
5909
1
null
2010-10-11T07:45:14.273
3
1287
<p>I'm having problems setting my correct monitor resolution as the correct one isn't available from Preferences -> Monitor. </p> <p>I'm running a Geforce 440 MX, and there doesn't appear to be any correct driver for it. Jockey cannot find anything and the 96 driver doesn't work.</p> <p>My correct resolution should be 1440*900.</p> <p>Thank-you.</p>
3176
null
null
2010-10-12T06:27:44.983
Can't set Screen Resolution
[ "10.10", "xorg", "resolution" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T13:12:34.063", "id": "5931", "postId": "5909", "score": "0", "text": "[nvidia-96](http://apt.ubuntu.com/p/nvidia-96) should be what you need. What is the output of `dmesg | grep -i nvidia` and `grep -i nvidia /var/log/Xorg.0.log`?", "userDisplayName": null, ...
null
[ { "accepted": null, "body": "<p>It's likely that your screen simply isn't reporting that it handles that resolution. You can add more modes to the list. <a href=\"https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions\" rel=\"nofollow\">https://wiki.ubuntu.com/X/Config/Resolution#Ad...
null
0
null
null
null
5911
1
null
2010-10-11T07:51:09.487
97
140469
<p>What video editing software would you recommend on Ubuntu (or Linux in general) and why? It can be for either beginners or experienced users.</p> <p>Please only place one piece of software per response and include details to what makes it great!</p>
3175
235
2012-09-01T20:03:43.963
2018-04-03T03:17:46.500
Video editing software options?
[ "software-recommendation", "video", "multimedia" ]
9
2
CC BY-SA 2.5
[ { "creationDate": "2012-03-24T00:29:03.113", "id": "136682", "postId": "5911", "score": "0", "text": "http://askubuntu.com/questions/60467/alternatives-to-dvd-slideshow", "userDisplayName": null, "userId": "46312" }, { "creationDate": "2015-01-13T22:48:47.267", "id": "790966"...
null
[ { "accepted": null, "body": "<h2>PiTiVi:</h2>\n<p><a href=\"https://apps.ubuntu.com/cat/applications/pitivi\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-banner\" alt=\"Install via the software center\" /></a></p>\n<p>PiTiVi is an easy-to-use video editor targeted at beginners and intermediate...
2010-10-11T09:40:51.083
null
2018-04-03T11:02:48.533
null
null
5917
1
5918
2010-10-11T08:16:02.817
5
26556
<p>How do i add the pgp key from a terminal?</p> <p>i have added the deb <a href="http://badgerports.org" rel="noreferrer">http://badgerports.org</a> lucid main to sources.list and when i do a <strong>sudo apt-get update</strong> i get </p> <pre><code>W: GPG error: http://badgerports.org lucid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C90F9CB90E1FAD0C </code></pre> <p>this is the key i need to add <a href="http://badgerports.org/directhex.ppa.asc" rel="noreferrer">http://badgerports.org/directhex.ppa.asc</a></p>
1085
null
null
2020-05-23T15:29:57.727
add repository to ubuntu from terminal with pgp key
[ "server", "mono", "repository" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This command will get the public key for the repo : </p>\n\n<pre><code>gpg --keyserver pgpkeys.mit.edu --recv-key C90F9CB90E1FAD0C &amp;&amp; gpg --export --armor C90F9CB90E1FAD0C | sudo apt-key add -\n</code></pre>\n\n<p>It works for any repository, you just have to replace the public key number in the command with the one from the error message.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T08:24:08.597", "id": "5918", "lastActivityDate": "2010-10-11T08:24:08.597", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3180", "parentId": "5917", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>This command will get the public key for the repo : </p>\n\n<pre><code>gpg --keyserver pgpkeys.mit.edu --recv-key C90F9CB90E1FAD0C &amp;&amp; gpg --export --armor C90F9CB90E1FAD0C | sudo apt-key add -\n</code></pre>\n\n<p>It works for any repository, you just have to replace ...
null
null
null
null
null
5929
1
5933
2010-10-11T09:12:54.160
23
35429
<p>I'm (re)installing Ubuntu on my Toshiba NB100 netbook (Intel Atom, 120GB HD, 2GB RAM). Already have a partition I call "Stuff" with all my media and docs. Will be deleting the one I had Win7 on (making it the swap), and then there is a recovery one.</p> <p>How big a swap partition should I create?</p>
2875
235
2010-10-11T15:35:05.510
2018-05-15T18:41:03.787
How big should I make my swap partition?
[ "installation", "partitioning", "swap" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>See <a href=\"https://help.ubuntu.com/community/SwapFaq\" rel=\"noreferrer\">https://help.ubuntu.com/community/SwapFaq</a></p>\n\n<p>Here is an excerpt:</p>\n\n<hr>\n\n<h2>How much swap do I need?</h2>\n\n<p>For less than 1GB of physical memory (RAM), it's highly recommended that the swap space should, as a base minimum, be equal to amount of RAM. Also, it's recommended that the swap space is maximum twice the amount of RAM depending upon the amount of hard disk space available for the system because of diminishing returns. </p>\n\n<p>For more modern systems (>1GB), if you use hibernation, your swap space should minimum be equal to your physical memory (RAM) size, otherwise you need a minimum of round(sqrt(RAM)) and a maximum of twice the amount of RAM. The only downside to having more swap space than you will actually use is the disk space you will be reserving for it.</p>\n\n<p>The \"diminishing returns\" means that if you need more swap space then twice your RAM size, you'd better add more RAM as Hard Disk Drive (HDD) access is about 10³ slower then RAM access, so something that would take 1 second, suddenly takes more than 15 minutes! And still more than a minute on a fast Solid State Drive (SSD).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T09:29:35.947", "id": "5933", "lastActivityDate": "2016-03-18T16:11:29.057", "lastEditDate": "2016-03-18T16:11:29.057", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "5929", "postTypeId": "2", "score": "18" }
[ { "accepted": null, "body": "<p>Usually it should be equal to your RAM which makes it 2GB which should be enough for day to day applications.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T09:23:36.91...
null
null
null
null
null
5930
1
5935
2010-10-11T09:21:51.627
67
31281
<p>Why there is a <code>git</code> package and a <code>git-core</code> package? Is there any difference?</p>
2140
106495
2013-02-28T09:22:06.390
2014-04-01T07:35:06.647
What are the differences between the git and git-core packages?
[ "git", "version-control" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The <code>git-core</code> package is a \"dummy\" package, which has the <code>git</code> package as dependency. This is because the <code>git-core</code> package has been renamed to <code>git</code>.</p>\n\n<p>The dummy <code>git-core</code> package should be safely removable.</p>\n\n<p>In previous releases, it seems git was a virtual package for gnuit (GNU Interactive Tools). </p>\n\n<p><a href=\"https://web.archive.org/web/20100401211132/http://packages.ubuntu.com/karmic/git\">Source</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2014-03-31T14:45:23.310", "id": "577145", "postId": "5935", "score": "1", "text": "Source is taking to **Ubuntu Error** page.", "userDisplayName": null, "userId": "78079" }, { "creationDate": "2014-04-01T07:35:37.253", "id": "577706", "postId": "5935", "score": "0", "text": "@GauravAgarwal: Thanks for the notification. Source has been replaced with archive.org link.", "userDisplayName": null, "userId": "2987" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T09:30:54.493", "id": "5935", "lastActivityDate": "2014-04-01T07:35:06.647", "lastEditDate": "2014-04-01T07:35:06.647", "lastEditorDisplayName": null, "lastEditorUserId": "2987", "ownerDisplayName": null, "ownerUserId": "2987", "parentId": "5930", "postTypeId": "2", "score": "68" }
[ { "accepted": true, "body": "<p>The <code>git-core</code> package is a \"dummy\" package, which has the <code>git</code> package as dependency. This is because the <code>git-core</code> package has been renamed to <code>git</code>.</p>\n\n<p>The dummy <code>git-core</code> package should be safely removable...
null
null
null
null
null
5932
1
5967
2010-10-11T09:26:59.290
0
896
<p>im having some issues when trying to upgrade Mono</p> <p>i have added to the sources.list deb <a href="http://badgerports.org" rel="nofollow">http://badgerports.org</a> lucid main</p> <p>tryed upgrade, seemd to runed fine, but i get</p> <pre><code>mono -V Mono JIT compiler version 2.4 (tarball Fri Oct 2 12:47:18 CEST 2009) Copyright (C) 2002-2008 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC: Included Boehm (with typed GC) SIGSEGV: altstack Notifications: epoll Architecture: x86 Disabled: none </code></pre> <p>and when doing again, i says already newest version.</p> <pre><code># apt-get install mono-runtime mono-2.0-devel Reading package lists... Done Building dependency tree Reading state information... Done mono-runtime is already the newest version. mono-2.0-devel is already the newest version. The following packages were automatically installed and are no longer required: python-rpm rpm python-urlgrabber Use 'apt-get autoremove' to remove them. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. </code></pre> <p>Any one got a sugestion on how to get this fixed? </p> <p>I have tryed </p> <pre><code>apt-get purge mono-runtime mono-2.0-devel </code></pre> <p>and done a reinstall but still same version</p>
1085
null
null
2010-10-11T12:50:22.303
Upgrading Mono on lucid? getting "version 2.4 (tarball Fri Oct 2 12:47:18 CEST 2009)"
[ "10.04", "server", "upgrade", "mono" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you're wondering why it's not upgrading to 2.8 the answer to <a href=\"https://askubuntu.com/questions/5304/upgrading-to-mono-2-8\">this question</a> has your answer.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T12:50:22.303", "id": "5967", "lastActivityDate": "2010-10-11T12:50:22.303", "lastEditDate": "2017-04-13T12:23:07.557", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "5932", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>If you're wondering why it's not upgrading to 2.8 the answer to <a href=\"https://askubuntu.com/questions/5304/upgrading-to-mono-2-8\">this question</a> has your answer.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense":...
null
null
null
null
null
5938
1
5945
2010-10-11T10:23:26.180
7
4695
<p>I had promissed my 120 students that I will install ubuntu 10.10 on their laptops but failed to do it.The laptops were dell vostro 4014. All have same hardware. I took one laptop and installed ubuntu and all the necessary packages, and also wine to run some windows software. I selected the default ext4 file system. </p> <p>Then I tried to use clonezilla server to clone the installation. Clonezilla server shows boot menu splash screen, but later on it says that I might be having a latest NIC unsupported by the kernel. But the NIC of the laptop on which I had installed ubuntu works fine. Later I tried to use the clonezilla live cd to boot the laptop which has ubuntu. But when I press 'Y' to start cloning, it says 'something went wrong'. Again I tried the 'dd' command to save as disk image. But it copies empty space. So it is not feasible for me as it takes really long time. </p> <p>I have made my students to wait for many days, daily they are coming and asking whether my setup is ready. Today I realized I can't do it. I have in a way convinced them not to go for windows. So they are waiting for me to have ubuntu installed on their laptops. Today evening some of them will come to collect the laptops I took from them to install ubuntu. Don't know how and what to tell them.</p>
2968
2968
2010-10-12T01:03:30.047
2010-10-12T02:23:21.930
How can I do mass installs on multiple computers?
[ "10.10", "installation" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T11:52:57.053", "id": "5917", "postId": "5938", "score": "1", "text": "The problem seems to be that the version of clonezilla you're trying to use does not support your NIC. See below for a solution that only needs ubuntu.", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>Preparation:</p>\n\n<ul>\n<li>change /etc/fstab on your gold-client (the one you prepared), by replacing UUIDs with device names (/dev/sda1 and /dev/sda5 on each device).</li>\n</ul>\n\n<p>On each machine:</p>\n\n<ul>\n<li>Install Ubuntu directly on each machine.</li>\n<li>Replicate your configuration with: <code>rsync -avx --exclude=/etc/udev/rules.d/70-persistent-net.rules --exclude=/etc/udev/rules.d/70-persistent-cd.rules --exclude=/etc/hostname --exclude=/etc/hosts --exclude=/etc/X11/xorg.conf --delete-after root@${host}:/ /</code> (replace ${host} with the ip address of your machine in the network.</li>\n<li><code>grub-install /dev/sda</code></li>\n<li><code>update-grub</code></li>\n<li><code>reboot</code></li>\n</ul>\n\n<p>As what to tell the students, \"Sorry, I thought I could install all machines, but I needed more time, want to help?\". Explain the steps and help them learn.</p>\n", "commentCount": "12", "comments": [ { "creationDate": "2010-10-11T11:15:52.113", "id": "5908", "postId": "5945", "score": "1", "text": "I can't validate whether your solution will work. However, +1 for the spirit of the answer. I really hope this works for user2968", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-10-11T11:58:57.347", "id": "5918", "postId": "5945", "score": "2", "text": "Thanks koushik, I've taken that from an installation done at a couple of schools. Hopefully it'll also work for user2968.", "userDisplayName": null, "userId": "2742" }, { "creationDate": "2010-10-11T16:28:55.250", "id": "5986", "postId": "5945", "score": "1", "text": "Thanks. I've changes my username from user2968 to nixnotwin. @jneves, the solution you gave, will it copy the custom installed packages, wine and windows apps installed within wine, and also the various conf files within the /home/user directory (the hidden directories created by apps). Should I give same username on each newly installed laptops so that they will have a home directory with the same name as on my first ubuntu installed laptop.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2010-10-11T16:48:34.360", "id": "5997", "postId": "5945", "score": "1", "text": "I should run the rsync command you gave on laptops having new ubuntu installations (and not on the master installation), right? And I should be in / while running that command, right?", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2010-10-11T17:00:59.473", "id": "6002", "postId": "5945", "score": "1", "text": "Yes, on each machine that has a fresh install, run the rsync command, and in \"host\" put the IP of the already-done system. It'll copy over everything you've manually installed and configured on the already-done one.", "userDisplayName": null, "userId": "1158" }, { "creationDate": "2010-10-11T17:14:39.053", "id": "6005", "postId": "5945", "score": "1", "text": "Okay. Also I will use same username and password to avoid confusion. And if I use 'z' flag to enable rsync compression, will it be faster?", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2010-10-12T04:34:04.787", "id": "6228", "postId": "5945", "score": "1", "text": "Help please. Some third party packages like cheese, opera, chrome, wine don't show up in desktop application panel . Please provide a fix for it.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2010-10-12T14:33:04.990", "id": "6369", "postId": "5945", "score": "0", "text": "The installation went well. I managed to do it on 18 laptops. But there were little issues. As I have mentioned in my earlier comment, many custom installed softwares disappear from the gnome panel. To solve the issue I booted into recovery mode and selected 'repair broken packages', then all custom installed re-appeared on the gnome panel. Wine also reappeared but all the windows apps within wine did not reappear.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2010-10-15T07:52:46.777", "id": "7274", "postId": "5945", "score": "1", "text": "Did you had any issues in the replication? I forgot to say that you should not have any user logged in the the master client while replicating, and you should unmount any .gvfs partition - usually: `umount /home/<user>/.gvfs`. Running the `rsync` command again will replicate. What you say makes me believe that the `rsync` found some error, which prevented it from doing deletes, which cleanup the issues you describe.", "userDisplayName": null, "userId": "2742" }, { "creationDate": "2010-10-18T04:31:23.533", "id": "7910", "postId": "5945", "score": "0", "text": "@jneves: Is there any restrictions like its only feasible for PATA to PATA and SATA to SATA disks", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-26T11:15:29.283", "id": "9601", "postId": "5945", "score": "0", "text": "no, since in the latest versions, both are recognized as /dev/sda, there's no problem with PATA/SATA disks", "userDisplayName": null, "userId": "2742" }, { "creationDate": "2010-11-14T12:39:56.557", "id": "13717", "postId": "5945", "score": "1", "text": "@jneves: I had a user logged in on the master machine and rsync did show an error.", "userDisplayName": null, "userId": "2968" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T11:10:32.937", "id": "5945", "lastActivityDate": "2010-10-11T12:00:18.983", "lastEditDate": "2010-10-11T12:00:18.983", "lastEditorDisplayName": null, "lastEditorUserId": "2742", "ownerDisplayName": null, "ownerUserId": "2742", "parentId": "5938", "postTypeId": "2", "score": "19" }
[ { "accepted": true, "body": "<p>Preparation:</p>\n\n<ul>\n<li>change /etc/fstab on your gold-client (the one you prepared), by replacing UUIDs with device names (/dev/sda1 and /dev/sda5 on each device).</li>\n</ul>\n\n<p>On each machine:</p>\n\n<ul>\n<li>Install Ubuntu directly on each machine.</li>\n<li>Re...
null
null
null
null
null
5942
1
null
2010-10-11T10:52:00.667
30
2510
<p>Over the past few years I've been dipping in and out of Ubuntu every so often because I believe in the idea. However, there have always been factors that have made me give up and return to either Windows or OS X, intending to come back when Ubuntu has had a bit more time to 'bake'.</p> <p>Anecdotally, if you have had similar experiences, why did you go back? </p> <p>If we can address these sorts of issues, maybe Ubuntu can get over this hump. I mean 'chasm'. </p>
232
449
2011-01-18T10:29:32.900
2012-11-27T19:33:37.213
If you tried to use Ubuntu then went back to your old OS, why did you do so?
[ "migration" ]
24
3
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T11:12:50.013", "id": "5907", "postId": "5942", "score": "5", "text": "[This question actually is okay...](http://blog.stackoverflow.com/2010/09/good-subjective-bad-subjective/)", "userDisplayName": null, "userId": "1938" }, { "creationDate": "2010-10...
null
[ { "accepted": null, "body": "<p>2006: I went back to Windows for my home PC after a stint with Ubuntu because I was mainly using Ubuntu as a media centre, but my specialised wireless mouse (with play/pause/rewind buttons on it) didn't work (without my figuring out how to compile, hack C, and install drivers...
2010-10-11T14:07:03.280
null
2013-10-22T17:36:20.027
null
null
5947
1
7405
2010-10-11T11:27:17.467
1
1918
<p>How do I install the empathy smilies (from maverick) in Pidgin? I really like the look of them.</p>
2458
null
null
2010-10-15T06:47:39.460
How do I install the empathy smilies (from maverick) in Pidgin?
[ "gnome", "empathy", "pidgin" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I manually create a smiley plugin pack for pidgin using the empathy smilies. It didn't tak long and worked out great.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-15T04:27:45.993", "id": "7405", "lastActivityDate": "2010-10-15T04:27:45.993", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2458", "parentId": "5947", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>If you mean the new Ubuntu speech-bubble emoticons, then try this:</p>\n\n<p><a href=\"http://feedproxy.google.com/~r/d0od/~3/VRw0IcDI77w/\" rel=\"nofollow\">http://feedproxy.google.com/~r/d0od/~3/VRw0IcDI77w/</a></p>\n", "commentCount": "0", "comments": [], "comm...
null
null
null
null
null
5949
1
null
2010-10-11T11:55:51.587
4
1469
<p>I'm trying to make the Update Manager work through the proxy on my ubuntu 9.10. I've tried what was suggested <a href="https://askubuntu.com/questions/3807/how-to-check-network-proxy-is-really-applied">in this question</a>, but the Update Manager still reports 409 conflict. Would really appreciate if anybody could help me with this.</p> <p>The window manager solution turned out to simple: System->Administration->Synaptic package manager, then in the Synaptic window Settings->Preferences->Network. Manually enter the http_proxy field. And it works now. Still am curious as to how to do this from command line though.</p>
3204
-1
2017-04-13T12:23:07.557
2010-10-18T21:34:46.037
Network proxy is not applied
[ "networking", "package-management", "proxy" ]
2
7
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T13:16:59.920", "id": "5933", "postId": "5949", "score": "0", "text": "2 questions to make me understand your question better. 1. what is a 409 conflict ? 2. Are you unable to download packages via proxy even after creating `/etc/apt/apt.conf.d/40proxy` as explained ...
null
[ { "accepted": null, "body": "<p>Have you tried to modify .bashrc?\nSomething like that:</p>\n\n<pre><code>$ sudo echo \"export http_proxy=http://user:pass@ProxyAddress:ProxyPort\" &gt;&gt; /etc/bash.bashrc\n$ sudo echo \"export ftp_proxy=ftp://user:pass@ProxyAddress:ProxyPort\" &gt;&gt; /etc/bash.bashrc\n</...
null
null
null
null
null
5951
1
5957
2010-10-11T12:12:31.393
7
5953
<p>Anyone knows how to install globalmenu on Ubuntu 10.10?</p>
2964
235
2010-11-03T03:06:19.243
2011-01-21T01:14:30.543
How do I install the global appmenu (mac menu)?
[ "10.10", "appmenu" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Instead use this:</p>\n\n<pre><code>sudo apt-get install appmenu-gtk indicator-appmenu indicator-applet-appmenu\n</code></pre>\n\n<p>Add it to your panel by right clicking on the panel, choosing Add to Panel and then select Indicator Applet Appmenu</p>\n\n<p>I got this from <a href=\"http://www.omgubuntu.co.uk/2010/10/customizing-ubuntu-10-10-with-a-dock-new-icon-theme-effects-global-menu-and-more/\" rel=\"nofollow\">OMGUbuntu</a></p>\n\n<p>Hope that helps!! :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T12:21:14.633", "id": "5957", "lastActivityDate": "2011-01-21T01:14:30.543", "lastEditDate": "2011-01-21T01:14:30.543", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "3205", "parentId": "5951", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p><a href=\"http://code.google.com/p/gnome2-globalmenu/wiki/InstallingonUbuntu\" rel=\"nofollow\">This page</a> hosts the maintainers' official documentation on installing globalmenu.</p>\n\n<p>However, according to <a href=\"http://code.google.com/p/gnome2-globalmenu/issues/de...
null
null
null
null
null
5953
1
null
2010-10-11T12:16:33.350
6
11333
<p>I have a mp4 file which I wish to compress, resize and stream via RTSP.</p> <p>My ffserver.conf file looks like this:</p> <p><code> <pre> Port 9091 RTSPPort 5454 BindAddress 0.0.0.0 MaxHTTPConnections 2000 MaxClients 1000 MaxBandwidth 1000 CustomLog - NoDaemon</p> <p>&lt;Feed feed1.ffm> File /tmp/feed1.ffm FileMaxSize 500M &lt;/Feed></p> <p>&lt;Stream live.mpeg> Format rtp File "/tmp/rtp.mp4" Feed feed1.ffm VideoCodec mpeg2video VideoFrameRate 15 VideoBitRate 200 VideoSize 400x320 #AudioCodec mp2 #AudioBitRate 32 #AudioChannels 2 #AudioSampleRate 22050 NoAudio #Preroll 10 ACL allow 127.0.0.1 &lt;/Stream></p> <p>&lt;Stream stat.html> Format status # Only allow local people to get the status ACL allow localhost ACL allow 192.168.0.0 192.168.255.255 &lt;/Stream> </pre></code></p> <p>From what I understand, I don't need to feed in a video stream using ffmpeg as I am using the File attribute, so ffserver does the work for me?</p> <p>When I try to use totem to playback the video (ffplay just times-out), I get the following error:</p> <p><code> <pre> $ totem rtsp://127.0.0.1:5454/live.mpeg ** Message: Error: Could not read from resource. gstrtspsrc.c(4408): gst_rtspsrc_send (): /GstPlayBin2:play/GstURIDecodeBin:uridecodebin0/GstRTSPSrc:source: Got error response: 454 (Session Not Found). </pre></code></p> <p>ffserver's log looks like this:</p> <p><code> <pre> $ ffserver -f /tmp/ffserver.conf FFserver version 0.6-4:0.6-2ubuntu6, Copyright (c) 2000-2010 the FFmpeg developers built on Oct 5 2010 22:36:53 with gcc 4.4.5 configuration: --extra-version=4:0.6-2ubuntu6 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libgsm --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-vaapi --enable-pthreads --enable-zlib --enable-libvpx --disable-stripping --enable-runtime-cpudetect --enable-gpl --enable-postproc --enable-x11grab --enable-libdc1394 --enable-shared --disable-static WARNING: library configuration mismatch libavutil configuration: --extra-version=4:0.6-2ubuntu3 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libdirac --enable-libgsm --enable-libopenjpeg --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-vaapi --enable-pthreads --enable-zlib --enable-libvpx --disable-stripping --enable-runtime-cpudetect --enable-libmp3lame --enable-gpl --enable-postproc --enable-x11grab --enable-libfaad --enable-libxvid --enable-libx264 --enable-librtmp --enable-libdc1394 --enable-shared --disable-static libavcodec configuration: --extra-version=4:0.6-2ubuntu3 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libdirac --enable-libgsm --enable-libopenjpeg --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-vaapi --enable-pthreads --enable-zlib --enable-libvpx --disable-stripping --enable-runtime-cpudetect --enable-libmp3lame --enable-gpl --enable-postproc --enable-x11grab --enable-libfaad --enable-libxvid --enable-libx264 --enable-librtmp --enable-libdc1394 --enable-shared --disable-static libavutil 50.15. 1 / 50.15. 1 libavcodec 52.72. 2 / 52.72. 2 libavformat 52.64. 2 / 52.64. 2 libavdevice 52. 2. 0 / 52. 2. 0 libavfilter 1.19. 0 / 1.19. 0 libswscale 0.11. 0 / 0.11. 0 libpostproc 51. 2. 0 / 51. 2. 0 Sun Oct 10 12:37:20 2010 FFserver started. Sun Oct 10 12:38:34 2010 127.0.0.1 - - [DESCRIBE] "rtsp://127.0.0.1:5454/live.mpeg RTSP/1.0" 200 166 Sun Oct 10 12:38:38 2010 127.0.0.1:51118 - - "PLAY live.mpeg/streamid=0 RTP/UDP" Sun Oct 10 12:38:38 2010 127.0.0.1 - - [] " RTP/UDP" 200 0 Sun Oct 10 12:38:43 2010 127.0.0.1 - - [TEARDOWN] "rtsp://127.0.0.1:5454/live.mpeg RTSP/1.0" 200 819 Sun Oct 10 12:38:43 2010 127.0.0.1:0 - - "PLAY live.mpeg/streamid=0 RTP/TCP" Sun Oct 10 12:38:43 2010 127.0.0.1 - - [] " RTP/TCP" 200 0 Sun Oct 10 12:38:54 2010 127.0.0.1 - - [PLAY] "rtsp://127.0.0.1:5454/live.mpeg RTSP/1.0" 200 621 </pre></code></p> <p>What am I doing wrong?</p>
3205
8844
2011-04-07T02:58:59.063
2011-08-11T12:33:53.467
How can I get ffserver to work?
[ "video", "multimedia", "ffmpeg" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T12:17:31.570", "id": "5920", "postId": "5953", "score": "0", "text": "URL_HERE was put in the log as my askubuntu account is new and I am not allowed to add more than a single url in my post. It can be replaced with: rtsp://127.0.0.1:5454/live.mpeg", "userDispla...
null
[ { "accepted": null, "body": "<p>You can achieve resizing, re-encoding to mpeg2 and RTSP streaming with gstreamer, but I didn't manage to change the frame rate. If this is sufficient, here's how:</p>\n\n<ul>\n<li>Install gst RTSP server development package: <code>sudo apt-get install libgstrtspserver-0.10-de...
null
null
null
null
null
5956
1
null
2010-10-11T12:20:36.553
8
29524
<p>The login screen shows and i choose myself. Then the screen goes black, and the login screen shows again.</p>
null
169736
2015-12-01T13:36:16.730
2015-12-01T13:36:16.730
GDM isn't able to login
[ "gdm" ]
6
3
CC BY-SA 3.0
[ { "creationDate": "2010-10-13T05:51:09.113", "id": "6598", "postId": "5956", "score": "0", "text": "This would be the kind of question where knowing what preceded your problem may lead to the answer. Did you install new packages? Did you mess with GDM configuration? Is this a new install, or wer...
null
[ { "accepted": null, "body": "<p>A common source for this problem is a full harddisk. Try switching to a Terminal (CTRL+ALT+F1) and log in. Now run</p>\n\n<pre><code>sudo apt-get clean &amp;&amp; sudo apt-get autoclean\n</code></pre>\n\n<p>which should give you some space. Now log out and go back to the grap...
null
0
null
null
Arvid
5958
1
5965
2010-10-11T12:25:45.903
11
3515
<p>Why is the default background image still named <code>/usr/share/backgrounds/warty-final-ubuntu.png</code>?</p> <p>It's not Warty,</p> <p><a href="http://andrew.kvalhe.im/ubuntu-wallpaper-archive/" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ZdYfJ.png" alt="Warty"> <img src="https://i.stack.imgur.com/gYz3I.png" alt="Maverick"></a></p> <p>and it's not even a PNG:</p> <pre><code>$ file /usr/share/backgrounds/warty-final-ubuntu.png /usr/share/backgrounds/warty-final-ubuntu.png: JPEG image data, JFIF standard 1.02 </code></pre>
1859
1859
2013-10-22T16:34:50.253
2013-10-22T16:34:50.253
Why is the default background image named "warty-final-ubuntu.png"?
[ "desktop-background", "naming" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Because that's how their first default wallpaper's filename was. They wanted to make sure that whoever wants to stick with the distro's default wallpaper would get updated to the most recent version. </p>\n\n<p>Since the wallpaper setting is stored in a per-user setting in gconf, it's not possible to assign new wallpapers to users on upgrade, as they (rightly so) don't want to override users' wallpaper settings. </p>\n\n<p>Hence, the only way is to leave the filename alone and change the file the settings point to.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-11T15:17:30.023", "id": "5969", "postId": "5965", "score": "0", "text": "Yup. There's an open bug report about this. I don't understand why anyone really cares. https://bugs.edge.launchpad.net/ubuntu/+source/ubuntu-wallpapers/+bug/296538", "userDisplayName": null, "userId": "570" }, { "creationDate": "2010-10-11T16:30:46.457", "id": "5987", "postId": "5965", "score": "5", "text": "I think the reason people care is that the old one gets overwritten. It would've been more sensible to start with a default-wallpaper.png symlink pointing to the current release's wallpaper so that the old wallpapers don't get lost.", "userDisplayName": null, "userId": "1158" }, { "creationDate": "2010-10-11T16:39:34.533", "id": "5991", "postId": "5965", "score": "0", "text": "Also, try double-clicking it to view it in Image Viewer. The incorrect filename extension causes problems.", "userDisplayName": null, "userId": "1859" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T12:43:06.673", "id": "5965", "lastActivityDate": "2010-10-11T12:43:06.673", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2876", "parentId": "5958", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>Because that's how their first default wallpaper's filename was. They wanted to make sure that whoever wants to stick with the distro's default wallpaper would get updated to the most recent version. </p>\n\n<p>Since the wallpaper setting is stored in a per-user setting in gc...
null
0
null
null
null
5960
1
6034
2010-10-11T12:32:20.557
2
922
<p>The product I develop for work is a customised Ubuntu 8.04 LTS system with a number of back ported packages and a number of our own for the application specific stuff.</p> <p>Now that 10.04 has been released it's time to start thinking about how we move our customers towards the latest LTS release. I'm currently considering the best approach to do this, preferably all triggered from a package upgrade.</p> <p>I currently have a "meta" package which contains a number of prerequisites for our flavour of Ubuntu. I was thinking of issuing updated version of this in our current repo with a few upgrade scripts to be run from postinst. This would trigger the distro upgrade and then switch the custom repo bits to point to the new packages directory built against 10.04.</p> <p>Is there a command line for trigger the distro upgrade? Is this the best way to proceed?</p>
3093
235
2010-10-11T12:58:10.183
2010-10-11T16:26:50.790
What's the best approach to triggering a distro upgrade for an OEM build?
[ "10.04", "package-management", "upgrade", "system" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Your postinst could run whatever custom scripts need to happen, and finally, you could trigger the distro upgrade with:</p>\n\n<pre><code>sed -i 's/hardy/lucid' /etc/apt/sources.list\napt-get update\napt-get install dpkg apt\napt-get dist-upgrade\n</code></pre>\n\n<p>Your scheme could work, with plenty of testing. There may be still small things that fail and will need to be resolved by hand, but this should at least get you started.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-13T12:36:28.613", "id": "6685", "postId": "6034", "score": "0", "text": "Is there a way to set a pre-requisite on my updated packages so the entire distro upgrade process is completed before attempting to upgrade my packages?", "userDisplayName": null, "userId": "3093" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T16:26:50.790", "id": "6034", "lastActivityDate": "2010-10-11T16:26:50.790", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1372", "parentId": "5960", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Your postinst could run whatever custom scripts need to happen, and finally, you could trigger the distro upgrade with:</p>\n\n<pre><code>sed -i 's/hardy/lucid' /etc/apt/sources.list\napt-get update\napt-get install dpkg apt\napt-get dist-upgrade\n</code></pre>\n\n<p>Your sch...
null
0
null
null
null
5970
1
5971
2010-10-11T12:58:40.860
5
271
<p>If I want, for example, <code>/usr/share/doc/nvidia-96/README.txt.gz</code> from <a href="http://packages.ubuntu.com/maverick/i386/nvidia-96/filelist">nvidia-96</a>, is there a way for me to download just this file?</p>
1859
null
null
2012-07-31T09:33:27.107
Can I download a file from a package without installing it?
[ "package-management" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes, you can download the .deb file from packages.ubuntu.com and then open it like an archive (using file-roller). There are two more archives inside, you'll need to open \"data.tar.gz\". </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T16:44:13.283", "id": "5994", "postId": "5971", "score": "0", "text": "I chose this answer because it's simplest/most easily repeatable.", "userDisplayName": null, "userId": "1859" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T13:00:38.600", "id": "5971", "lastActivityDate": "2010-10-11T13:00:38.600", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2876", "parentId": "5970", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Yes, you can download the .deb file from packages.ubuntu.com and then open it like an archive (using file-roller). There are two more archives inside, you'll need to open \"data.tar.gz\". </p>\n", "commentCount": "1", "comments": [ { "creationDate": "201...
null
null
null
null
null
5976
1
6011
2010-10-11T13:15:53.710
67
25533
<p>How can I list all packages I've installed from a particular repository?</p> <p>How can I list all installed packages that are not available from the main Ubuntu archives, and also see which repositories they came from? (If I knew the answer to this question, I could grep that list for a particular PPA name to find out the answer to my first question.)</p>
136
169736
2016-05-11T22:58:20.600
2023-06-27T19:35:23.703
How can I list all packages I've installed from a particular repository?
[ "apt", "package-management" ]
9
1
CC BY-SA 3.0
[ { "creationDate": "2010-10-15T00:07:48.937", "id": "7195", "postId": "5976", "score": "0", "text": "Since there doesn't seem to be an existing command-line tool for this (sadly), I'll accept one of the GUI answers.", "userDisplayName": null, "userId": "136" } ]
{ "accepted": true, "body": "<p>Expand the \"Installed Software\" item in Ubuntu Software Center. You'll see a list of all the different repositories that you've enabled. Clicking on the repo will show you the packages you've installed from each.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8FkQR.png\" alt=\"alt text\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-11T15:17:30.507", "id": "5970", "postId": "6011", "score": "0", "text": "I'm afraid that option is only available in Ubuntu 10.10 or am I missing something? My Software Center doesn't display sources below that menu.", "userDisplayName": null, "userId": "2950" }, { "creationDate": "2014-10-29T06:06:56.420", "id": "743609", "postId": "6011", "score": "2", "text": "In my version I have an \"Installed\" dropdown at the top. When I select that option, I can choose the various sources (core, for purchse, PPA...)", "userDisplayName": null, "userId": "31366" }, { "creationDate": "2017-04-09T08:48:28.697", "id": "1415725", "postId": "6011", "score": "3", "text": "In Ubuntu 16.04, this page is no longer available. However, synaptic has a similar feature -- click \"Origin\" in the bottom-left.", "userDisplayName": null, "userId": "478436" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T15:05:15.340", "id": "6011", "lastActivityDate": "2016-08-21T13:01:06.330", "lastEditDate": "2016-08-21T13:01:06.330", "lastEditorDisplayName": null, "lastEditorUserId": "1366", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5976", "postTypeId": "2", "score": "23" }
[ { "accepted": null, "body": "<p>Open Synaptic Package Manager and click the \"Origin\" button on the bottom of the left sidebar. It will list your sources. Select a source to see the available/installed packages.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "conte...
null
null
null
null
null
5980
1
5981
2010-10-11T13:25:24.910
246
592541
<p>My Ubuntu cloud server has left only 900MB of disk space. </p> <p>I'll just empty the directory /tmp and wondering if there is any other location to clean up.</p>
3215
47291
2014-03-06T03:19:12.063
2023-10-24T12:30:34.603
How do I free up disk space?
[ "server" ]
18
5
CC BY-SA 3.0
[ { "creationDate": "2015-11-13T22:07:47.803", "id": "1021502", "postId": "5980", "score": "1", "text": "Try this one too: dpkg -l | grep ^rc | cut -d ' ' -f3 | xargs sudo apt-get purge -y", "userDisplayName": null, "userId": "186420" }, { "creationDate": "2018-12-10T09:14:08.753",...
{ "accepted": true, "body": "<pre><code>sudo apt-get autoremove\n</code></pre>\n\n<p>That can clean out a lot of guff (old kernels, etc) that have been replaced. You can do a similar thing in Synaptic (load it up and select the status button and then the Auto-removeable option).</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-10-11T13:54:43.427", "id": "5938", "postId": "5981", "score": "0", "text": "will it not affect running applications like if it removes any necessary package on which any application depends?.", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-11T14:03:13.117", "id": "5942", "postId": "5981", "score": "1", "text": "No. Autoremove looks for orphaned packages, that is to say packages that you didn't explicitly install yourself (ones marked auto) and that have no dependencies. If you use `aptitude` instead of `apt-get`, it can clean up as you go but it's quite common for older installations to collect a raft of installed kernels as security updates come out.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-10-11T14:10:40.407", "id": "5949", "postId": "5981", "score": "0", "text": "Thank you!. I have atleast 1.1GB of free space. How about using apt-get autoremove?", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-11T14:28:58.627", "id": "5959", "postId": "5981", "score": "1", "text": "Typo in my last comment. I meant to say that orphaned packages are ones that aren't depended on, not ones that \"have no dependencies\". They may well have dependencies and if they were only there for that orphaned package, they'll be removed too. Some times (with really deep dependency trees) it can take a couple of autoremoves to clean up.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2013-08-17T08:33:18.163", "id": "424946", "postId": "5981", "score": "5", "text": "While the above command is certainly useful, it will **not**, as stated, remove old kernels. That has to be done either manually or with additional tools like Ubuntu Tweak.", "userDisplayName": null, "userId": "38837" }, { "creationDate": "2013-12-01T23:55:58.733", "id": "491677", "postId": "5981", "score": "1", "text": "@nyarlathotep It _will_ remove kernel header files, which at first glance may make one think it's removing the old kernels - the old kernels remain, however (try `dpkg --get-selections | grep linux-image`).", "userDisplayName": null, "userId": "24552" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T13:31:26.890", "id": "5981", "lastActivityDate": "2010-10-11T13:31:26.890", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "5980", "postTypeId": "2", "score": "128" }
[ { "accepted": true, "body": "<pre><code>sudo apt-get autoremove\n</code></pre>\n\n<p>That can clean out a lot of guff (old kernels, etc) that have been replaced. You can do a similar thing in Synaptic (load it up and select the status button and then the Auto-removeable option).</p>\n", "commentCount": ...
null
null
null
null
null
5985
1
6041
2010-10-11T13:36:47.887
11
9323
<p>How can I replace Docky's standard anchor icon in the dock by Ubuntu's? It would look quite nice I think. This is how it looks right now:</p> <p><img src="https://i.stack.imgur.com/OcGN8.png" alt="alt text"></p>
2192
null
null
2010-10-13T00:28:52.453
Replace Docky's Icon by Ubuntu Icon
[ "icons", "dock", "docky" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Normally, docky's icon is dynamically drawn by the program so that it is colored based on your GTK theme. So, the first thing we need to do is turn that off. Launch the \"Run Application\" dialog by pressing <code>Alt+F2</code>. Then run <code>gconf-editor</code> from that prompt.</p>\n\n<p>Now browse to <code>/apps/docky-2/Docky/Items/DockyItem/</code> Select the <code>Hue</code> key and change the setting to <code>1</code></p>\n\n<p><img src=\"https://i.stack.imgur.com/pnXm3.png\" alt=\"alt text\"></p>\n\n<p>Now that docky will use the theme icon directly, you can change the icon in the theme. The theme will be found in <code>/usr/share/icons</code> if it is installed system wide or <code>~/.icons/</code> if it is installed locally. </p>\n\n<p>For Faenza, you'll want to replace <code>/usr/share/icons/Faenza/apps/scalable/dock.svg</code> with the icon you want. You'll probably want to use <code>/usr/share/icons/Faenza/places/scalable/distributor-logo-ubuntu.svg</code> Depending on the size of your dock, may also need to replace some of the other sizes as well.</p>\n\n<p><img src=\"https://i.stack.imgur.com/hdqf7.png\" alt=\"alt text\"></p>\n\n<p>You'll need to restart docky.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-10-12T11:14:05.627", "id": "6318", "postId": "6041", "score": "0", "text": "Thanks for this excellent reply! I have already marked it as answered, as most likely your proposal will work for most users.\nHowever, I have the problem that the entry \"DockyItem\" does not exist on my computer. Therefore, my beautiful Ubuntu logo is now raped by Docky and colored blue.", "userDisplayName": null, "userId": "2192" }, { "creationDate": "2010-10-12T15:48:17.697", "id": "6388", "postId": "6041", "score": "0", "text": "This option wasn't added until a recent docky release. Try upgrading to the PPA version: https://launchpad.net/~docky-core/+archive/ppa", "userDisplayName": null, "userId": "570" }, { "creationDate": "2010-10-12T22:51:11.740", "id": "6527", "postId": "6041", "score": "0", "text": "How would I change the icon if I didn't use the Faenza icon-theme? I couldn't figure out where to place the icon I want. My theme is the regular ubuntu-mono-light.", "userDisplayName": null, "userId": "1736" }, { "creationDate": "2010-10-13T00:30:26.040", "id": "6551", "postId": "6041", "score": "0", "text": "The default icon theme doesn't ship docky icons, so it falls back to the icons shipped with docky itself. You'll have to replace these ones. They can be found under `/usr/share/icons/hicolor/`", "userDisplayName": null, "userId": "570" }, { "creationDate": "2011-08-31T15:30:33.987", "id": "67893", "postId": "6041", "score": "0", "text": "Took some work but I can confirm that this does the trick.", "userDisplayName": null, "userId": "13498" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T16:53:25.807", "id": "6041", "lastActivityDate": "2010-10-13T00:28:52.453", "lastEditDate": "2010-10-13T00:28:52.453", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "5985", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>Normally, docky's icon is dynamically drawn by the program so that it is colored based on your GTK theme. So, the first thing we need to do is turn that off. Launch the \"Run Application\" dialog by pressing <code>Alt+F2</code>. Then run <code>gconf-editor</code> from that pr...
null
null
null
null
null
5989
1
5999
2010-10-11T13:45:27.983
1
8974
<p>I'm running Ubuntu Server and I'm looking for an efficient way of performing nightly backups of particular directories using cron. However, since the computer isn't always on, I'd like it to just run when the computer is on and to keep the last 5 backups. Would I need to use a bash script of some kind to achieve this?</p>
1449
null
null
2019-09-07T03:20:08.493
How can I setup nightly backups via the command line?
[ "server", "command-line", "backup", "cron-jobs" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T14:18:41.787", "id": "5952", "postId": "5989", "score": "1", "text": "Do you have a place to already backup too? Could you expand more on your infrastructure?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-10-11T23:59:15.127", ...
{ "accepted": true, "body": "<p>You can use tar and <a href=\"http://en.wikipedia.org/wiki/Rsync\" rel=\"nofollow\">rsync</a> for a combination of full &amp; incremental backups and there is a tutorial <a href=\"http://www.marksanborn.net/howto/use-rsync-for-daily-weekly-and-full-monthly-backups/\" rel=\"nofollow\">here</a> that sets it up to do nightly / weekly backups using cron.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T14:16:25.893", "id": "5999", "lastActivityDate": "2010-10-11T14:16:25.893", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "270", "parentId": "5989", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>You can use tar and <a href=\"http://en.wikipedia.org/wiki/Rsync\" rel=\"nofollow\">rsync</a> for a combination of full &amp; incremental backups and there is a tutorial <a href=\"http://www.marksanborn.net/howto/use-rsync-for-daily-weekly-and-full-monthly-backups/\" rel=\"no...
null
null
null
null
null
5990
1
6030
2010-10-11T13:47:14.160
7
15752
<p>How do I install ubuntu packages from the ubuntu cd. I have ubuntu-desktop 10.04 running and I have to install wvdial package but no internet connection for installing from apt repository.</p>
3215
449
2011-01-18T10:29:58.953
2013-12-08T11:03:09.573
Install packages without internet
[ "package-management" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Since wvdial is on the installation CD, you can enable <em>System -> Administration -> Software Sources -> Ubuntu Software -> Installable from CD-ROM/DVD -> Cdrom with Ubuntu 10.04</em> and then install it via Synaptic.</p>\n\n<p>In the long run, though, you should have a way to install software upgrades and packages that aren't included on the CD. For this I recommend using <a href=\"http://keryxproject.org/\">Keryx</a>, which is essentially a relay for your package manager over a USB drive. Updates can be downloaded using an internet-connected computer running Windows, OS X, or Linux.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-13T01:26:50.870", "id": "6559", "postId": "6030", "score": "0", "text": "Isn't there any option to install from command line as Software Sorces could not add the cd-rom.", "userDisplayName": null, "userId": "3215" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T16:15:49.520", "id": "6030", "lastActivityDate": "2010-10-11T16:15:49.520", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "5990", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>See APTonCD</p>\n\n<p><a href=\"http://aptoncd.sourceforge.net/\" rel=\"nofollow\">http://aptoncd.sourceforge.net/</a></p>\n\n<p><a href=\"https://help.ubuntu.com/community/APTonCD\" rel=\"nofollow\">https://help.ubuntu.com/community/APTonCD</a></p>\n", "commentCount": "1...
null
null
2015-07-22T08:35:05.507
null
null
5996
1
6019
2010-10-11T14:03:08.537
17
79987
<p>I was installing 32-bit Ubuntu(ubuntu-10.10-desktop-i386.iso) on VMWare workstation 7.1. During installation an error came up with the following text.</p> <pre><code>(initramfs) mount: mounting dev/loop0 on //filesystem.squashfs failed: Input/Output error Can not mount /dev/loop0 (/cdrom/casper/filesystem.squashfs) on //filesystem.squashfs </code></pre> <p>I did a memory test which was successful, but when selecting "Try Ubuntu without installing", "Install Ubuntu" or "Check disk for defects" the same error is showing up.</p> <p>I download the ISO image from Ubuntu website "http://www.ubuntu.com/desktop/get-ubuntu/download". As I couldn't find the checksum data, the ISO image was verified by mounting to a virtual drive and browsing the contents.</p> <p>The ISO image is mounted to a virtual drive in VMWare and not burnt to a CD.</p>
3217
186134
2014-08-04T18:30:03.473
2019-06-27T12:59:10.173
Unable to mount /dev/loop0 during install
[ "system-installation" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T16:13:28.807", "id": "5981", "postId": "5996", "score": "0", "text": "It looks like a corrupt image. Anyway, what is your guest OS?.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2011-02-06T21:50:01.197", "id": "27408", "po...
{ "accepted": true, "body": "<p>The checksums (MD5) can be found on <a href=\"http://releases.ubuntu.com/maverick/MD5SUMS\">releases.ubuntu.com</a>. I would suggest you do the following:</p>\n\n<ol>\n<li>Check that the MD5 checksum of the ISO image you downloaded matches the one in the aforementioned link, by following <a href=\"https://help.ubuntu.com/community/HowToMD5SUM\">these directions</a>.</li>\n<li>If that looks okay, boot the CD and press the <kbd>Spacebar</kbd> key when you see the keyboard icon in the bottom-center of the screen. Select your language, then the \"Check CD for defects\" boot option.</li>\n</ol>\n\n<p>If neither of those produce any errors, please file a bug <a href=\"http://launchpad.net/ubuntu/+source/casper/+filebug\">here</a>, following <a href=\"https://wiki.ubuntu.com/DebuggingCasper\">these instructions</a> to attach <code>/casper.log</code> to it.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-27T19:55:05.177", "id": "9901", "postId": "6019", "score": "0", "text": "on the cd I created today there is no \"Check CD for defects\", there is \"Check *disc* for defects\" though -- leaving me with the question does that refer to cd or hard drive? In any case when I pick it I get the same failure message as in the question.", "userDisplayName": null, "userId": "254" }, { "creationDate": "2010-10-27T20:05:57.627", "id": "9906", "postId": "6019", "score": "0", "text": "...and after checking md5sum discovered the iso was bad. Thanks for the good answer.", "userDisplayName": null, "userId": "254" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T15:47:32.510", "id": "6019", "lastActivityDate": "2010-10-11T15:47:32.510", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "46", "parentId": "5996", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>The checksums (MD5) can be found on <a href=\"http://releases.ubuntu.com/maverick/MD5SUMS\">releases.ubuntu.com</a>. I would suggest you do the following:</p>\n\n<ol>\n<li>Check that the MD5 checksum of the ISO image you downloaded matches the one in the aforementioned link,...
null
null
null
null
null
5998
1
null
2010-10-11T14:15:39.927
13
5467
<p>yesterday everything was fine and today when i logged on to my ubuntu 10.10 I noticed that the icons in the top of each menu dissapeared(I mean the the bar where the close mini maize etc..) this problem is not new for me in ubuntu 10.10 but it also happened in ubuntu 10.04 so please if somebody knows how to fix this post the answer </p>
2788
8844
2011-01-20T02:11:23.330
2020-11-08T06:25:49.393
Window decorations disappeared?
[ "gnome", "window-manager", "metacity" ]
7
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T14:19:35.777", "id": "5953", "postId": "5998", "score": "1", "text": "Could you include screenshots to exactly which icons you are referring too? As it stands this question is a little to vague to properly answer.", "userDisplayName": null, "userId": "41" ...
null
[ { "accepted": null, "body": "<p>Fixed it for now I hope it wont happened again.</p>\n\n<p>I ended up running: <code>metacity --replace</code> in the terminal to replace the window decorations.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-23T21:05:43.097", ...
null
null
null
null
null
6001
1
8859
2010-10-11T14:19:15.003
6
14410
<p>I'm running ubuntu 10.04. I have a newly purchased TATA Photon+ Internet connection which supports Windows and Mac. On the Internet I found a article saying that it could be configured on Linux. I followed the steps to install it on Ubuntu from this <a href="http://digitizor.com/2010/06/28/how-to-use-tata-photon-plus-in-ubuntu-10-04-lucid-lynx/" rel="nofollow">link</a>. I am still not able to get online, and need some help.</p> <p>Also, it is very slow, but I was told that I would see speeds up to 3.1MB.</p> <p>I dont have wvdial installed and cannot install it from apt as I'm not connected to internet</p> <p>Booting from windows I dowloaded "wvdial" .deb package and tried to install on ubuntu but it's ended with dependency problem. Automatically, don't know how, I got connected to internet only for once. Immediately I installed wvdial package after this I followed the tutorials(I could not browse and upload the files here) . From then it's showing that the device is connected in the network connections but no internet connection. Once I disable the device, it won't show as connected again and I'll have to restart my system. Sometimes the device itself not detected(wondering if there is any command to re-read the all devices).</p> <p>output of <strong>wvdialconf /etc/wvdial.cof</strong>:</p> <pre><code>#wvdialconf /etc/wvdial.conf Editing `/etc/wvdial.conf'. Scanning your serial ports for a modem. ttyS0&lt;*1&gt;: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud ttyS0&lt;*1&gt;: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud ttyS0&lt;*1&gt;: ATQ0 V1 E1 -- and failed too at 115200, giving up. Modem Port Scan&lt;*1&gt;: S1 S2 S3 WvModem&lt;*1&gt;: Cannot get information for serial port. ttyUSB0&lt;*1&gt;: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud ttyUSB0&lt;*1&gt;: ATQ0 V1 E1 -- failed with 9600 baud, next try: 9600 baud ttyUSB0&lt;*1&gt;: ATQ0 V1 E1 -- and failed too at 115200, giving up. WvModem&lt;*1&gt;: Cannot get information for serial port. ttyUSB1&lt;*1&gt;: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud ttyUSB1&lt;*1&gt;: ATQ0 V1 E1 -- failed with 9600 baud, next try: 9600 baud ttyUSB1&lt;*1&gt;: ATQ0 V1 E1 -- and failed too at 115200, giving up. WvModem&lt;*1&gt;: Cannot get information for serial port. ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 -- OK ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 Z -- OK ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 S0=0 -- OK ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 S0=0 &amp;C1 -- OK ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 -- OK ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0 -- OK ttyUSB2&lt;*1&gt;: Modem Identifier: ATI -- Manufacturer: +GMI: HUAWEI TECHNOLOGIES CO., LTD ttyUSB2&lt;*1&gt;: Speed 9600: AT -- OK ttyUSB2&lt;*1&gt;: Max speed is 9600; that should be safe. ttyUSB2&lt;*1&gt;: ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0 -- OK Found a modem on /dev/ttyUSB2. Modem configuration written to /etc/wvdial.conf. ttyUSB2&lt;Info&gt;: Speed 9600; init "ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0" </code></pre> <p>output of <strong>wvdial</strong>:</p> <pre><code>#wvdial --&gt; WvDial: Internet dialer version 1.60 --&gt; Cannot get information for serial port. --&gt; Initializing modem. --&gt; Sending: ATZ ATZ OK --&gt; Sending: ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0 ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0 OK --&gt; Sending: AT+CRM=1 AT+CRM=1 OK --&gt; Modem initialized. --&gt; Sending: ATDT#777 --&gt; Waiting for carrier. ATDT#777 CONNECT --&gt; Carrier detected. Starting PPP immediately. --&gt; Starting pppd at Sat Oct 16 15:30:47 2010 --&gt; Pid of pppd: 5681 --&gt; Using interface ppp0 --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; local IP address 14.96.147.104 --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; remote IP address 172.29.161.223 --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; primary DNS address 121.40.152.90 --&gt; pppd: (u;[08]@s;[08]`{;[08] --&gt; secondary DNS address 121.40.152.100 --&gt; pppd: (u;[08]@s;[08]`{;[08] </code></pre> <p>Output of log message <strong>/var/log/messages</strong>:</p> <pre><code>Oct 16 15:29:44 avyakta-desktop pppd[5119]: secondary DNS address 121.242.190.180 Oct 16 15:29:58 desktop pppd[5119]: Terminating on signal 15 Oct 16 15:29:58 desktop pppd[5119]: Connect time 0.3 minutes. Oct 16 15:29:58 desktop pppd[5119]: Sent 0 bytes, received 177 bytes. Oct 16 15:29:58 desktop pppd[5119]: Connection terminated. Oct 16 15:30:47 desktop pppd[5681]: pppd 2.4.5 started by root, uid 0 Oct 16 15:30:47 desktop pppd[5681]: Using interface ppp0 Oct 16 15:30:47 desktop pppd[5681]: Connect: ppp0 &lt;--&gt; /dev/ttyUSB2 Oct 16 15:30:47 desktop pppd[5681]: CHAP authentication succeeded Oct 16 15:30:47 desktop pppd[5681]: CHAP authentication succeeded Oct 16 15:30:48 desktop pppd[5681]: local IP address 14.96.147.104 Oct 16 15:30:48 desktop pppd[5681]: remote IP address 172.29.161.223 Oct 16 15:30:48 desktop pppd[5681]: primary DNS address 121.40.152.90 Oct 16 15:30:48 desktop pppd[5681]: secondary DNS address 121.40.152.100 </code></pre> <hr> <p><strong>EDIT 1</strong> :</p> <p>I tried the following</p> <pre><code>sudo stop network-manager sudo killall modem-manager sudo /usr/sbin/modem-manager --debug &gt; ~/mm.log 2&gt;&amp;1 &amp; sudo /usr/sbin/NetworkManager --no-daemon &gt; ~/nm.log 2&gt;&amp;1 &amp; </code></pre> <p>Output of <strong>mm.log</strong>:</p> <pre><code>#vim ~/mm.log: ** Message: Loaded plugin Option High-Speed ** Message: Loaded plugin Option ** Message: Loaded plugin Huawei ** Message: Loaded plugin Longcheer ** Message: Loaded plugin AnyData ** Message: Loaded plugin ZTE ** Message: Loaded plugin Ericsson MBM ** Message: Loaded plugin Sierra ** Message: Loaded plugin Generic ** Message: Loaded plugin Gobi ** Message: Loaded plugin Novatel ** Message: Loaded plugin Nokia ** Message: Loaded plugin MotoC </code></pre> <p>Output of <strong>nm.log</strong>:</p> <pre><code>#vim ~/nm.log: NetworkManager: &lt;info&gt; starting... NetworkManager: &lt;info&gt; modem-manager is now available NetworkManager: SCPlugin-Ifupdown: init! NetworkManager: SCPlugin-Ifupdown: update_system_hostname NetworkManager: SCPluginIfupdown: guessed connection type (eth0) = 802-3-ethernet NetworkManager: SCPlugin-Ifupdown: update_connection_setting_from_if_block: name:eth0, type:802-3-ethernet, id:Ifupdown (eth0), uuid: 681b428f-beaf-8932-dce4-678ed5bae28e NetworkManager: SCPlugin-Ifupdown: addresses count: 1 NetworkManager: SCPlugin-Ifupdown: No dns-nameserver configured in /etc/network/interfaces NetworkManager: nm-ifupdown-connection.c.119 - invalid connection read from /etc/network/interfaces: (1) addresses NetworkManager: SCPluginIfupdown: management mode: unmanaged NetworkManager: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:14.4/0000:02:02.0/net/eth1, iface: eth1) NetworkManager: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:14.4/0000:02:02.0/net/eth1, iface: eth1): no ifupdown configuration found. NetworkManager: SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo) @ </code></pre>
3215
34576
2012-06-14T12:54:20.223
2013-06-17T15:49:36.907
How to configure TATA Photon+ EC1261 HUAWEI
[ "10.04", "configuration", "usb-modem", "usb-modeswitch" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-22T15:14:11.457", "id": "8832", "postId": "6001", "score": "2", "text": "It's been done here: http://vikashazrati.wordpress.com/2010/02/07/installing-tata-photon-on-ubuntu/", "userDisplayName": null, "userId": "2740" } ]
{ "accepted": true, "body": "<p>From <a href=\"http://www.botskool.com/geeks/how-configure-tata-photon-ec1261-ubuntu-1004-lucid-lynx\" rel=\"nofollow noreferrer\">How to configure TATA PHOTON+ EC1261 on UBUNTU 10.04 Lucid Lynx</a> by <a href=\"http://www.botskool.com/author/aamir-aarfi\" rel=\"nofollow noreferrer\">Aamir Aarfi</a>:</p>\n<blockquote>\n<p>1.- follow this guide :</p>\n<p>How to install Tata Photon+ on Ubuntu 10.04</p>\n<h3>STEP #1:</h3>\n<p>Plug-in your device and download two .deb files on your Ubuntu desktop.</p>\n<p><a href=\"http://www.botskool.com/downloads/geeks/ubuntu/usb-modeswitch-data_20100418-1_all.deb\" rel=\"nofollow noreferrer\">usb-modeswitch-data_20100418-1_all.deb</a></p>\n<p><a href=\"http://www.botskool.com/downloads/geeks/ubuntu/usb-modeswitch-data_20100418-1_all.deb\" rel=\"nofollow noreferrer\">usb-modeswitch_1.1.2-3_i386.deb</a></p>\n<p>Download the above links or from the latest Debian repo listed below.</p>\n<pre><code>http://packages.debian.org/squeeze/i386/usb-modeswitch/download\nhttp://packages.debian.org/squeeze/all/usb-modeswitch-data/download\nhttp://packages.debian.org/squeeze/usb-modeswitch-data\nhttp://packages.debian.org/squeeze/usb-modeswitch\n</code></pre>\n<h3>STEP #2:</h3>\n</blockquote>\n<p>Installing required packages</p>\n<ol>\n<li>RIGHT CLICK on the package usb-modeswitch-data, SELECT &quot;Open with GDebi Package Installer&quot;.</li>\n<li>If there is no error message then CLICK on &quot;Install Package&quot; button.</li>\n<li>RIGHT CLICK on the package usb-modeswitch, SELECT &quot;Open with GDebi Package Installer&quot;.</li>\n<li>If there is an error regarding architecture\nthen DOWNLOAD different package and repeat above step again.</li>\n<li>If there is no error message then CLICK on &quot;Install Package&quot; button.</li>\n<li>After this verify installation of these packages by following PART-I &gt; Step1 with another debian version.</li>\n</ol>\n<blockquote>\n<p>REBOOT your system [recommended]</p>\n<h3>STEP #3 [Important]</h3>\n</blockquote>\n<p>Modifying usb-modeswitch file</p>\n<ol>\n<li>OPEN Terminal again (&quot;Applications&quot; &gt; &quot;Accessories&quot; &gt; &quot;Terminal&quot;)</li>\n<li>KEEP TATA Photon device connected, TYPE &quot;lsusb&quot; and you will get results like below.\nBus 003 Device 002: ID 12d1:140b Huawei Technologies Co., Ltd.</li>\n<li>If your device shows no. different than 140b then use that in below steps.</li>\n<li>GO TO &quot;/etc/usb_modeswitch.d/12d1:1446&quot; and edit it.\n(GO TO parent most folder and then TYPE &quot;CD /etc/usb_modeswitch.d/&quot;,</li>\n<li>TYPE &quot;gedit 12d1:1446&quot;, the file will get opened in text editor.)</li>\n<li>ADD &quot;140b&quot; to the &quot;targetList=&quot; and SAVE the file.</li>\n</ol>\n<p>Configuring Tata Photon+ as &quot;Mobile Brodband&quot; from Network Manager.</p>\n<p>Step1 : GO TO &quot;System&quot; &gt; &quot;Preferences&quot; &gt; &quot;Network Connections&quot;.</p>\n<p>Step2 : CLICK on &quot;Mobile Broadband&quot; tab.</p>\n<p>Step3 : CLICK on &quot;ADD&quot; button.</p>\n<p>Step4 : Observe the device name below &quot;Create a connection for this mobile broadband device&quot;.\n&quot;HUAyWEI TECHNOLOGIES HUAWEI Mobile&quot; should already be selected in drop down.\nIf not SELECT it and CLICK on &quot;FORWARD&quot;.\nNOTE:- If this device does not shows here that means\nyour Ubuntu is still not treating this device as USB MODEM.</p>\n<p>Step5 : SELECT country (e.g. India) from the list CLICK on &quot;FORWARD&quot;.</p>\n<p>Step6 : SELECT PROVIDER (e.g. Tata Indicom (Photon+)) from the list CLICK on &quot;FORWARD&quot;.</p>\n<p>Step7 : You will see &quot;Your Device&quot; and &quot;Your Provider&quot;, CLICK &quot;Apply&quot; button.</p>\n<p>Step8 : FILL following information under &quot;Mobile Broadband&quot; tab.</p>\n<pre><code>Number: #777\nUsername: internet\nPassword: internet\n</code></pre>\n<p>Optionally you can CHECK &quot;Connect Automatically&quot; option.\nCLICK on &quot;Apply&quot; button</p>\n<p>Step9 : TYPE first user password and CLICK on &quot;Authenticate&quot;.\nYou will see &quot;Tata Indicom (Photon+)&quot; in Mobile Broadband connection list.</p>\n<h3>PART-III :- Starting &quot;Mobile Broadband&quot; Connection</h3>\n<p>Step1 : RIGHT CLICK on &quot;Network Manager&quot; icon on top-left corner of the screen.</p>\n<p>Step2 : CHECK &quot;Enable Mobile Broadband&quot; option.</p>\n<p>Step3 : Now CLICK on the same icon.</p>\n<p>Step4 : CLICK on &quot;Tata Indicom (photon+) connection1&quot;</p>\n<p>And THATS IT !!!!!!</p>\n<p>2.-</p>\n<p>another option is upgrade from 10.04 to 10.10 because THE DRIVER FOR TATA PHOTON+ IS PRE INSTALLED, so no need to install .deb file. Plug in your photon device and select the appropriate options from the Ubuntu network manager.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-24T05:44:01.490", "id": "9117", "postId": "8859", "score": "1", "text": "This is also a great help. Thanks for your effort and interest. I followed the steps you suggested but some where it lacks something. But the thing you suggest to upgrade is sounds great!. I would like to mark your answer as accepted. Masters are always masters!", "userDisplayName": null, "userId": "3215" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-22T12:52:11.643", "id": "8859", "lastActivityDate": "2012-05-11T23:47:15.527", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3550", "parentId": "6001", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>How did you test the speed if you were still not able to get online?</p>\n\n<p>The steps in that link look correct, usb-modeswitch in Lucid is a little outdated and installing the version 1.1.4-1 from Debian usually fixes the problem. So, how many steps did you successfully g...
null
null
null
null
null
6004
1
6065
2010-10-11T14:41:02.873
1
2066
<p>The following are my iptable rules on a ubuntu cloud server:</p> <p>cat /etc/iptables.rules:</p> <pre><code>*filter :INPUT DROP [598:41912] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [456:35354] -A INPUT -i lo -j ACCEPT -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT -A INPUT -m state -i eth0 --state ESTABLISHED,RELATED -j ACCEPT -A INPUT -s mycompany.dyndns.com -p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -s mycompany.dyndns.com -p tcp -m tcp --dport 3306 -j ACCEPT -A INPUT -s mycompany.dyndns.com -p tcp -m tcp --dport 10000 -j ACCEPT -A INPUT -j DROP COMMIT </code></pre> <p>I did not open the ftp port 21 in the above iptable rules but I'm allowed to connect to the server via ftp. How?</p> <hr> <p>nmap server-ip</p> <pre><code>Not shown: 987 closed ports PORT STATE SERVICE 21/tcp open ftp 22/tcp open ssh 25/tcp open smtp 53/tcp open domain 80/tcp open http 111/tcp open rpcbind 135/tcp filtered msrpc 139/tcp filtered netbios-ssn 389/tcp open ldap 445/tcp filtered microsoft-ds 10000/tcp open java-or-OTGfileshare 2401/tcp open cvspserver 3306/tcp open mysql Nmap done: 1 IP address (1 host up) scanned in 17.46 seconds </code></pre> <p>why these many ports are shown as open. I'm clear that these services are running on the server but how it could list or connect(ftp) these ports when it is not included in the iptable rules?.</p> <p>need help...</p> <hr> <pre><code>The following script will be running at every 5 mins on cloud servers to update their iptables for the dyndns domain name: #!/bin/bash # # A script to update iptable records for dynamic dns hosts. # Written by: Dave Horner (http://dave.thehorners.com) # Released into public domain. # # Run this script in your cron table to update ips. # # You might want to put all your dynamic hosts in a sep. chain. # That way you can easily see what dynamic hosts are trusted. # # create the chain in iptables. /sbin/iptables -N dynamichosts # insert the chain into the input chain @ the head of the list. /sbin/iptables -I INPUT 1 -j dynamichosts # flush all the rules in the chain /sbin/iptables -F dynamichosts HOST=$1 HOSTFILE="/root/host-$HOST" CHAIN="dynamichosts" # change this to whatever chain you want. IPTABLES="/sbin/iptables" # check to make sure we have enough args passed. if [ "${#@}" -ne "1" ]; then echo "$0 hostname" echo "You must supply a hostname to update in iptables." exit fi # lookup host name from dns tables IP=`/usr/bin/dig +short $HOST | /usr/bin/tail -n 1` if [ "${#IP}" = "0" ]; then echo "Couldn't lookup hostname for $HOST, failed." exit fi OLDIP="" if [ -a $HOSTFILE ]; then OLDIP=`cat $HOSTFILE` # echo "CAT returned: $?" fi # save off new ip. echo $IP&gt;$HOSTFILE echo "Updating $HOST in iptables." if [ "${#OLDIP}" != "0" ]; then echo "Removing old rule ($OLDIP)" `$IPTABLES -D $CHAIN -s $OLDIP/32 -j ACCEPT` fi echo "Inserting new rule ($IP)" `$IPTABLES -A $CHAIN -s $IP/32 -j ACCEPT` </code></pre> <hr> <p>This is the output of "ipables -L" on the cloud server.</p> <pre><code>dynamichosts all -- anywhere anywhere dynamichosts all -- anywhere anywhere dynamichosts all -- anywhere anywhere dynamichosts all -- anywhere anywhere dynamichosts all -- anywhere anywhere ACCEPT all -- anywhere anywhere ACCEPT tcp -- anywhere anywhere tcp dpt:www ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED ACCEPT tcp -- APKGS-AP-dynamic-145.136.165.59.airtelbroadband.in anywhere tcp dpt:ssh ACCEPT tcp -- APKGS-AP-dynamic-145.136.165.59.airtelbroadband.in anywhere tcp dpt:10000 ACCEPT tcp -- APKGS-AP-dynamic-145.136.165.59.airtelbroadband.in anywhere tcp dpt:mysql DROP all -- anywhere anywhere Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain dynamichosts (937 references) target prot opt source destination ACCEPT all -- Telemedia-AP-dynamic-145.86.175.59.airtelbroadband.in anywhere </code></pre> <p>Here the airtelbroadband is mine(dyndns domainname). I think the previously posted script creates new chain and from this domain everything is allowed -is it so?. May be the allowed ports ssh, webmin, mysql and www are useless entries. But I want this domain should be allowed only to these ports and I may have nmap listing only allowed ports on the cloud server when I check from my dyndns domain systems. Any more help...?</p>
3215
235
2010-10-11T15:38:52.597
2010-10-12T07:51:04.813
iptables & nmap on ubuntu
[ "server", "iptables" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-12T06:30:08.813", "id": "6269", "postId": "6004", "score": "0", "text": "could you please post the output of `iptables -v -L` instead of `iptables -L` ? You are using interface-based rules, and those are not listed correctly without `-v` ?", "userDisplayName": nul...
{ "accepted": true, "body": "<p>This is the same question as <a href=\"https://serverfault.com/questions/188550/iptables-nmap-on-ubuntu\">https://serverfault.com/questions/188550/iptables-nmap-on-ubuntu</a> </p>\n\n<p>As people there suggest, your firewall rules have special exceptions for the cloud server itself (<code>-A INPUT -i lo -j ACCEPT</code>) or your \"airtelbroadband\" machine (the script you're running allows all traffic from the selected dyndns IP). </p>\n\n<p>So, you need to run <code>nmap</code> from a <em>different IP address</em> (e.g., just use another machine in the cloud)</p>\n\n<p>If you want to restrict access from your \"airtelbroadband\" host (e.g., for testing purposes), then you can replace the last line in your script with a list of the rules you want to apply. For example, the following lines will only allow SSH, HTTP/HTTPS and MySQL connections from your home host:</p>\n\n<pre><code>$IPTABLES -A $CHAIN -s $IP/32 -p tcp --dport 22 -j ACCEPT\n$IPTABLES -A $CHAIN -s $IP/32 -p tcp --dport 80 -j ACCEPT\n$IPTABLES -A $CHAIN -s $IP/32 -p tcp --dport 443 -j ACCEPT\n$IPTABLES -A $CHAIN -s $IP/32 -p tcp --dport 3306 -j ACCEPT\n</code></pre>\n\n<p><strong>Warning:</strong> It is very, <em>very,</em> <strong>very</strong> easy to lock yourself out of a running host by messing with the firewall rules, especially with automated scripts. Consider testing from a 3rd host instead.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-10-12T01:10:12.650", "id": "6175", "postId": "6065", "score": "0", "text": "yes your are right. The script allowing everything to my dyndns domain name. No way to allow only selected ports?.", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-12T06:25:16.883", "id": "6266", "postId": "6065", "score": "0", "text": "@user3215 Yes, it's possible. I've updated the answer with some sketch instructions.", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-12T07:13:12.293", "id": "6277", "postId": "6065", "score": "0", "text": "I hope it really works what you have suggested but still afraid of doing this and checking if there is any alternate way to do the same without any risk. For iptables I use 'iptables-apply -t 1800 /etc/iptables.rules' to avoid misconfiguration.", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-12T07:50:18.280", "id": "6284", "postId": "6065", "score": "0", "text": "@user3215 Yes, but you cannot use `iptables-restore` for the `dynamichosts` table, since the IP in that table is changing - this is the reason for using a cron script in the first place.", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-12T08:51:17.290", "id": "6292", "postId": "6065", "score": "0", "text": "How about if I use the drop option like the \"`$IPTABLES -A $CHAIN -s $IP/32 -p tcp --dport 21 -j DROP`\" just appending these kind of rules at the end of the script", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2010-10-12T09:00:30.900", "id": "6298", "postId": "6065", "score": "0", "text": "@user3215 that will prevent FTP traffic and only from your home machine... rather pointless. A good starting point to read about iptables might be this one: http://artoflinux.blogspot.com/2008/07/iptables-tutorial-for-beginners.html", "userDisplayName": null, "userId": "325" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:17:51.597", "id": "6065", "lastActivityDate": "2010-10-12T07:51:04.813", "lastEditDate": "2017-04-13T12:14:53.003", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "325", "parentId": "6004", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Based on the output of your <code>iptables -L</code>, it seems there is nothing reading your <code>/etc/iptables.rules</code> file. Note the <code>ACCEPT all -- anywhere anywhere</code> match will let anything in.</p>\n\n<p>You'll probably want to add someth...
null
null
null
null
null
6007
1
null
2010-10-11T14:49:46.343
2
313
<p>Today I upgraded to Maverick, and tried to watch a movie with smplayer. After a while I stopped the movie and noticed that I could not use my mouse anymore. No left click ,just middle and right clicks worked and I could not grab the focus of any window. This happened with VLC too, but does not happen with mplayer. I can only fix it whit logout/login. Anyone faced this problem too?</p>
3221
3037
2011-01-17T21:29:55.600
2011-01-18T07:40:57.723
Qt applications drive my mouse crazy?
[ "mouse", "kde" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-12T03:47:50.183", "id": "6214", "postId": "6007", "score": "0", "text": "Maybe it's useful to know if you have this with other applications than mediaplayers too. And if you only have this when using them full screen or always...", "userDisplayName": null, "us...
null
[ { "accepted": null, "body": "<p>I found the bug which coses my problem\n<a href=\"https://bugs.launchpad.net/ubuntu/maverick/+source/xserver-xorg-input-evdev/+bug/636311\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/maverick/+source/xserver-xorg-input-evdev/+bug/636311</a>\nOhh and by the way its not...
null
null
null
null
null
6009
1
6010
2010-10-11T15:00:00.607
116
243573
<p>I want to change an icon of a specific theme. Where do themes save their icons?</p>
2192
null
null
2022-04-01T08:46:29.810
Where are icons stored?
[ "icons", "themes" ]
5
4
CC BY-SA 2.5
[ { "creationDate": "2014-04-21T14:11:49.430", "id": "594039", "postId": "6009", "score": "0", "text": "possible duplicate of [Where are the Unity Launcher .desktop files?](http://askubuntu.com/questions/40931/where-are-the-unity-launcher-desktop-files)", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>Globally: <code>/usr/share/icons/</code>\nor in your home folder : <code>~/.local/share/icons</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2020-02-11T04:40:38.483", "id": "2031024", "postId": "6010", "score": "0", "text": "Here's some other locations apparently, too: https://askubuntu.com/questions/476233/how-to-include-environment-variable-in-launcher-for-icon/476710#476710.", "userDisplayName": null, "userId": "327339" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T15:03:37.170", "id": "6010", "lastActivityDate": "2017-07-21T07:58:01.510", "lastEditDate": "2017-07-21T07:58:01.510", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3221", "parentId": "6009", "postTypeId": "2", "score": "145" }
[ { "accepted": true, "body": "<p>Globally: <code>/usr/share/icons/</code>\nor in your home folder : <code>~/.local/share/icons</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2020-02-11T04:40:38.483", "id": "2031024", "postId": "6010", "score...
null
null
null
null
null
6016
1
6457
2010-10-11T15:37:40.317
122
94048
<p>What is the recommended way to change the first day of the week to Monday (instead of Sunday, as in the screenshot below)? </p> <p><img src="https://i.stack.imgur.com/AdMDt.png" alt="alt text"></p> <p>I couldn't find anything related in Clock Preferences, nor in System -> Preferences, or System -> Administration.</p> <p>This probably has something to do with tweaking locales, so here's (possibly relevant) output from <code>locale</code>:</p> <pre><code>LANG=en_US.utf8 LC_CTYPE="en_US.utf8" LC_NUMERIC="en_US.utf8" LC_TIME="en_US.utf8" ... LC_ALL= </code></pre> <p><strong>NB</strong>: I want to keep English as the UI language both in GNOME and on command line. Dates are currently displayed like this (e.g. <code>ls -l</code>): <code>2010-10-06 15:32</code>, and I also want to keep that as it is. </p>
928
2355
2021-10-21T10:30:57.240
2024-01-24T15:10:26.067
How to set Monday as the first day of the week in GNOME 2 Calendar applet?
[ "gnome", "calendar", "locale" ]
12
4
CC BY-SA 4.0
[ { "creationDate": "2010-10-11T16:02:16.220", "id": "1231811", "postId": "6016", "score": "1", "text": "There is a very good explanation on how to do this at ubuntu forums! Check out this link and you'll get it done in 2 minutes. [http://ubuntuforums.org/showthread.php?t=813945](http://ubuntuforu...
{ "accepted": true, "body": "<p>Here's another solution, also <a href=\"http://ubuntuforums.org/showthread.php?p=6798112#post6798112\" rel=\"noreferrer\">from Ubuntu Forums</a>. I think this is somewhat cleaner and more robust: it doesn't involve customizing Ubuntu's locale files (only settings that you're supposed to edit).</p>\n<blockquote>\n<p>Gnome calendar applet adheres to your\nlocale settings. In Ubuntu, you can\nassign locale components by editing\nthe file <strong><code>/etc/default/locale</code></strong>. Here is\nwhat I've got there:</p>\n<pre><code>LANG=&quot;en_US.UTF-8&quot;\nLC_TIME=&quot;en_GB.UTF-8&quot;\nLC_PAPER=&quot;en_GB.UTF-8&quot;\nLC_MEASUREMENT=&quot;en_GB.UTF-8&quot;\n</code></pre>\n<p>Which means: I want software messages\nin American, but time, paper size and\nunits in British i.e.weeks starting\nwith Mondays, A4, metric.</p>\n</blockquote>\n<p>Props to <strong><a href=\"http://ubuntuforums.org/member.php?u=200985\" rel=\"noreferrer\">artm</a></strong> who posted that!</p>\n<p>Of course, <code>LC_TIME=&quot;en_GB.UTF-8&quot;</code> is the relevant setting to get weeks to start on Mondays.</p>\n<p>You need to <a href=\"https://unix.stackexchange.com/a/108516/29324\">log out and back in</a> for the change to take effect.</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-10-12T15:09:07.010", "id": "6376", "postId": "6457", "score": "0", "text": "Both locale-based solutions (this and [what Antonis suggested](http://askubuntu.com/questions/6016/how-to-set-monday-as-the-first-day-of-the-week-in-gnome-calendar-applet/6024#6024)) happily affect other similar situations too, for example the output of `cal` command-line tool!", "userDisplayName": null, "userId": "928" }, { "creationDate": "2011-11-01T10:22:32.153", "id": "84251", "postId": "6457", "score": "4", "text": "Of course, the above is a **system-wide** solution. To configure this on a **per-user** basis, see [Victor's answer](http://askubuntu.com/questions/6016/how-to-set-monday-as-the-first-day-of-the-week-in-gnome-calendar-applet/69288#69288).", "userDisplayName": null, "userId": "928" }, { "creationDate": "2012-11-15T09:49:50.803", "id": "269121", "postId": "6457", "score": "12", "text": "Any way to reload it without rebooting?", "userDisplayName": null, "userId": "89365" }, { "creationDate": "2015-12-17T09:57:02.810", "id": "1045283", "postId": "6457", "score": "3", "text": "For me, using Xubuntu 14.04, the system-wide solution did not work: after rebooting, the week in the panel's clock (the xfce clock) still began with Sunday even after rebooting. [Victor's per-user solution](http://askubuntu.com/questions/6016/how-to-set-monday-as-the-first-day-of-the-week-in-gnome-calendar-applet/69288#69288) did work, though.", "userDisplayName": null, "userId": "38043" }, { "creationDate": "2017-05-18T05:29:13.653", "id": "1444398", "postId": "6457", "score": "1", "text": "This doesn't seem to work with `fr_CA.UTF-8` on 14.04 or 16.04.", "userDisplayName": null, "userId": "301745" }, { "creationDate": "2018-02-18T11:39:35.513", "id": "1630875", "postId": "6457", "score": "4", "text": "`en_GB.UTF-8` locale should be pre-generated before setting `LC_TIME` it like this (`sudo dpkg-reconfigure locales`).", "userDisplayName": null, "userId": "143724" }, { "creationDate": "2019-08-02T16:56:16.830", "id": "1938038", "postId": "6457", "score": "1", "text": "This may not be the ideal solution, since it changes not only the first day of the week but also all other properties of `LC_TIME`...", "userDisplayName": null, "userId": "237278" }, { "creationDate": "2022-03-27T18:15:57.923", "id": "2426444", "postId": "6457", "score": "0", "text": "Didn't work for me (Ubuntu 20.04), and actually triggered a bug at re-log-in.", "userDisplayName": null, "userId": "771165" }, { "creationDate": "2022-04-02T08:58:52.467", "id": "2429042", "postId": "6457", "score": "0", "text": "**WARNING:** This has the side-effect of renaming your `Trash Bin` to **`Rubbish Bin`**", "userDisplayName": null, "userId": "119592" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-10-12T15:03:20.423", "id": "6457", "lastActivityDate": "2021-02-21T04:11:02.807", "lastEditDate": "2021-02-21T04:11:02.807", "lastEditorDisplayName": "user833907", "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "928", "parentId": "6016", "postTypeId": "2", "score": "87" }
[ { "accepted": true, "body": "<p>Here's another solution, also <a href=\"http://ubuntuforums.org/showthread.php?p=6798112#post6798112\" rel=\"noreferrer\">from Ubuntu Forums</a>. I think this is somewhat cleaner and more robust: it doesn't involve customizing Ubuntu's locale files (only settings that you're ...
null
null
null
null
null
6017
1
6077
2010-10-11T15:38:39.287
4
2504
<p>Is there a way to get Docky ton act like Gnome-Do? I installed just the docky package. I would like it to be able to search for other things that are not in the dock. Is this possible or would it just be easier to install Gnome-Do separate.</p>
74398
null
null
2010-11-29T20:33:47.133
How to get Docky to work like gnome-do?
[ "gnome-do", "docky", "search" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Lucid's version of Gnome-Do still has the Docky interface available, and it will act like Gnome-Do when you push the keyboard shortcut for Gnome-Do. You shouldn't even need to have Docky installed separately. The version in Maverick removed the Docky interface. (Both are numbered 0.8.3.1 in the about dialog, however.)</p>\n\n<p>Once you have a version of Gnome-Do without Docky removed (see below), the next thing is to run Gnome-Do. If Gnome-Do doesn't pop up when you run it, summon it with <kbd>Windows Key</kbd> + <kbd>Space</kbd>. Click the downward-pointing triangle on the top right corner of Gnome-Do and click <em>Preferences</em>. Click on the <em>Appearance</em> tab and select the <em>Docky</em> theme in the drop-down at the top of the tab. You can then configure Gnome-Do just as you would configure Docky.</p>\n\n<p>The versions of the <code>gnome-do</code> packages after <code>0.8.3.1+dfsg-1ubuntu1</code> (<code>0.8.3.1+dfsg-2</code> and <code>0.8.3.1+dfsg-2ubuntu1</code>) removed the Docky theme. Maverick is also missing the <code>gnome-do-docklets</code> package.</p>\n\n<p>You <em>could</em> download <code>gnome-do</code> and <code>gnome-do-docklets</code> from the <a href=\"http://packages.ubuntu.com/lucid/gnome-do\" rel=\"nofollow\">Ubuntu Lucid repositories</a> (you could probably still install Maverick's version of <code>gnome-do-plugins</code> with it). It looks like the only fix you'd miss out on is one for crashes caused by GNOME Keyring. I'm not experienced enough to guarantee this will work right, but I'd do it on my own computer. I have at least checked to ensure there aren't any dependency issues.</p>\n\n<p>A surer, but more difficult, approach, would be to build the latest release of <code>gnome-do</code> but reverse the effects of the patch <code>debian/patches/03_disable_docky.dpatch</code>.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-10-11T21:50:12.530", "id": "6098", "postId": "6077", "score": "0", "text": "No; 0.8.3.1 does not have Docky.", "userDisplayName": null, "userId": "2181" }, { "creationDate": "2010-10-11T22:53:37.280", "id": "6127", "postId": "6077", "score": "0", "text": "Looks like it's probably a difference between what's in Maverick and what's in Lucid. I updated my answer and I'll look into it more momentarily.", "userDisplayName": null, "userId": "3256" }, { "creationDate": "2010-10-11T23:17:51.203", "id": "6136", "postId": "6077", "score": "0", "text": "Okay, I've updated my answer again; it now contains information on why the Docky feature is there on 0.8.3.1 in Lucid but missing on 0.8.3.1 in Maverick.", "userDisplayName": null, "userId": "3256" }, { "creationDate": "2010-10-12T23:05:24.287", "id": "6532", "postId": "6077", "score": "0", "text": "I found a [blog post](http://www.ubunturoot.com/2010/10/how-to-install-gnome-do-with-docky-in.html) posted today that advocates the same approach.", "userDisplayName": null, "userId": "3256" }, { "creationDate": "2010-10-17T15:40:05.027", "id": "7798", "postId": "6077", "score": "0", "text": "Thanks everyone, I guess I will have to survive having them as separate programs for now. Thanks for the great answers! :)", "userDisplayName": null, "userId": "74398" }, { "creationDate": "2010-12-18T02:21:45.337", "id": "19188", "postId": "6077", "score": "0", "text": "unfortunately gnome-do is not stable on my amd64 ubuntu 10.04, and i had to switch back to docky.", "userDisplayName": null, "userId": "1792" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:59:50.797", "id": "6077", "lastActivityDate": "2010-11-29T20:33:47.133", "lastEditDate": "2010-11-29T20:33:47.133", "lastEditorDisplayName": null, "lastEditorUserId": "3256", "ownerDisplayName": null, "ownerUserId": "3256", "parentId": "6017", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>For now, you'll need to install them separately and use them without integration; Docky was split from Do a while ago. The next Do release will likely reintroduce Docky integration.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "cont...
null
null
null
null
null
6021
1
6054
2010-10-11T15:48:26.703
6
683
<p>I like <a href="https://askubuntu.com/questions/1400/optimize-ubuntu-for-ssd/1675#1675">this suggestion</a> of mounting a tmpfs at <code>/var/log</code> in order to reduce disk writes.</p> <p>Is there any way to do something similar for just a single file such as <code>~/.xsession-errors</code>?</p> <hr> <p>My incentive for asking comes from <a href="http://www.lesswatts.org/projects/powertop/" rel="nofollow noreferrer">PowerTOP</a>,</p> <pre><code>The program 'gnome-do' is writing to file '.xsession-errors' on /dev/sdb2. This prevents the disk from going to powersave mode. </code></pre> <p>but one could also conceivably want to do this in order to speed up an IO-intensive program.</p>
1859
-1
2017-04-13T12:24:49.590
2010-10-11T18:01:14.023
Is there a way to force a specific file to exist in RAM only?
[ "performance", "battery", "disk", "ssd" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No, there is no way you can force a single file not to be written to disk. Writes to a file are passed down to the filesystem code: if the filesystem is backed by memory (e.g., <code>tmpfs</code>) then data is written to a (virtual) memory location; if the filesystem is backed by a block device (e.g., ext3/4) then data is written to the block device.</p>\n\n<p>You can, however, symlink a specific file to a location in a <code>tmpfs</code> filesystem; this will work as long as: (1) the destination of the symlink exists, and (2) the link is not removed and the file re-created in the original (disk-based) filesystem.</p>\n\n<p>Concerning <code>~/.xession-errors</code>, there is some special treatment in <code>/etc/X11/Xsession</code> (lines 63--72 as of <code>x11-common</code> version 1:7.5+5ubuntu1): <em>if <code>~/.xsession-errors</code> is already a symlink,</em> then a temporary file (in directory <code>$TMPDIR</code> or <code>/tmp</code>) is used instead. So, if your <code>/tmp</code>or <code>$TMPDIR</code> filesystem is mounted from RAM, you're done.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:01:14.023", "id": "6054", "lastActivityDate": "2010-10-11T18:01:14.023", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "325", "parentId": "6021", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>No, there is no way you can force a single file not to be written to disk. Writes to a file are passed down to the filesystem code: if the filesystem is backed by memory (e.g., <code>tmpfs</code>) then data is written to a (virtual) memory location; if the filesystem is back...
null
null
null
null
null
6023
1
6028
2010-10-11T15:56:56.717
30
21586
<p>Was asked by a new Ubuntu user - who also wants to learn about programming - what he could use to run BASIC code. He was working through a BASIC book before trying out Ubuntu, and he'd like to continue without having to switch back to Windows.</p> <p>It looks like there are a few BASIC packages in the standard repositories, as well as projects like Mono which may include some kind of BASIC support. </p> <p><strong>What would be a good recommendation from the standard repositories - or from a deb package - for someone learning the basics of BASIC and new to Ubuntu?</strong></p>
428
235
2011-12-20T03:19:33.750
2022-11-03T12:47:22.383
What BASIC intepreters are available?
[ "software-recommendation", "programming" ]
9
3
CC BY-SA 3.0
[ { "creationDate": "2010-10-11T16:12:58.177", "id": "5980", "postId": "6023", "score": "1", "text": "That highly depends on which BASIC dialect he's learning.", "userDisplayName": null, "userId": "430" }, { "creationDate": "2010-10-12T19:15:59.460", "id": "6447", "postId":...
{ "accepted": true, "body": "<p>Searching apt reveals</p>\n\n<ul>\n<li><code>basic256</code> - educational BASIC programming environment for children</li>\n<li><code>yabasic</code> - Yet Another BASIC interpreter</li>\n</ul>\n\n<p><code>basic256</code> seems it might be a little better suited for the user, but I'm not sure how closely that dialect will match whatever is in his programming book, which might be frustrating.</p>\n\n<p>Homepage here - <a href=\"http://www.basic256.org/index_en\" rel=\"noreferrer\">http://www.basic256.org/index_en</a></p>\n\n<p><code>yabasic</code> seems closer to standard BASIC, but I really have no first-hand experience with either.</p>\n\n<p>Good luck.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2023-12-24T09:21:08.360", "id": "2624057", "postId": "6028", "score": "0", "text": "The home page link is broken", "userDisplayName": null, "userId": "526125" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T16:13:16.960", "id": "6028", "lastActivityDate": "2017-05-08T19:35:19.790", "lastEditDate": "2017-05-08T19:35:19.790", "lastEditorDisplayName": null, "lastEditorUserId": "358541", "ownerDisplayName": null, "ownerUserId": "1372", "parentId": "6023", "postTypeId": "2", "score": "17" }
[ { "accepted": true, "body": "<p>Searching apt reveals</p>\n\n<ul>\n<li><code>basic256</code> - educational BASIC programming environment for children</li>\n<li><code>yabasic</code> - Yet Another BASIC interpreter</li>\n</ul>\n\n<p><code>basic256</code> seems it might be a little better suited for the user, ...
null
null
null
null
null
6025
1
6924
2010-10-11T16:04:23.960
1
18699
<p>Tried to install 10.10 yesterday and eventually got an error that Grub had failed to install. Asked me to select another partition, cancel install or continue without a bootloader.</p> <p>Everytime I selected another partition the error would just pop back up immediately (not convinced it even tried writing anything to disk).</p> <p>I did do some partitioning when I was in the installer - shrunk an ntfs partition and grew the Linux one to make up for it - the defaults were set to place at beginning of drive and logical (as opposed to primary), so I left it with that. </p> <p>The first time grub just went to the recovery prompt - but most of the commands that were 'supposed' to work, didn't (been reading articles and how-tos). After another reinstall and an attempt to install manually I got through to the grub> prompt, but have failed to get much further.</p> <p>I've checked the grub directory and there's no grub.cfg anywhere, but it's definitely 1.9x that's installed. There should be no Legacy Grub installations anymore, that I'm aware of. </p> <p>Have gone through various methods to try and load a kernel or configure grub but they've all been unsuccessful. For example: <a href="http://ubuntuforums.org/showthread.php?t=1195275" rel="nofollow">http://ubuntuforums.org/showthread.php?t=1195275</a></p> <p>EDIT:</p> <p>Sorry, you're right, I should have been clearer, left a lot of space for assumptions there. Was writing it while researching/rebooting.</p> <p>I have actually managed to work around it, but I will get back with that partition table 'cause I'm pretty sure something is wrong somewhere - still unable to get the distro installer to install grub, as it should.</p> <p>Using Ubuntu Linux. Was failing to get past the grub> prompt because I wasn't loading the initrd image. Did that and I was flying. Just ran update-grub once I got into Ubuntu proper.</p>
3232
3232
2010-10-13T18:10:18.547
2013-06-05T22:24:10.723
Grub always fails to install, furthest I get is grub> prompt
[ "installation", "boot", "partitioning", "grub2" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-13T06:07:57.633", "id": "6604", "postId": "6025", "score": "0", "text": "suggest trying an alternate distro? run a quick install of puppy linux / damn small linux and see if you get this working. At this point you'll have a working grub2 install, it seems to reason to ...
{ "accepted": true, "body": "<p>In my opinion, you try to install by selecting 'continue without a bootloader', when you finish, reboot your computer with a liveCD or LiveUSB again. after being on the desktop, try to reinstall grub with the steps:</p>\n<p>mount ubuntu partition that you installed earlier. you can click on places &gt; <em>your-ubuntu-partition</em></p>\n<p>open terminal, run:</p>\n<blockquote>\n<p>sudo chroot /media/<em>your-ubuntu-partition</em></p>\n<p>sudo grub-install /dev/sda</p>\n<p>sudo update-grub</p>\n</blockquote>\n<p>close the terminal, and try to reboot it.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-16T00:18:54.583", "id": "7486", "postId": "6924", "score": "0", "text": "Cheers, that's basically what I did. (almost)\nGrub wouldn't update/config in the LiveCD session, had to get into a real one first.\n\nIf anyone else reads this, remember to load both the linux kernel AND the intrd.img (command works the same way).", "userDisplayName": null, "userId": "3232" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-13T19:10:05.190", "id": "6924", "lastActivityDate": "2010-10-13T19:10:05.190", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "130367", "parentId": "6025", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Your post has been viewed 12 times now with no replies. That may be because you have provided little information for anyone to understand your situation. Specifically:</p>\n\n<ul>\n<li>you have not listed your partition table and said what each partition is</li>\n<li>you sa...
null
0
null
null
null
6033
1
6040
2010-10-11T16:26:36.750
56
78363
<p>When you boot from live CD, or doing the first boot after installing Ubuntu, splash screen looks awesome. But as soon as you enable nvidia-current driver, installed with apt-get, splash screen goes all crazy.</p> <p>With crazy I mean that resolution is very low, font(I assume) is very weird and it all looks like it's been broken.</p> <p>This happened with 10.04 and now again with 10.10.</p> <p>How do I fix splash screen after enabling nvidia drivers?</p>
3234
235
2010-10-11T16:52:26.853
2014-05-18T19:34:26.940
Enabling Nvidia driver messes up splash screen
[ "boot", "nvidia", "plymouth" ]
4
5
CC BY-SA 2.5
[ { "creationDate": "2011-02-16T21:20:34.207", "id": "29365", "postId": "6033", "score": "1", "text": "In X my resolution is set do 1600x900, but with sudo hwinfo --framebuffer or in grub's console, the maximum resolution is 1152x864.\r\nAnyone can tell me why is that???\r\n\r\nThankx", "userD...
{ "accepted": true, "body": "<p>That is easy. First of all:</p>\n\n<pre><code>sudo apt-get install v86d hwinfo\nsudo hwinfo --framebuffer\n</code></pre>\n\n<p>This will show you your supported resolutions. <strong>Take note</strong>.</p>\n\n<p><strong>Then:</strong></p>\n\n<pre><code>gksudo gedit /etc/default/grub\n</code></pre>\n\n<p>Search for - GRUB_GFXMODE=</p>\n\n<p>below this you need to type:\n<code>GRUB_GFXPAYLOAD_LINUX=1024x768</code> <strong>&lt;- your-resolution-here</strong></p>\n\n<p>Save the file and then:</p>\n\n<pre><code>echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash\nsudo update-grub2\nsudo update-initramfs -u\n</code></pre>\n", "commentCount": "8", "comments": [ { "creationDate": "2010-10-11T16:54:01.827", "id": "5999", "postId": "6040", "score": "2", "text": "Is there a downside to doing this?", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2010-10-16T07:58:57.583", "id": "7523", "postId": "6040", "score": "0", "text": "I used to install cryptsetup instead of your second step. It works same.", "userDisplayName": null, "userId": "2026" }, { "creationDate": "2011-04-27T23:50:52.483", "id": "41455", "postId": "6040", "score": "1", "text": "It doesn't work for me, I'm using an NVIDIA 8600M. It used to work nicely with Maverick...", "userDisplayName": null, "userId": "14015" }, { "creationDate": "2012-04-28T14:13:39.893", "id": "151762", "postId": "6040", "score": "2", "text": "excellent, this works fine on 12.04 in case anyone was wondering", "userDisplayName": null, "userId": "14021" }, { "creationDate": "2012-06-14T15:18:32.010", "id": "182664", "postId": "6040", "score": "0", "text": "Yes this is not working in ubuntu 12.04 64 bit. I have a nVidia GT 240M. I followed this steps and now I got a ugly black splash screen. Please update this answer (if possible) so that it will work in ubuntu 12.04!", "userDisplayName": null, "userId": "35507" }, { "creationDate": "2012-12-29T04:52:15.943", "id": "289762", "postId": "6040", "score": "0", "text": "This fix worked for me with an Nvidia GeForce GT 620 on Ubuntu 12.10, 64 bit. My actual screen resolution of 1600x900 was not available but the 1600x1200 looks much closer to 'normal' than what I was getting.", "userDisplayName": null, "userId": "267" }, { "creationDate": "2013-04-13T14:28:40.240", "id": "353182", "postId": "6040", "score": "0", "text": "I confirm this works in Ubuntu 12.04.2 LTS, I have GeForce 680 GTX.", "userDisplayName": null, "userId": "21868" }, { "creationDate": "2014-04-20T17:47:01.030", "id": "593097", "postId": "6040", "score": "1", "text": "Just to confirm this also work with ubuntu 14.04 and nvidia, just ignore the hwinfo part since it is not available not... and everything is the same...", "userDisplayName": null, "userId": "271580" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-10-11T16:48:08.137", "id": "6040", "lastActivityDate": "2011-08-21T06:46:18.223", "lastEditDate": "2011-08-21T06:46:18.223", "lastEditorDisplayName": null, "lastEditorUserId": "5674", "ownerDisplayName": null, "ownerUserId": "3243", "parentId": "6033", "postTypeId": "2", "score": "57" }
[ { "accepted": true, "body": "<p>That is easy. First of all:</p>\n\n<pre><code>sudo apt-get install v86d hwinfo\nsudo hwinfo --framebuffer\n</code></pre>\n\n<p>This will show you your supported resolutions. <strong>Take note</strong>.</p>\n\n<p><strong>Then:</strong></p>\n\n<pre><code>gksudo gedit /etc/defau...
null
null
null
null
null
6035
1
21601
2010-10-11T16:32:25.900
14
9114
<p>I'm looking for a good code snippet manager, with syntax highlighting and search capabilities. Another important feature is the capability of changing the code area background color. I have tested some Adobe Air apps that had white background everywhere, which hurts my eyes.</p> <p>I'm using KDE btw. I use Kate for coding, but I don't like it's snippet plugin.</p>
2950
570
2010-10-11T17:02:29.657
2020-02-19T09:20:18.243
Code snippet manager for Ubuntu?
[ "development", "source-code", "kubuntu" ]
11
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-12T04:06:41.850", "id": "6222", "postId": "6035", "score": "0", "text": "I don't really like snippet plugins because the encourage copy-and-paste style coding. What you should be trying to do is to write good javascript libraries of find some that do it for you so that...
{ "accepted": true, "body": "<p>I'm using <a href=\"http://www.eclipse.org/\" rel=\"nofollow\">Eclipse</a>, which has a really nice snippet manager, with support for variables and drag-and-drop.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-14T23:35:05.000", "id": "21601", "lastActivityDate": "2011-01-14T23:35:05.000", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2950", "parentId": "6035", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>instead of kate i recommend you Gvim and the <a href=\"http://www.vim.org/scripts/script.php?script_id=2540\" rel=\"nofollow\">SnipMate plugin</a>, it's highly customizable, and really easy to use. Greetings</p>\n", "commentCount": "1", "comments": [ { "...
null
null
null
null
null
6037
1
null
2010-10-11T16:40:51.157
3
322
<p>Is burg compatible with Ubuntu 10.10? And if yes, are there any kind of errors that will appear if install it improperly?</p>
2891
2079
2011-06-26T16:05:29.210
2011-06-26T16:05:29.210
Burg Compatibility
[ "10.10", "grub2", "burg" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>yes it is compatible.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T17:02:53.353", "id": "6043", "lastActivityDate": "2010-10-11T17:02:53.353", "lastEditDa...
null
null
null
null
null
6042
1
null
2010-10-11T17:01:18.393
4
505
<p>How to bind in-game actions to hardware keys not to layout variables? Keys stops working when I randomly change them in game (Quake Live or Quake III) by <kbd>Alt</kbd>+<kbd>Shift</kbd>.</p>
2813
1066942
2022-01-11T10:54:50.277
2022-01-11T10:54:50.277
How to bind keyboard layout in opengl game?
[ "games", "keyboard-layout" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2010-10-19T03:56:01.713", "id": "8063", "postId": "6042", "score": "0", "text": "what game is this?", "userDisplayName": null, "userId": "4062" }, { "creationDate": "2010-10-26T23:59:03.520", "id": "9732", "postId": "6042", "score": "0", "text":...
null
[ { "accepted": null, "body": "<p>There is no way to bind directly to the xinput keys, unless I misunderstand your question. Is there a situation where binding to the quake 3 keys is insufficient?</p>\n\n<p>Can you provide a concrete example of what you want to do, step by step?</p>\n", "commentCount": "0...
null
null
null
null
null
6045
1
6046
2010-10-11T17:32:12.333
2
573
<p>So my homepage look weird I don't know why but since i start using ubuntu 10.10 the weird symbols appear any idea?</p> <p><a href="https://i.stack.imgur.com/Wl8df.jpg" rel="nofollow noreferrer">https://i.stack.imgur.com/Wl8df.jpg</a></p>
3127
null
null
2010-10-11T18:11:08.407
Weird Symbols Google
[ "fonts" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This happens to me everyonce in a while. It's google resetting language preferences to Afrikaans (at least this is what is shown, the language displayed is not Afrikaans, I don't know if it's a language at all). You should try setting it back to english in the preferences menu (2nd item in top right corner).</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-10-11T17:35:52.563", "id": "6007", "postId": "6046", "score": "0", "text": "LOL is true is in Afrikaans wtf oh well thank you !", "userDisplayName": null, "userId": "3127" }, { "creationDate": "2010-10-11T17:38:29.270", "id": "6009", "postId": "6046", "score": "0", "text": "No matter how hard i try to change it back to English wont let me ugh!", "userDisplayName": null, "userId": "3127" }, { "creationDate": "2010-10-11T17:43:26.187", "id": "6010", "postId": "6046", "score": "0", "text": "Try switching it back to another language first, when this happened to me I could never find english in the list of languages at first.", "userDisplayName": null, "userId": "119" }, { "creationDate": "2010-10-11T17:46:13.657", "id": "6011", "postId": "6046", "score": "0", "text": "That help now i am using Spanish so that should work for now :)", "userDisplayName": null, "userId": "3127" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T17:34:37.173", "id": "6046", "lastActivityDate": "2010-10-11T17:44:39.853", "lastEditDate": "2010-10-11T17:44:39.853", "lastEditorDisplayName": null, "lastEditorUserId": "119", "ownerDisplayName": null, "ownerUserId": "119", "parentId": "6045", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>This happens to me everyonce in a while. It's google resetting language preferences to Afrikaans (at least this is what is shown, the language displayed is not Afrikaans, I don't know if it's a language at all). You should try setting it back to english in the preferences men...
null
null
2010-10-11T18:39:47.850
null
null
6048
1
45792
2010-10-11T17:41:51.823
0
1169
<p>I have an Asus u30jc laptop, which comes with the Optimus prime graphics card switching technology that is now supported under 2.6.35, so I decided to give it a try. First I made sure the discrete graphics card was activated and then I installed the drivers proposed by the ubuntu software repository (nvidia-current).</p> <p>However, after rebooting all I got was a command prompt. </p> <p>My graphics card is a nvidia 310M. This is on Ubuntu 10.10 64 bits. </p> <p>What can I do to diagnose/identify the source of this problem?</p> <p>UPDATE: The messsages in my syslog tell me to check the xorg log:</p> <pre><code>Oct 11 12:42:59 u30jc-test gdm-binary[1095]: WARNING: GdmDisplay: display lasted 0.053144 seconds Oct 11 12:42:59 u30jc-test gdm-simple-slave[1450]: WARNING: Unable to load file '/etc/gdm/custom.conf': No such file or directory Oct 11 12:42:59 u30jc-test gdm-binary[1095]: WARNING: GdmDisplay: display lasted 0.038176 seconds Oct 11 12:42:59 u30jc-test gdm-binary[1095]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors </code></pre> <p>Which I did. I found this message in my /var/log/Xorg.0.log :</p> <pre><code>Fatal server error: [ 113.540] no screens found [ 113.540] </code></pre> <p>What does that mean?</p>
119
1067
2010-12-27T13:56:02.813
2011-05-29T16:31:08.717
Installing nvidia drivers causes computer to boot to command prompt
[ "10.10", "nvidia" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-19T14:20:35.507", "id": "29865", "postId": "6048", "score": "1", "text": "Have you resolved the issue? If so how?", "userDisplayName": null, "userId": "9193" }, { "creationDate": "2011-02-19T20:12:57.887", "id": "29910", "postId": "6048", "s...
{ "accepted": true, "body": "<p>I have successfully installed bumblebee in a Asus U30Jc and I can use the Intel card for the desktop and the nvidia card for graphics-hungry applications, like games, google-chrome, cuda programming, etc. Also, the external monitor management with the Intel card (gnome-display-properties) is better than with the nvidia closed-source drivers: it will remember your configuration for the different external screens (work, home, TV, etc). Have a look at the bumblebee section in this website: <a href=\"https://launchpad.net/~hybrid-graphics-linux\" rel=\"nofollow\">https://launchpad.net/~hybrid-graphics-linux</a></p>\n\n<pre>\nsudo apt-get install git\n# type password\ngit clone http://github.com/MrMEEE/bumblebee.git\ncd bumblebee/\nsudo ./install.sh\noptirun glxgears\n# check the speed and compare to running:\nglxgears\n# If you have google-chrome installed, you can try it with/without optirun and report the FPS values on the mailing list:\noptirun google-chrome http://webglsamples.googlecode.com/hg/aquarium/aquarium.html\n</pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-31T19:37:01.220", "id": "50842", "postId": "45792", "score": "0", "text": "I have also installed bumblebee successfully on my laptop not more than 2 days ago. First time I ever got my nvidia card rendering anything under Linux, much thanks to the bumblebee guys for that.\n\nGotta watch out and make sure you are running a stable version though, as at first I got unlucky and installed a bugged version that kind of destroyed my setup.", "userDisplayName": null, "userId": "119" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-29T08:01:41.697", "id": "45792", "lastActivityDate": "2011-05-29T16:31:08.717", "lastEditDate": "2011-05-29T16:31:08.717", "lastEditorDisplayName": null, "lastEditorUserId": "18849", "ownerDisplayName": null, "ownerUserId": "17702", "parentId": "6048", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>The first place to look is the file <code>/var/log/Xorg.0.log</code>. Look for entries that start with <code>(EE)</code>.</p>\n\n<p>Another good places are <code>/var/log/messages</code> and <code>/var/log/syslog</code>.</p>\n", "commentCount": "0", "comments": [], ...
null
null
null
null
null
6051
1
6420
2010-10-11T17:46:44.593
5
29067
<p>There is a website that streams local TV and it requires windows media player plugin. I have LUbuntu freshly installed, but it simply says "Missing Plug-in". It doesn't say anything about what packages I need to install. What's the right package/s to install?</p>
null
18612
2011-10-25T18:21:37.607
2015-02-25T16:32:24.357
How to install windows media player plugin on chromium?
[ "chromium", "multimedia", "plugins" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Ok I've got it working now. I have removed the packages from Medibuntu PPA (since I don't require its packages yet) and installed these packages:</p>\n\n<ul>\n<li><p><a href=\"http://apt.ubuntu.com/p/totem-mozilla\" rel=\"nofollow\">totem-mozilla</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-alsa\" rel=\"nofollow\">gstreamer0.10-alsa</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-ffmpeg\" rel=\"nofollow\">gstreamer0.10-ffmpeg</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-fluendo-mp3\" rel=\"nofollow\">gstreamer0.10-fluendo-mp3</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-nice\" rel=\"nofollow\">gstreamer0.10-nice</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-pitfdll\" rel=\"nofollow\">gstreamer0.10-pitfdll</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-bad\" rel=\"nofollow\">gstreamer0.10-plugins-bad</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-bad-multiverse\" rel=\"nofollow\">gstreamer0.10-plugins-bad-multiverse</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-base\" rel=\"nofollow\">gstreamer0.10-plugins-base</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-base-apps\" rel=\"nofollow\">gstreamer0.10-plugins-base-apps</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-good\" rel=\"nofollow\">gstreamer0.10-plugins-good</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-ugly\" rel=\"nofollow\">gstreamer0.10-plugins-ugly</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-plugins-ugly-multiverse\" rel=\"nofollow\">gstreamer0.10-plugins-ugly-multiverse</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-pulseaudio\" rel=\"nofollow\">gstreamer0.10-pulseaudio</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-tools\" rel=\"nofollow\">gstreamer0.10-tools</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/gstreamer0.10-x\" rel=\"nofollow\">gstreamer0.10-x</a></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/flashplugin-installer\" rel=\"nofollow\">flashplugin-installer</a></p></li>\n</ul>\n\n<p>These are taken from the package list from my previous Ubuntu (thanks to dv3500ea for the clues). I am not sure if there are any packages that are safe to remove. I forgot the forum thread in which I followed the guide. I also have VLC plugin (mozilla-plugin-vlc) installed but it's not necessary to play the video. I still have it enabled and the video is playing.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-12T13:26:44.823", "id": "6420", "lastActivityDate": "2010-10-12T16:09:16.527", "lastEditDate": "2010-10-12T16:09:16.527", "lastEditorDisplayName": null, "lastEditorUserId": "667", "ownerDisplayName": "user2814", "ownerUserId": null, "parentId": "6051", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>By any chance are you using VLC? If you do </p>\n\n<p>Disable the VLC Multimedia Plug-in in about:plugins</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-10-11T17:56:53.543", "id": "6012", "postId": "6052", "sco...
null
null
null
null
user2814
6055
1
6062
2010-10-11T18:06:34.777
9
1089
<p>In both <strong>Synaptic Package Manager</strong> and <strong>Ubuntu Software Center</strong>, I sometimes see the following footnote. </p> <pre><code>Canonical does not provide updates for deja-dup. Some updates may be provided by the Ubuntu community. </code></pre> <p>Does this mean that these packages are not automatically updated as new versions are released?<br> ... or does it just mean that Canonical plays no part in the development of the particular app.<br> ... or does it mean something else? </p> <p>Do I need to monitor and manage the installation of latest releases myself? </p>
2670
235
2010-10-11T19:20:09.983
2010-10-12T00:39:09.537
What does this "Canonical does not provide updates..." mean in my package manager?
[ "software-center", "package-management", "synaptic" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T18:15:27.013", "id": "6018", "postId": "6055", "score": "2", "text": "Whether Canonical supports a package or not, new versions won't get into the repository, just bugfixes for the existing version. That's the Stable Release Update policy.", "userDisplayName": ...
{ "accepted": true, "body": "<p>It means that if there is a security problem or minor bug fixed in the application, then Canonical makes no guarantee they will update it to protect your system, etc.</p>\n\n<p>If there is a major problem the Ubuntu community will usually issue an update though.</p>\n\n<p>No, I wouldn't worry at all about monitoring new releases.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:13:33.360", "id": "6062", "lastActivityDate": "2010-10-11T18:13:33.360", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "6055", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>It means that if there is a security problem or minor bug fixed in the application, then Canonical makes no guarantee they will update it to protect your system, etc.</p>\n\n<p>If there is a major problem the Ubuntu community will usually issue an update though.</p>\n\n<p>No,...
null
null
null
null
null
6059
1
null
2010-10-11T18:10:28.467
1
724
<p>I've just switched to Ubuntu 10.10 from Jolicloud 1.0 and I'm very impressed so far! Only thing I'm not too sure about is Oneconf. I've installed it from the Software Centre and under File / Inventory on Ubuntu One both boxes are checked and I'm signed in. But how do I know it's working? And how would I resync my installed programs to a fresh installation? Next to "Share this computer's inventory" it says "unknown" even though the box is checked. Thanks</p>
null
570
2010-10-11T18:40:48.893
2010-10-11T18:40:48.893
How do I know if Oneconf is working?
[ "software-center", "oneconf" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>OneConf is still in testing, that's why it isn't installed by default yet. According to <a href=\"https://blueprints.edge.launchpad.net/ubuntu/+spec/desktop-maverick-oneconf\" rel=\"nofollow\">this blueprint</a>, default inclusion has been delayed to Natty.</p>\n\n<p>The curr...
null
null
null
null
Chris
6061
1
6064
2010-10-11T18:11:20.200
1
243
<p>I would like to make Gwibber use the Messaging Menu in Ubuntu 10.10. Gwibber is running, there is an arrow near 'Broadcast' item, but i don't see recent tweets on the list, I just see Notify OSD notifications...</p> <p>what can I do to make it work? :)</p>
2937
1158
2010-10-11T23:01:50.957
2010-10-11T23:01:50.957
Gwibber and the Messaging Menu
[ "10.10", "gwibber" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It is working. It only shows notifications for @-replies.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T18:18:28.080", "id": "6019", "postId": "6064", "score": "0", "text": "well, I checked, it's true! Messaging menu only shows @-replies. Tnx!", "userDisplayName": null, "userId": "2937" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:14:17.213", "id": "6064", "lastActivityDate": "2010-10-11T18:14:17.213", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1158", "parentId": "6061", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It is working. It only shows notifications for @-replies.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-11T18:18:28.080", "id": "6019", "postId": "6064", "score": "0", "text": "well, I checked, it'...
null
null
null
null
null
6068
1
6069
2010-10-11T18:22:45.980
8
3089
<p>After my fresh install of Ubuntu 10.10, I noticed that the terminal's font is smashed together and altogether awful-looking. </p> <p>Does anyone have a solution or workaround? I've been trying to find one for a few days. :(</p> <p><img src="https://i.stack.imgur.com/8GaCZ.png" alt="alt text"></p>
3039
235
2010-10-11T19:40:01.363
2010-10-11T19:40:01.363
Terminal font is buggy
[ "10.10", "command-line", "fonts" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It looks like you have the new Ubuntu font set as your terminal font. This is not recommended, because the monospace version of the Ubuntu font has not yet been created.</p>\n\n<p>To reset yourself to the default terminal font then run the following in a terminal:</p>\n\n<pre><code>gconftool-2 --unset /desktop/gnome/interface/monospace_font_name\n</code></pre>\n\n<p>You can also do this graphically, in System->Preferences->Appearance->Fonts. Here change the \"Fixed width font\" to 'Monospace' size 10. It will look something like this:</p>\n\n<p><img src=\"https://i.stack.imgur.com/VAU05.png\" alt=\"alt text\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-11T19:26:12.497", "id": "6033", "postId": "6069", "score": "0", "text": "Thank you sir! That fixed things. It's a shame they haven't created an ubuntu version for it yet. Is there a bug report filed? I should probably go file one. :-/", "userDisplayName": null, "userId": "3039" }, { "creationDate": "2010-10-11T19:29:33.680", "id": "6035", "postId": "6069", "score": "0", "text": "It's a pleasure to help. Don't bother, it's already a well know issue (expect it in time for the next Ubuntu release!): http://launchpad.net/ubuntu-font-family/+milestone/monospace", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-10-11T19:32:27.587", "id": "6038", "postId": "6069", "score": "1", "text": "Aww \"Expected: 2010-12-15\". If I knew how/what to code in, I would work on it right now to help 'em out. xD (I only know some java)", "userDisplayName": null, "userId": "3039" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T18:25:09.377", "id": "6069", "lastActivityDate": "2010-10-11T19:39:20.847", "lastEditDate": "2010-10-11T19:39:20.847", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "6068", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>It looks like you have the new Ubuntu font set as your terminal font. This is not recommended, because the monospace version of the Ubuntu font has not yet been created.</p>\n\n<p>To reset yourself to the default terminal font then run the following in a terminal:</p>\n\n<pre...
null
null
null
null
null
6071
1
6120
2010-10-11T18:35:32.553
0
646
<p>I've recently switched from Empathy to Pidgin as my IM client, but I've noticed the notification sounds Pidgin plays on events like a contact signing in crackle. I've never had such problems with any other sound on Ubuntu, but Pidgin seems to have a problem with my audio setup.</p> <p>I'm running Ubuntu 10.10.</p> <p>Thanks for your help.</p>
3253
3253
2010-10-11T18:47:24.107
2010-10-11T20:25:13.287
Fix crackling audio with Pidgin Internet Messenger
[ "10.10", "sound", "pidgin" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I had the same problem until I opened Pidgin's sound properties and switch \"method\" from \"auto\" to \"ALSA\". Now it works.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-11T20:29:13.840", "id": "6066", "postId": "6120", "score": "0", "text": "Thanks a lot, this has fixed my audio issues with pidgin! +1", "userDisplayName": null, "userId": "3253" }, { "creationDate": "2010-12-18T20:42:31.330", "id": "19298", "postId": "6120", "score": "0", "text": "confirm: fixed.", "userDisplayName": null, "userId": "7624" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T20:25:13.287", "id": "6120", "lastActivityDate": "2010-10-11T20:25:13.287", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2876", "parentId": "6071", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I had the same problem until I opened Pidgin's sound properties and switch \"method\" from \"auto\" to \"ALSA\". Now it works.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-11T20:29:13.840", "id": "6066", "postId":...
null
null
null
null
null
6075
1
null
2010-10-11T18:55:47.523
0
1016
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/7700/gma-5700-mhd-dell-vostro-3300-externel-vga-monitor-is-flickering">GMA 5700 MHD Dell Vostro 3300 externel vga monitor is flickering</a> </p> </blockquote> <p>I use the Dell Vostro 3300 und Ubuntu Lucid 10.10. The problem was on 10.04.1 too.</p> <p>The VGA for the external monitor is flickering. The problem seams to be the Intel GMA X4500HD . </p> <p>So, do you know 1.) what i can do? or 2.) where i can find a Driver for the Intel GMA X4500HD - maybe a deb package, because I am a absolute beginner.</p>
3257
-1
2017-04-13T12:25:03.423
2010-10-11T20:08:00.660
VGA for external monitor is flickering
[ "10.10", "xorg", "intel-graphics" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-04-24T18:09:29.873
null
null
6076
1
6081
2010-10-11T18:59:21.053
9
32100
<p>I upgraded to the RC some time ago and the sources.list is sort of screwed up, meaning I'm getting a lot of 404's when updating. Could someone please post an original sources.list for Maverick?</p>
3260
235
2010-10-11T19:06:10.323
2014-05-13T09:22:43.827
I need a copy of the default /etc/apt/sources.list
[ "10.10", "updates" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T19:15:08.027", "id": "6027", "postId": "6076", "score": "0", "text": "Keep in mind that the `XX.archive.ubuntu.com` part should vary by geographic location.", "userDisplayName": null, "userId": "1859" } ]
{ "accepted": true, "body": "<p>Here you have ;)</p>\n\n<pre><code># deb cdrom:[Ubuntu 10.10 _Maverick Meerkat_ - Release i386 (20101007)]/ maverick main restricted\n# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to\n# newer versions of the distribution.\n\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick main restricted\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick main restricted\n\n## Major bug fix updates produced after the final release of the\n## distribution.\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick-updates main restricted\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick-updates main restricted\n\n## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu\n## team. Also, please note that software in universe WILL NOT receive any\n## review or updates from the Ubuntu security team.\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick universe\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick universe\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick-updates universe\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick-updates universe\n\n## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu \n## team, and may not be under a free licence. Please satisfy yourself as to \n## your rights to use the software. Also, please note that software in \n## multiverse WILL NOT receive any review or updates from the Ubuntu\n## security team.\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick multiverse\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick multiverse\ndeb http://es.archive.ubuntu.com/ubuntu/ maverick-updates multiverse\ndeb-src http://es.archive.ubuntu.com/ubuntu/ maverick-updates multiverse\n\n## Uncomment the following two lines to add software from the 'backports'\n## repository.\n## N.B. software from this repository may not have been tested as\n## extensively as that contained in the main release, although it includes\n## newer versions of some applications which may provide useful features.\n## Also, please note that software in backports WILL NOT receive any review\n## or updates from the Ubuntu security team.\n# deb http://es.archive.ubuntu.com/ubuntu/ maverick-backports main restricted universe multiverse\n# deb-src http://es.archive.ubuntu.com/ubuntu/ maverick-backports main restricted universe multiverse\n\n## Uncomment the following two lines to add software from Canonical's\n## 'partner' repository.\n## This software is not part of Ubuntu, but is offered by Canonical and the\n## respective vendors as a service to Ubuntu users.\n# deb http://archive.canonical.com/ubuntu maverick partner\n# deb-src http://archive.canonical.com/ubuntu maverick partner\n\n## This software is not part of Ubuntu, but is offered by third-party\n## developers who want to ship their latest software.\ndeb http://extras.ubuntu.com/ubuntu maverick main\ndeb-src http://extras.ubuntu.com/ubuntu maverick main\n\ndeb http://security.ubuntu.com/ubuntu maverick-security main restricted\ndeb-src http://security.ubuntu.com/ubuntu maverick-security main restricted\ndeb http://security.ubuntu.com/ubuntu maverick-security universe\ndeb-src http://security.ubuntu.com/ubuntu maverick-security universe\ndeb http://security.ubuntu.com/ubuntu maverick-security multiverse\ndeb-src http://security.ubuntu.com/ubuntu maverick-security multiverse\n</code></pre>\n\n<p>Make sure the problem is on the sources.list and not in standalone PPAs .list\nIf you wanna know what exactly is the problem, try to update your packages list on a graphical tool (as Synaptic or Update Manager) not the gnome-terminal. It will show you what adress is wrong.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T19:07:30.813", "id": "6081", "lastActivityDate": "2010-10-11T19:07:30.813", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2827", "parentId": "6076", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Here you have ;)</p>\n\n<pre><code># deb cdrom:[Ubuntu 10.10 _Maverick Meerkat_ - Release i386 (20101007)]/ maverick main restricted\n# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to\n# newer versions of the distribution.\n\ndeb http://es.archive.ubun...
null
null
2015-05-01T03:52:43.950
null
null
6078
1
null
2010-10-11T19:04:40.313
7
11032
<p>Ralink Technology publishes their drivers in source code form on their website <a href="http://www.ralinktech.com/en/04_support/support.php?sn=501" rel="nofollow">here</a>. When complied with make and make install in 10.04, the drivers worked well in 32 and 64 bit versions of Lucid. However, when compiled for the 64 bit version of Maverick, it does not work at all, and 32 bit Maverick, it works but randomly disconnects.</p> <p>Both versions of Maverick say "[Proprietary] Driver is activated but not in use" in the Proprietary Drivers dialog.</p> <p>Do the drivers just need to be updated? Is there an easy fix?</p>
3259
47291
2012-08-14T00:12:14.383
2012-08-14T00:12:14.383
Are the Ralink RT3090 drivers incompatible with Ubuntu 10.10?
[ "10.10", "kernel", "wireless", "drivers", "ralink" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2010-10-13T20:49:36.843", "id": "6859", "postId": "6078", "score": "0", "text": "Stranger still, on my netbook, the 32-bit version's drivers work out of the box when using a flash drive, but not at all (until I install them from the website) using a live cd of the same image."...
null
[ { "accepted": null, "body": "<p>I would also suggest doing this:</p>\n\n<p><code>lsmod | grep ^rt</code></p>\n\n<p>How many rt modules are running on your system? If it is more than one, it may be conflicting. I have a RAlink card, and initially, two rt modules were both trying to use my card, and the con...
null
null
null
null
null
6090
1
14618
2010-10-11T19:38:48.557
4
2018
<p>I'm trying to setup netconsole to debug a hard lock up, and I am running into a problem. I have the following config for netconsole:</p> <pre><code>options netconsole netconsole=6666@192.168.1.114/wlan0,6666@192.168.1.105/00:1e:d2:c4:72:54 </code></pre> <p>During bootup I get the following spew:</p> <pre><code>[ 5.256569] netconsole: local port 6666 [ 5.256570] netconsole: local IP 192.168.1.114 [ 5.256571] netconsole: interface wlan0 [ 5.256572] netconsole: remote port 6666 [ 5.256572] netconsole: remote IP 192.168.1.105 [ 5.256573] netconsole: remote ethernet address 00:1e:d2:c4:72:54 [ 5.256574] netconsole: wlan0 doesn't exist, aborting. [ 5.256575] netconsole: cleaning up </code></pre> <p>Not exactly sure what to do from here, any suggestions welcome.</p> <p><strong>Edit</strong> output of ip l for maco:</p> <pre><code>1: lo: &lt;LOOPBACK,UP,LOWER_UP&gt; mtu 16436 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: eth0: &lt;NO-CARRIER,BROADCAST,MULTICAST,UP&gt; mtu 1500 qdisc pfifo_fast state DOWN qlen 1000 link/ether 00:1f:bc:09:45:b5 brd ff:ff:ff:ff:ff:ff 3: eth1: &lt;NO-CARRIER,BROADCAST,MULTICAST,UP&gt; mtu 1500 qdisc pfifo_fast state DOWN qlen 1000 link/ether 00:1f:bc:09:45:b6 brd ff:ff:ff:ff:ff:ff 4: wlan0: &lt;BROADCAST,MULTICAST,UP,LOWER_UP&gt; mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 00:14:6c:85:ad:fa brd ff:ff:ff:ff:ff:ff </code></pre> <p><strong>Edit</strong> output of dmesg after modprobe error for kees:</p> <pre><code>[ 4557.261569] netconsole: local port 6666 [ 4557.261573] netconsole: local IP 192.168.1.114 [ 4557.261576] netconsole: interface wlan0 [ 4557.261577] netconsole: remote port 6666 [ 4557.261580] netconsole: remote IP 192.168.1.105 [ 4557.261582] netconsole: remote ethernet address 00:1e:d2:c4:72:54 [ 4557.261585] netconsole: wlan0 doesn't support polling, aborting. [ 4557.261587] netconsole: cleaning up </code></pre>
1157
63111
2012-07-09T13:47:53.473
2012-07-09T13:47:53.473
Netconsole won't start, says "wlan0 doesn't exist, aborting"
[ "wireless" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T19:45:10.380", "id": "6045", "postId": "6090", "score": "0", "text": "what's the output of `ip l` ?", "userDisplayName": null, "userId": "1158" } ]
{ "accepted": true, "body": "<p>This is your problem:</p>\n\n<pre><code>[ 4557.261585] netconsole: wlan0 doesn't support polling, aborting.\n</code></pre>\n\n<p>Netconsole needs a driver that supports polling which isn't the case with your wireless card. Could you try it with one of your Ethernet cards?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-23T21:56:54.143", "id": "14618", "lastActivityDate": "2010-11-23T21:56:54.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4774", "parentId": "6090", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>If the <code>netconsole</code> module is loaded before the wireless network driver, it will not be able to find <code>wlan0</code> yet, since it doesn't exist. If your hard lock is later in the boot process, you can get the wireless driver loaded first, and the use <code>modp...
null
null
null
null
null
6091
1
6194
2010-10-11T19:46:40.460
1
859
<p>Does anyone know how to get a built-in media card reader to work in Ubuntu 10.10? My laptop is a Gateway NV52.</p>
3269
866
2010-12-28T09:23:09.397
2011-03-08T02:54:31.490
How to get media card reader in NV52 Gateway to work?
[ "10.10", "hardware", "troubleshooting", "storage", "card-reader" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It should \"just work\" and automatically mount when you insert a card.</p>\n\n<p>If it's not, try this. Insert a card with something on it. Take a look at System > Administration > Disk Utility and see if the device appears as one of your storage devices. If you can see it in the disk utility, look at its partitions and make sure the format is something we can read (ext, ntfs, fat or others).</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-22T14:53:36.947", "id": "8825", "postId": "6194", "score": "0", "text": "As *dgmdan* said, this should work automatically when you insert a card. If it doesn't you should report a bug by pressing <kbd>Alt</kbd>+<kbd>F2</kbd> and entering `ubuntu-bug`.", "userDisplayName": null, "userId": "866" }, { "creationDate": "2011-11-17T03:43:50.113", "id": "90375", "postId": "6194", "score": "0", "text": "Maybe it's just my laptop or something. I've found out that it works sometimes. Other times I have to have the card in the reader when the OS loads for it to work. Otherwise, it wouldn't show up in Disk Utility", "userDisplayName": null, "userId": "3269" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T22:41:11.990", "id": "6194", "lastActivityDate": "2010-10-11T22:41:11.990", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3058", "parentId": "6091", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It should \"just work\" and automatically mount when you insert a card.</p>\n\n<p>If it's not, try this. Insert a card with something on it. Take a look at System > Administration > Disk Utility and see if the device appears as one of your storage devices. If you can see i...
null
null
null
null
null
6092
1
6095
2010-10-11T19:46:45.797
4
1058
<p>What is the simplest method to completely upgrade your existing 10.04 install to get the updates and packages from the 10.10 distribution? Disregarding the fact that you get the latest packages, I would like to see the package paths change to the newer version.</p>
3285
235
2011-10-08T23:27:06.310
2011-10-08T23:27:06.310
How to update from 10.04 to 10.10?
[ "10.10", "10.04", "upgrade", "release-management" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The official ubuntu.com page has information:</p>\n\n<ul>\n<li>For <a href=\"http://www.ubuntu.com/desktop/get-ubuntu/upgrade\" rel=\"nofollow\">desktop and server editions</a>.</li>\n<li>For <a href=\"http://www.ubuntu.com/netbook/get-ubuntu/upgrade\" rel=\"nofollow\">netbook edition</a></li>\n</ul>\n\n<p>You can easily upgrade over the network with the following procedure.</p>\n\n<ol>\n<li>Open the Software Sources application from the System -> Administration menu</li>\n<li>Select the sub menu Updates from the Software Sources application</li>\n<li>Change the Release Update drop down to \"Normal Releases\" and close the application</li>\n<li>Open Update Manager from the System -> Administration menu</li>\n<li>Click the Check button to check for new updates.</li>\n<li>If there are any updates to install, use the Install Updates button to install them, and press Check again after that is complete.</li>\n<li>A message will appear informing you of the availability of the new release.</li>\n<li>Click Upgrade.</li>\n</ol>\n\n<p>Follow the on-screen instructions.</p>\n\n<p>Taken from:\n<a href=\"https://help.ubuntu.com/community/MaverickUpgrades\" rel=\"nofollow\">https://help.ubuntu.com/community/MaverickUpgrades</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-10-11T20:41:03.093", "id": "6070", "postId": "6095", "score": "2", "text": "Why Alt-F2 for 4? Why not just start the update manager through the menu?", "userDisplayName": null, "userId": "430" }, { "creationDate": "2010-10-11T22:27:27.263", "id": "6113", "postId": "6095", "score": "0", "text": "You first 3 steps are sufficient to allow Ubuntu to upgrade to newer versions, very well written guide.", "userDisplayName": null, "userId": "3285" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T19:50:04.243", "id": "6095", "lastActivityDate": "2010-10-13T16:24:56.823", "lastEditDate": "2010-10-13T16:24:56.823", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "3253", "parentId": "6092", "postTypeId": "2", "score": "13" }
[ { "accepted": null, "body": "<p>Go to System -> Administration -> Software Sources and change it to show all new versions, not just new LTS releases. System -> Administration -> Update Manager. Check for updates. Click the button that offers to upgrade to 10.10.</p>\n", "commentCount": "0", "comm...
null
null
null
null
null
6097
1
null
2010-10-11T19:52:37.937
4
2167
<p>How can I enable multi touch in Ubuntu 10.10 for my Acer Aspire 4740 notebook ?</p> <pre><code>Screen 14.1-inch glossy LED-backlit 1366x768 res CPU Intel Core i5-430m 2.26GHz RAM 1GB DDR3 HDD 320GB Graphics Onboard Intel GMA HD USB Ports 3 DVD Writer Yes Gigabit Ethernet Yes Wi-Fi 802.11 b/g/n HDMI/eSATA/FireWire Yes/No/No Multicard Reader Yes ExpressCard Slot No </code></pre>
3267
41
2010-10-15T02:53:10.053
2011-11-27T23:49:46.587
Multitouch on Acer Aspire 4740
[ "10.10", "multi-touch", "acer", "aspire" ]
4
4
CC BY-SA 2.5
[ { "creationDate": "2010-10-11T19:55:59.097", "id": "6048", "postId": "6097", "score": "1", "text": "Can you give us some more details about your notebook please?", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-10-11T19:58:46.270", "id": "6049", "post...
null
[ { "accepted": null, "body": "<p>If your laptop built with Synaptics touchpad you need to install the synaptics drivers for your environment. To configure, you need gsynaptics configuration tool as well. With tose you can enjoy moultitouch features.</p>\n", "commentCount": "0", "comments": [], "c...
null
null
null
null
null