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
18369
1
18393
2010-12-21T11:04:08.213
19
17862
<p>At the moment his is what I do:</p> <p>Step 1:</p> <pre><code>locate fooBar /home/abc/fooBar /home/abc/Music/fooBar </code></pre> <p>Step 2:</p> <p>Manually perform a removal, by copy-pasting each line.</p> <p><code>rm /home/abc/fooBar</code><br> <code>rm /home/abc/Music/fooBar</code></p> <p>How do I do this i...
3778
null
null
2023-10-11T06:47:37.570
How to delete all files that are returned by locate
[ "command-line", "pipe" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-21T14:24:19.600", "id": "19633", "postId": "18369", "score": "0", "text": "Do you want this?\n`rm -i `locate fooBar``", "userDisplayName": null, "userId": "3602" }, { "creationDate": "2010-12-22T06:03:17.493", "id": "19690", "postId": "18369", ...
{ "accepted": true, "body": "<p>As the other chaps have already mentioned, xargs is your friend. It's a really powerful tool and I'll try to explain it and provide a workaround for a common gotcha.</p>\n\n<p>What xargs does is take a line from the input, and append it to another command, executing that other comman...
[ { "accepted": null, "body": "<p>To delete all the files that are returned by locate,issue the following command in your terminal</p>\n\n<p><code>locate foobar | xargs rm -f</code></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "...
null
null
null
null
null
18372
1
18375
2010-12-21T11:18:45.143
48
44142
<p>I'm looking for a way to find out what kind of RAM a system has (clocking speed, DDR-X etc.). Is there a specific command for that? I'm only aware of <code>free</code> or <code>lspci</code> which don't offer those things.</p>
236
300458
2020-07-03T23:00:52.943
2020-07-03T23:00:52.943
How can I find out what RAM a computer system has?
[ "command-line", "hardware", "ram" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes there is:</p>\n\n<pre><code>sudo lshw -short -C memory\n</code></pre>\n\n<p>It will output something like this:</p>\n\n<pre><code>H/W path Class Description\n====================================================\n/0/0 memory 106KiB BIOS\n/0/4/5 memo...
[ { "accepted": true, "body": "<p>Yes there is:</p>\n\n<pre><code>sudo lshw -short -C memory\n</code></pre>\n\n<p>It will output something like this:</p>\n\n<pre><code>H/W path Class Description\n====================================================\n/0/0 memory 106KiB BIOS\n/0/4/5 ...
null
null
2016-04-23T21:52:21.533
null
null
18373
1
18483
2010-12-21T11:27:24.587
1
304
<p>My ubuntu (jaunty) system crashed recently with this trace. What information can I deduce from this trace? I was logged in via ssh, and was trying to connect to a wifi network. ath_tx_start sounds like a function in madwifi driver. What locations should I search in to find further traces, and is there some place on...
7729
7729
2010-12-22T06:42:48.443
2010-12-22T10:37:22.957
What information can be extracted from this system crash trace
[ "server", "9.04" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-21T16:08:23.863", "id": "19647", "postId": "18373", "score": "0", "text": "The following wiki page should provide some help: https://wiki.ubuntu.com/Kernel/Debugging", "userDisplayName": null, "userId": "742" } ]
{ "accepted": true, "body": "<p>It seems the problem was in the PAE. I was using soekris 4801 box, which has a geode processor without PAE extension, but the default kernel installed uses PAE extension, leading to kernel panics when i started using wifi.</p>\n\n<p>The problem was solved by installing and using the ...
[ { "accepted": true, "body": "<p>It seems the problem was in the PAE. I was using soekris 4801 box, which has a geode processor without PAE extension, but the default kernel installed uses PAE extension, leading to kernel panics when i started using wifi.</p>\n\n<p>The problem was solved by installing and us...
null
null
null
null
null
18374
1
18678
2010-12-21T11:27:45.093
14
3185
<p>I would like to understand the flow of the USB events form the Kernel space to the User space (just out of my curiosity, in knowing how things are implemented). </p> <p>To be more clear, I would like to know how does that pop-up comes in my desktop when I plug a USB drive to my system and how does the drive gets m...
6521
6521
2010-12-22T02:16:24.753
2011-02-21T09:26:36.257
How to understand the flow of USB detection?
[ "usb", "automount", "user-space" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ol>\n<li>Device is plugged in, and the software that manages the hardware bus for that device receives an interrupt (or other notification at the hardware level), and the bus driver enumerates attached devices, or performs other bus-specific hardware actions to identify the device.</li...
[ { "accepted": true, "body": "<ol>\n<li>Device is plugged in, and the software that manages the hardware bus for that device receives an interrupt (or other notification at the hardware level), and the bus driver enumerates attached devices, or performs other bus-specific hardware actions to identify the dev...
null
null
null
null
null
18385
1
18392
2010-12-21T13:14:59.770
5
7986
<p>Often I'm copying and pasting pieces of text. I'd like to streamline the process.</p> <p>Anyone know if it possible to bind (for example): <kbd>Ctrl</kbd> <kbd>Right Click</kbd> to Copy and <kbd>Alt</kbd> <kbd>Right Click</kbd> to Paste</p>
7237
17739
2011-11-02T21:04:12.623
2012-11-28T05:11:01.487
Binding mouse buttons to copy and paste
[ "xorg", "shortcut-keys", "mouse", "clipboard" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2010-12-21T13:34:42.790", "id": "19628", "postId": "18385", "score": "2", "text": "Why cant you hightlight with left button and paste it with middle button..", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-21T13:43:17.790", "id": "...
{ "accepted": true, "body": "<p>Yes, it is possible, and there are many ways to do it.</p>\n\n<p>The easiest way, which isn't exactly what you want, is to use a clipboard manager to bind middle-clicking to pasting. Glippy, which I use, allows me to do this. It has a setting that makes anything you highlight autom...
[ { "accepted": true, "body": "<p>Yes, it is possible, and there are many ways to do it.</p>\n\n<p>The easiest way, which isn't exactly what you want, is to use a clipboard manager to bind middle-clicking to pasting. Glippy, which I use, allows me to do this. It has a setting that makes anything you highlig...
null
null
null
null
null
18387
1
33599
2010-12-21T13:19:33.993
7
4550
<p>Evince cannot view my dvi files. Is there any way to enable dvi viewing other than further installing Ubuntu TeX Live packages?</p> <p>Opening it from the desktop gives <em>document has incorrect format</em>; using the terminal gives </p> <blockquote> <p>warning: kpathsea: configuration file texmf.cnf not fo...
null
null
2011-10-20T10:27:24.967
2011-10-20T10:27:24.967
How to view dvi files with evince
[ "file-format", "evince" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-21T13:52:20.037", "id": "19631", "postId": "18387", "score": "0", "text": "Evince requires some dvi libraries that are provided by the `texlive-binaries` and `texlive-common` packages. The same problem occurs if you manually install a newer texlive release. Evince will...
{ "accepted": true, "body": "<p>Evince requires some dvi libraries that are provided by the <code>texlive-binaries</code> and <code>texlive-common</code> packages. The same problem occurs if you manually install a newer texlive release. Evince will not like the libraries provided unless they are in the standard loc...
[ { "accepted": true, "body": "<p>Evince requires some dvi libraries that are provided by the <code>texlive-binaries</code> and <code>texlive-common</code> packages. The same problem occurs if you manually install a newer texlive release. Evince will not like the libraries provided unless they are in the stan...
null
null
null
user7182
user7182
18389
1
18391
2010-12-21T13:40:02.540
3
862
<p>Is there a way in Ubuntu to have rake commands (Ruby) available on the command line?</p> <p>I solved adding the following line to bashrc, but I think there should be a better way.</p> <pre><code>export PATH=$PATH:$HOME/bin:/var/lib/gems/1.8/bin </code></pre> <p>Have I forgot something?</p>
6910
169736
2014-01-31T16:46:10.963
2014-01-31T16:46:10.963
rake command line
[ "environment-variables", "ruby" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can use RVM, it's a really great system to manage you ruby version and add all command needed in your PATH.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-21T14:19:22.693", "id": "19632", "postId": "18391", "score": "1", ...
[ { "accepted": true, "body": "<p>You can use RVM, it's a really great system to manage you ruby version and add all command needed in your PATH.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-21T14:19:22.693", "id": "19632", "postId": "18391", ...
null
null
null
null
null
18395
1
18396
2010-12-21T15:27:12.417
4
86
<p>I am testing Natty and found an issue with the global menu, what is the proper package name to report the bug?</p>
742
3037
2011-01-05T16:09:56.683
2011-01-05T16:09:56.683
Which package should I use to file a bug for the "application" menu?
[ "11.04", "appmenu", "bug-reporting", "globalmenu" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The proper name is \"application menu\" to distinguish it from the older (and <a href=\"http://code.google.com/p/gnome2-globalmenu/\" rel=\"nofollow\">seperate project</a>).</p>\n\n<p>The modules are indicator-appmenu and appmenu-gtk. Unless it's indicator specific most bugs should b...
[ { "accepted": true, "body": "<p>The proper name is \"application menu\" to distinguish it from the older (and <a href=\"http://code.google.com/p/gnome2-globalmenu/\" rel=\"nofollow\">seperate project</a>).</p>\n\n<p>The modules are indicator-appmenu and appmenu-gtk. Unless it's indicator specific most bugs ...
null
null
null
null
null
18399
1
null
2010-12-21T16:13:21.020
3
209
<p>My Nokia phone (5800) works well with Ubuntu after bluetooth pairing. When I reboot to Windows (seven, in my case), it doesn't — I have to remove it from 'Paired bluetooth devices' and then add again.</p> <p>The story repeats when I boot to Ubuntu after windows. I have to remove the phone from known devices and pai...
7745
null
null
2011-07-10T13:39:40.597
Nokia paired via bluetooth AND windows after reboot — possible?
[ "windows", "bluetooth" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2012-02-03T00:41:09.873", "id": "116455", "postId": "18399", "score": "0", "text": "This question seems abandoned, there is not further information or activity added to it for several months. I am flagging this to be closed by a moderator. If you think this issue is still affe...
null
[ { "accepted": null, "body": "<p>Try having your phone create the key, or optionally, you can enter your own key.</p>\n\n<p>To do this, find the computer from on your phone, and choose a key when it asks for one.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-26T2...
null
null
2012-02-03T00:56:16.680
null
null
18403
1
18410
2010-12-21T17:25:00.443
5
2143
<p>I have created a live usb from an Ubuntu 11.04 daily cd image using usb disk creator. I have bandwidth constrains so I would like to update the live usb from a current daily cd image without downloading an entire image.</p>
742
3037
2011-01-05T16:08:18.887
2017-08-06T18:25:03.020
How to incrementally update a live-usb?
[ "11.04", "live-usb" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I have tried two times and it worked for me (But i do not know if this is the correct way to do it). First you need to create the first Live USB following the USB Creator steps.</p>\n\n<p>Then when a new update comes just overwrite the files that are newer than the ones in the usb. W...
[ { "accepted": null, "body": "<p>When you create the USB startup disk, you have the option to partition off so much of the disk into what is known as a persistence file. This file allows you to save your files and settings so that they are available next time you boot up the live image. The option in questio...
null
null
null
null
null
18406
1
null
2010-12-21T17:58:02.630
3
3185
<p>What's the best way to set up a Java-based program to run an service and start on boot?</p> <ul> <li>upstart (<code>pre-start script</code> and <code>post-stop script</code> ?)</li> <li>plain old SysV init? (<code>start-stop-daemon</code> ?)</li> </ul> <p>In my case I am interested in setting up <a href="http://ww...
6170
null
null
2010-12-30T07:39:10.443
How to set up Java-based services for startup?
[ "java", "upstart", "init" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Most of the time you can cut out a lot of the code in those scripts and just focus on running the the main program. If you can tell it to run in the foreground instead of the background that will make things simpler. Otherwise you have to use 'expect fork' or 'expect daemon' ...
null
null
null
null
null
18411
1
18434
2010-12-21T18:21:38.947
3
961
<p>I <a href="https://askubuntu.com/questions/18015/how-do-i-get-a-sb-x-fi-xtreme-audio-ca0110-working">asked a question</a> on how do I get an SB X-Fi Xtreme Audio CA0110 working three days ago. And they told me to install the Alsa driver modules from this website:</p> <p><a href="https://wiki.ubuntu.com/Audio/Instal...
7601
-1
2017-04-13T12:24:13.310
2014-09-30T17:04:09.490
How do I get an SB X-Fi Xtreme Audio CA0110 working again after a kernel update?
[ "drivers", "sound" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-21T18:51:32.960", "id": "19658", "postId": "18411", "score": "1", "text": "you say that you have the audio ppa add to sources.list then do it again this command sudo apt-get install linux-alsa-driver-modules-$(uname -r) for the new kernel and see what happen", "use...
{ "accepted": true, "body": "<p>I've <a href=\"https://lists.launchpad.net/ubuntu-audio-dev/msg00167.html\" rel=\"nofollow\">poked Brad</a> (who has commit access to the <a href=\"http://kernel.ubuntu.com/git?p=bradf/alsa-driver-cod-lucid/.git;a=summary\" rel=\"nofollow\">git tree</a>) and asked for an ABI bump. On...
[ { "accepted": true, "body": "<p>I've <a href=\"https://lists.launchpad.net/ubuntu-audio-dev/msg00167.html\" rel=\"nofollow\">poked Brad</a> (who has commit access to the <a href=\"http://kernel.ubuntu.com/git?p=bradf/alsa-driver-cod-lucid/.git;a=summary\" rel=\"nofollow\">git tree</a>) and asked for an ABI ...
null
null
null
null
null
18413
1
18414
2010-12-21T18:36:14.333
54
14922
<p><a href="https://askubuntu.com/questions/16253/what-gui-toolkit-will-ubuntu-unity-use">This question</a> mentions that Unity will use <a href="http://launchpad.net/nux" rel="nofollow noreferrer">nux</a> as the toolkit. </p> <p>What exactly is nux?</p>
235
-1
2017-04-13T12:24:56.997
2012-07-29T09:06:31.043
What is nux and what's it used for?
[ "unity", "nux" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Nux is a OpenGL based widget toolkit and canvas used to create user interfaces, similar to GTK+. At a high level, nux is broken down into 3 libraries. </p>\n\n<ul>\n<li>NuxCore</li>\n<li>NuxGraphics</li>\n<li>Nux</li>\n</ul>\n\n<p>NuxCore is responsible for basic things like a type s...
[ { "accepted": true, "body": "<p>Nux is a OpenGL based widget toolkit and canvas used to create user interfaces, similar to GTK+. At a high level, nux is broken down into 3 libraries. </p>\n\n<ul>\n<li>NuxCore</li>\n<li>NuxGraphics</li>\n<li>Nux</li>\n</ul>\n\n<p>NuxCore is responsible for basic things like ...
null
null
null
null
null
18416
1
18432
2010-12-21T18:41:13.443
5
519
<p>I am interested in simple managing of audio themes in Ubuntu (10.10). Does anybody know a software for customising/managing/changing Ubuntu audio themes? </p> <p>Thanks for every suggestion. Regards, Vincenzo </p>
5011
3037
2011-01-05T09:05:44.160
2017-02-21T17:27:46.757
Does anybody know software for customising audio themes?
[ "software-recommendation", "sound", "themes" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-21T18:49:29.000", "id": "19657", "postId": "18416", "score": "0", "text": "What's wrong with the built in built in,**system>>preferences>>sound**??", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-21T19:47:47.703", "id": "19...
{ "accepted": true, "body": "<h1><a href=\"https://code.launchpad.net/%7Edavid4dev/sound-theme-manager/rewrite\" rel=\"nofollow noreferrer\">Sound Theme Manager</a></h1>\n<p><a href=\"https://code.launchpad.net/%7Edavid4dev/sound-theme-manager/rewrite\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.c...
[ { "accepted": null, "body": "<p>There is currently no software for customizing these themes, but doing so is simple. If you take a look at the current themes, you will notice that they are defined by a text file.</p>\n\n<p>You can find the specification <a href=\"http://freedesktop.org/wiki/Specifications/s...
null
null
null
null
null
18417
1
null
2010-12-21T18:56:27.583
1
5043
<p>I've just upgraded my graphics card to an Asus Geforce 210 and now my system has no sound. </p> <p>I've ran Update Manager and the Additional Drivers utility which installed the latest Nvida driver. The graphics card is connected to my TV via a DVI-to-HDMI (DVI at the PC end) cable for the visual connection, and an...
7158
1067
2010-12-21T22:26:58.933
2013-03-08T08:40:18.847
No sound after installing a new Graphics Card
[ "10.10", "hardware", "sound", "graphics", "hdmi" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Have you tried changing Hardware used in \"Sound Preferences\".</p>\n\n<p>You can go to <code>System &gt; Preferences &gt; Sound</code>, select the <code>Hardware</code> tab, and choose a differen device from the list named <code>Choose a device to configure</code>.</p>\n\n<p...
null
null
null
null
null
18418
1
null
2010-12-21T19:12:42.123
31
91611
<p>I have run <code>update-alternatives</code> as well as the GNOME <em>Preferred apps</em> selection thing. And all point to have the Chromium browser as the default. Yet, when I run <code>xdg-open http://askubuntu.com</code>, Firefox is launched! Similarly, <a href="https://en.wikipedia.org/wiki/Emacs" rel="noreferre...
72
10883
2020-10-09T13:00:14.290
2021-05-05T00:34:35.797
How can I set which application is launched by 'xdg-open'?
[ "chromium", "default-browser", "xdg-open" ]
5
1
CC BY-SA 4.0
[ { "creationDate": "2016-03-20T00:17:56.200", "id": "1114375", "postId": "18418", "score": "1", "text": "Possible duplicate of [How do I set a new xdg-open setting?](http://askubuntu.com/questions/62585/how-do-i-set-a-new-xdg-open-setting)", "userDisplayName": null, "userId": "52975" } ...
null
[ { "accepted": null, "body": "<p><code>sensible-browser</code> is the command to launch default web browser from the terminal.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-21T19:24:40.563", "id": "19661", "postId": "18421", "score": "0", ...
null
null
null
null
null
18425
1
18426
2010-12-21T19:37:39.473
29
185416
<p>I have an HP laptop with Windows 7 installed.<br> How can I use Ubuntu in full-screen mode via virtualbox or any other software?</p>
7753
8844
2011-04-07T05:57:13.667
2021-03-22T11:45:19.430
How to use Ubuntu in full screen mode on virtualbox?
[ "10.04", "virtualbox", "windows-7", "fullscreen" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li>In virtualbox <strong>[Host Key]</strong> <strong>+ F</strong> works for fullscreening.<br>\n<img src=\"https://i.stack.imgur.com/1Cgvg.png\" alt=\"alt text\"> </li>\n<li>By default your Host key will be <strong>Right Ctrl</strong> in VirtualBox. </li>\n<li>You can als...
[ { "accepted": true, "body": "<ul>\n<li>In virtualbox <strong>[Host Key]</strong> <strong>+ F</strong> works for fullscreening.<br>\n<img src=\"https://i.stack.imgur.com/1Cgvg.png\" alt=\"alt text\"> </li>\n<li>By default your Host key will be <strong>Right Ctrl</strong> in VirtualBox. </li>\n<li>You...
null
null
null
null
null
18428
1
null
2010-12-21T20:38:06.667
2
264
<p>When I compare the icons of Unity in the Ubuntu 10.10 with the icons of Unity in Ubuntu 11.04 the difference is huge. I find the icons in 10.10 more attractive to look at. </p> <p>Is Unity going to use these icons or stick with the current 11.04 ones (which, in my personal opinion, don't look as good)?</p>
null
667
2010-12-22T19:50:36.267
2010-12-22T19:50:36.267
Will Natty have the netbook-edition Icons?
[ "unity", "11.04" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The actual image data of the icons is the same, the following changes have happened between Maverick and Natty in regards to icons.</p>\n\n<p>1) Backlight color picking algorithm has been tweaked to ensure icons contrast at least a little with their background.</p>\n\n<p>2) I...
null
null
null
null
edi
18429
1
18436
2010-12-21T20:56:13.643
3
7991
<p>I'd like to install libpam-ldap to use ldap on a client machine and I was hoping to use</p> <pre><code>sudo apt-get install -qq libpam-ldap </code></pre> <p>to quietly install the package as part of a bash script used to configure a client once Ubuntu installs. However it still comes up with a blue screen GUI aski...
4500
688
2017-08-05T06:09:51.630
2017-08-05T06:09:51.630
How to quietly install LDAP on Ubuntu client
[ "configuration", "apt", "debconf" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You need to set the debconf frontend to noninteractive:</p>\n\n<pre><code> sudo DEBIAN_FRONTEND=noninteractive apt-get install -qq libpam-ldap\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-21T23:24:13.400", "id": "19673", "...
[ { "accepted": null, "body": "<p>You're looking for a way to configure debconf for unattended operation.</p>\n\n<p>In the <a href=\"http://manpages.ubuntu.com/manpages/lucid/man7/debconf.7.html\" rel=\"nofollow\">debconf manpage</a> check out the section on \"Unattended Package Installation\". The same manpa...
null
null
null
null
null
18440
1
null
2010-12-21T23:30:25.783
5
164
<p>I have already successfully installed Ubuntu 10.10 on my laptop and it works fine.</p> <p>I attempted to get my desktop PC to dual boot Windows and Ubuntu but found that neither the 32 or 64 bit install images will boot/install successfully.</p> <p>The startup script locks on 'initializing core #2' (or 1 or 3).. o...
null
235
2011-01-02T07:31:10.913
2011-02-07T12:52:40.557
What can I change/investigate where the install does not complete?
[ "10.10", "dual-boot", "installation", "cpu" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T20:04:01.683", "id": "19779", "postId": "18440", "score": "0", "text": "Did you update the Bios just in case. And also tried putting another hard drive in there and testing with a live cd (Without the actual hard drive you wanted to install it in.)", "userDispla...
null
[ { "accepted": null, "body": "<p>Maybe an alternative...</p>\n\n<p>Any reason why dual boot? It seems there are issues when people try to create a dual boot. I had similar problems. </p>\n\n<p>In the end, I installed Ubuntu, and run Win7 in VMplayer. Works great and does everything I need it to do, with no i...
null
null
null
null
tunist
18444
1
18463
2010-12-21T23:50:23.543
65
178039
<p>When my computer goes to console mode (booting up, shutting down or <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F1)</kbd>), the text is super big. I can't take a screenshot of it, but it looks like a 640 x 480 resolution. My monitor normally works at 1440 x 900.</p> <p>I remember that the console text that appeared whil...
6445
8698
2021-03-07T06:43:05.160
2021-05-09T18:27:12.990
How do I increase console-mode resolution?
[ "display-resolution", "tty" ]
10
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>I've found a solution that works from <a href=\"http://forums.debian.net/viewtopic.php?f=5&amp;t=41881#p2705863\">this forum post</a></p>\n\n<p>In short:</p>\n\n<p>Open <code>/etc/default/grub</code> with your favorite editor as root.</p>\n\n<p>Localize the line that says <code>GRUB_...
[ { "accepted": null, "body": "<p>Just some personal background: in my other computer I have no problem with that fancy mode (it's 160 cols x 60 rows, but it has a 4:3 CRT monitor). It's equipped with a TNT2 (yes, I swear), and that mode was promptly displayed on first boot. Problem is, it does this by loadin...
null
null
null
null
null
18445
1
18447
2010-12-22T00:03:07.610
2
244
<p>I have 2 launchers for an application with the same name but that do different things. I'd like to delete one of them so that the one that comes up in GNOME Do is the right one. </p> <p>The problem is that I don't recall where the launchers are located. </p> <p>In which directories does GNOME Do look?</p>
2331
null
null
2010-12-22T00:10:17.353
In which directories does GNOME Do look?
[ "launcher", "gnome-do", "directory" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Launchers are located in <code>/usr/share/applications/</code> and <code>~/.local/share/applications/</code>.<br>\nSince you created the launchers, they are probably in <code>~/.local/share/applications/</code>.</p>\n", "commentCount": "2", "comments": [ { "creationDate...
[ { "accepted": true, "body": "<p>Launchers are located in <code>/usr/share/applications/</code> and <code>~/.local/share/applications/</code>.<br>\nSince you created the launchers, they are probably in <code>~/.local/share/applications/</code>.</p>\n", "commentCount": "2", "comments": [ { ...
null
null
null
null
null
18449
1
18955
2010-12-22T01:56:46.240
2
591
<p>I'm running the latest version of the proprietary nVidia driver, and I haven't had any problems enabling Compiz effects until a few days ago after tweaking my theming. When I try to enable effects from the Appearance panel, I get this popup window:</p> <p><img src="https://i.stack.imgur.com/mhBP4.png" alt="alt text...
5197
5197
2010-12-22T07:40:35.783
2010-12-27T01:29:43.513
Is there a fix for Jockey failing to download package indexes?
[ "nvidia", "compiz", "appearance", "effects", "jockey" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As it turns out, I was using the US update server rather than the main server; I switched it back under Software Sources and voila! 166 updates and Jockey doesn't gripe anymore.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-05-13T10:39:14.717", ...
[ { "accepted": true, "body": "<p>As it turns out, I was using the US update server rather than the main server; I switched it back under Software Sources and voila! 166 updates and Jockey doesn't gripe anymore.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-05-13T10:...
null
null
null
null
null
18450
1
18481
2010-12-22T01:58:15.263
4
2117
<p>In Karmic, shutter used to have a commandline option called <code>--selection</code>, which I've used in a hack to replace <code>gnome-screenshot</code> with the funcionality of shutter.</p> <p>However, this option doesn't not exist anymore, but instead <code>--select</code> exists... the problem being, that <code>...
null
130
2010-12-22T18:48:51.077
2011-01-21T19:21:10.967
Shutter's --selection command line option is missing
[ "command-line", "shutter" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T02:49:52.427", "id": "19681", "postId": "18450", "score": "0", "text": "What version of Ubuntu/Shutter are you using? I am using the version in the 10.10 repositories and it has the `--selection` option.", "userDisplayName": null, "userId": "114" }, { ...
{ "accepted": true, "body": "<p>I've removed a previously activated PPA for shutter, which appears to have an unstable Beta version of Shutter. Works now.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-22T00:54:35.743", "id": "24518", "postId": "18481", "score...
[ { "accepted": true, "body": "<p>I've removed a previously activated PPA for shutter, which appears to have an unstable Beta version of Shutter. Works now.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-22T00:54:35.743", "id": "24518", "postId": "...
null
null
null
null
user2817
18451
1
18452
2010-12-22T02:18:33.200
15
6155
<p>Usually Linux programs store user's settings in ~/.* directories. But unfortunately some developers (of some applications I need) do not follow this rule and don't start their settings storage folders names with a dot. This results in never-user-used folders cluttering (not the right word perhaps, as there are not m...
2390
2390
2010-12-22T02:42:36.893
2016-04-21T02:11:39.437
How to hide (in Thunar and Nautilus) a directory without putting a dot in its name?
[ "nautilus", "xubuntu", "xfce", "thunar", "hidden-files" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Nautilus <em>(Update: This should also work with Thunar now)</em> will hide any file or folder that is listed in the file <code>.hidden</code> located in the same directory.</p>\n\n<p>There are two ways to hide a folder in Nautilus: </p>\n\n<h2>Nautilus script</h2>\n\n<ol>\n<li><p>S...
[ { "accepted": true, "body": "<p>Nautilus <em>(Update: This should also work with Thunar now)</em> will hide any file or folder that is listed in the file <code>.hidden</code> located in the same directory.</p>\n\n<p>There are two ways to hide a folder in Nautilus: </p>\n\n<h2>Nautilus script</h2>\n\n<ol>\n...
null
null
null
null
null
18453
1
null
2010-12-22T02:40:11.280
0
51
<p>I use Xubuntu on a computer with an Intel 82852/82855GM video card and have a nasty problem with video playback: after some time of playback a video player screen comes just blue, and when I close it my screen is filled with garbage and the system hangs. The workaround I've found is using mplayer with -vo x11 to ren...
2390
114
2010-12-22T04:25:58.937
2010-12-22T04:25:58.937
Are there easier ways to report about malfunctions experienced while using Ubuntu other than using particular bug trackers?
[ "video", "intel-graphics", "xubuntu", "bug-reporting" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>We really encourage you to <a href=\"https://wiki.ubuntu.com/X/Reporting\" rel=\"nofollow\">use the bug tracker</a> even if you aren't sure which package(s) the symptoms affect. <a href=\"https://wiki.ubuntu.com/BugSquad\" rel=\"nofollow\">A dedicated team</a> will triage you...
null
null
null
null
null
18454
1
18521
2010-12-22T02:44:04.137
4
7690
<p>I want to convert a lot of *.flac and some high bitrate *.mp3 files to *.m4a files. I want to use a fixed bitrate of 192kb (stereo) and want to keep the audiotags (except of, obviously, the tag "bitrate" - this sshould nbe set to the correct 192kb.). </p> <p>I'm using 64-bit Maverick.</p> <p>I tried about every ...
3275
866
2010-12-22T15:45:10.507
2014-11-18T08:50:22.680
Howto convert audio files to *.m4a?
[ "10.10", "sound", "conversion", "tagging" ]
2
9
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T03:16:55.457", "id": "19683", "postId": "18454", "score": "4", "text": "Would you please edit your question to list the programs from the Ubuntu repository that you've tried? That would help us narrow which apps to suggest (and even assist in crafting a script).", ...
{ "accepted": true, "body": "<p>I'd stick with ffmpeg. You weren't far off. Here's what I've just used to convert a load of 50-meg flacs to 5-meg m4as, complete with metadata:</p>\n\n<pre><code>find -name \"*.flac\" -exec ffmpeg -ab 192k -i \"{}\" -map_meta_data \"{}.m4a\":\"{}\" \"{}.m4a\" \\;\n</code></pre>\n\n<p...
[ { "accepted": null, "body": "<p>You can try this program, found in the medibuntu repository. It is command line, however it might be just what you need:\n<a href=\"http://packages.medibuntu.org/maverick/aacplusenc.html\" rel=\"nofollow\">http://packages.medibuntu.org/maverick/aacplusenc.html</a></p>\n\n<p>I...
null
null
null
null
null
18462
1
18479
2010-12-22T04:31:30.320
2
2122
<p>I would like to copy or expand my /home directory ... All tutorials talks about moving the home directory from a partition to another but the problem that I only have one partition that was more than 300 gigs (before I resize it and create a new partition) although I see 30 Gigs only on my home directory (4 Gigs lef...
333
null
null
2012-08-28T15:07:17.527
Expanding your home directory size
[ "home-directory", "live-cd", "gparted" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It looks like you have installed Ubuntu under Windows instead of or as well as as a separate partition. This means that when you load Ubuntu (the windows Ubuntu) you only have a very limited amount of space, but your hard drive shows a massive Ubuntu partition with a ton of space whi...
[ { "accepted": true, "body": "<p>It looks like you have installed Ubuntu under Windows instead of or as well as as a separate partition. This means that when you load Ubuntu (the windows Ubuntu) you only have a very limited amount of space, but your hard drive shows a massive Ubuntu partition with a ton of s...
null
null
null
null
null
18466
1
null
2010-12-22T06:34:06.013
2
9436
<p>While booting Ubuntu and mounting my casper-rw file for persistent storage, Ubuntu recommends me to check for errors using fsck. However, when I boot into my system, since the casper-rw is automatially mounted and cannot be unmounted, it refuses to repair errors in my casper file system.</p> <p>Even If I boot witho...
7676
null
null
2012-01-09T15:31:16.927
How can I repair casper-rw file system file in LiveUSB
[ "filesystem", "live-usb", "persistence" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T08:54:02.320", "id": "19700", "postId": "18466", "score": "0", "text": "Could you elaborate a little more on where you got the \"read-only filesystem\" error?", "userDisplayName": null, "userId": "4947" }, { "creationDate": "2012-02-03T00:38:37.693",...
null
[ { "accepted": null, "body": "<p>This seems to be a common issue and has been going for some time. Using the ubuntu-11.04-desktop-i386.iso I am still having issues with this.\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/125702\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/...
null
null
2012-02-03T00:55:52.810
null
null
18468
1
null
2010-12-22T07:04:35.077
2
2421
<p>I'm trying to use mencoder to make a video that has music playing over a single image. I'm using mf to add the image and I always get a video with about one second of audio with a reported length of 0:00. I've tried with a variety of mp3's and images from different sources and I tried using various codecs and option...
7768
null
null
2016-06-23T07:10:27.780
How to add music to an image with mencoder
[ "mencoder" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>It's because the default FPS is set to 30, so mencoder expects 30 images per second -- you have to tell mencoder to use one image for whole record, so you have to set FPS to 1/\"duration\".</p>\n\n<p>Add this options:</p>\n\n<pre><code>-fps 1/132.8 -ofps 30\n</code></pre>\n\n...
null
null
null
null
null
18474
1
18480
2010-12-22T09:00:23.670
3
1483
<p>A friend of mine had Windows 7 and Windows XP running in his Sony Vaio. I replaced Windows XP with Ubuntu 10.10. After that the laptop directly boots into Ubuntu. Even the grub menu does not appear during startup. I tried <code>sudo update-grub</code>, <code>sudo update-burg</code> but windows was not recognized.</p...
4157
null
null
2010-12-22T11:29:18.837
No grub entry for Windows 7 after installing maverick
[ "10.10", "grub2" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li>To restore the Windows 7 bootloader, you must first boot off your 7 installation DVD.</li>\n<li>When you get to the Regional settings, select your Location/Keyboard setting then click next. On the next page you must click on <strong>Repair your computer</strong>.</li>\n<li>On ...
[ { "accepted": null, "body": "<p>Please read through the following <a href=\"http://ubuntuforums.org/showthread.php?t=1035999\" rel=\"nofollow\">link</a>. Hope the 4 &amp; 5 steps can help you.</p>\n\n<p>This is also a very helpful <a href=\"https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWi...
null
null
null
null
null
18482
1
18924
2010-12-22T10:34:21.073
13
16619
<p>I want to increase the scroll area by moving the so-called RightEdge a bit towards the middle. Right now I'm doing this via a one-liner that's called at session start (added via gnome-session-properties):</p> <pre><code>xinput --set-prop --type=int --format=32 11 252 1781 5125 1646 4582 </code></pre> <p>This works...
3037
3037
2010-12-22T18:53:27.213
2013-06-10T20:39:31.033
What's the recommended way to configure a Synaptics touchpad device?
[ "configuration", "touchpad", "input-devices", "synaptics" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><strong>UPDATED WITH TESTED VERSION from 10.10 up to 13.04</strong></p>\n\n<p>Tested on HP dv6000, Sony Vaio NW240, Hp dv5-2130 and Toshiba NB305</p>\n\n<p>Since Ubuntu 10.10 the new <code>xorg.conf</code> configuration is inside the <code>/usr/share/X11/xorg.conf.d</code> directory ...
[ { "accepted": null, "body": "<p>Have you taken a look here <a href=\"https://help.ubuntu.com/community/SynapticsTouchpad\" rel=\"nofollow\">https://help.ubuntu.com/community/SynapticsTouchpad</a> </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-22T13:49:10.133", ...
null
null
null
null
null
18484
1
18687
2010-12-22T10:42:27.350
6
1060
<p>I love fish. I have a nice Ubuntu 8.04 Server running some services. So I edited the /etc/passwd file, as I did in the past, to change my default shell from bash to fish. And ,yes, I made I typo (BTW: I know about chsh, I'm just that stupid and overconfident). Please, stop laughing.</p> <p>As expected, now I can't ...
211
211
2010-12-22T15:48:04.557
2010-12-23T23:09:43.167
Can I log to a non-default shell?
[ "server", "ssh", "login", "command-line", "8.04" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T10:54:16.117", "id": "19714", "postId": "18484", "score": "3", "text": "I don't have a solution for you (suspect you do need to go and physically reboot the machine), but in future you should use `chsh` to change your login shells. It checks that you enter something...
{ "accepted": true, "body": "<p>Unfortunately, no; you've locked yourself out. SSH won't let you log in if the shell is missing. Here's what the attempt looks like in <code>/var/log/auth.log</code>:</p>\n\n<pre><code>Dec 23 15:04:59 ubuntu sshd[5585]: User kees not allowed because shell /bin/fish does not exist\n</...
[ { "accepted": null, "body": "<p>If you want to restore some configuration files back to some previous state, you can always try to edit them, by booting your server with a Live version of some Ubuntu CD, mount the actual partition where the /etc files are located and edit them using vi. </p>\n\n<p>You could...
null
null
null
null
null
18486
1
null
2010-12-22T11:34:21.560
2
225
<p>I haven't been able to get my album art to display in the android app and have been searching for answers all morning. The artwork is in the tags properly, I've tried both mp3 and ogg to no avail. </p> <p>The only thing I was able to find was a post on a google group from Sept 30th saying artwork wasn't supported y...
null
866
2010-12-22T13:22:29.140
2011-03-30T06:34:51.243
Ubuntu One Music app for Android not displaying artwork
[ "ubuntu-one", "music", "android" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-03-30T06:34:51.243", "id": "36645", "postId": "18486", "score": "0", "text": "any news about this?\r\nI just started trying an account since yesterday....but no cover art....", "userDisplayName": null, "userId": "13264" }, { "creationDate": "2012-01-04T19:...
null
[ { "accepted": null, "body": "<p>I think you've answered your own question. 30th September was not that long ago - unless you've seen something elsewhere to suggest this should work then the likelihood is that it is still not yet supported.</p>\n\n<p>Subsonic for Android is a separate application, so what wo...
null
null
null
null
Matt Hewitt
18487
1
18494
2010-12-22T11:47:23.680
2
331
<p>I just discovered the Cheese Webcam Booth, and for all practical intents and purposes, it is perfect for what I want to do in shooting videos of myself playing my electric guitar. I am using my BOSS GT-10 effects processor as my external USB soundcard, and on my videos, my guitar comes through like a champ. My probl...
7775
527764
2017-02-21T17:34:54.270
2017-02-21T17:34:54.270
How do I get musical backing tracks to be heard in videos I take with Cheese?
[ "video", "sound", "music" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You will need the pulseaudio volume control application - <a href=\"http://packages.ubuntu.com/pavucontrol\" rel=\"nofollow noreferrer\">pavucontrol</a>. Once you have this installed, open cheese, and the program you wish to record from (for example, rhythmbox). Begin recording a vid...
[ { "accepted": true, "body": "<p>You will need the pulseaudio volume control application - <a href=\"http://packages.ubuntu.com/pavucontrol\" rel=\"nofollow noreferrer\">pavucontrol</a>. Once you have this installed, open cheese, and the program you wish to record from (for example, rhythmbox). Begin recordi...
null
null
null
null
null
18491
1
18496
2010-12-22T12:23:45.850
1
1742
<p>I installed nagios3 on ubuntu server 10.04.1. It was working fine.</p> <p>Today, I found it stopped and when I tried to start it using <code>sudo /etc/init.d/nagios3 start</code>, it did not start. I found this in the log file:</p> <pre><code>Nagios 3.2.0 starting... (PID=11729) Local time is Wed Dec 22 14:15:31 2...
5927
41
2010-12-22T13:16:09.507
2015-02-16T21:54:24.257
Nagios3 crashes with SIGSEGV
[ "10.04", "server", "nagios3" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I've seen a couple of <a href=\"http://forums.meulie.net/viewtopic.php?f=61&amp;t=5348&amp;start=0\" rel=\"nofollow\">cases</a> of <a href=\"http://www.mail-archive.com/nagios-users@lists.sourceforge.net/msg32829.html\" rel=\"nofollow\">people</a> with this problem.</p>\n\n<p>No-one ...
[ { "accepted": true, "body": "<p>I've seen a couple of <a href=\"http://forums.meulie.net/viewtopic.php?f=61&amp;t=5348&amp;start=0\" rel=\"nofollow\">cases</a> of <a href=\"http://www.mail-archive.com/nagios-users@lists.sourceforge.net/msg32829.html\" rel=\"nofollow\">people</a> with this problem.</p>\n\n<p...
null
null
null
null
null
18493
1
18515
2010-12-22T12:53:20.737
6
1589
<p>Switched my sister to Ubuntu because I got tired of re-installing the other OS every 6 months. Now she managed to get some malware in her Firefox on Ubuntu. Without access to the computer (or when I get it next week), where should I look, what questions can I ask, what could I tell a computer novice to try over the...
49
235
2010-12-22T14:27:34.720
2010-12-22T15:18:56.000
Where should I start in tracking down Firefox malware
[ "10.04", "firefox", "viruses", "malware" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I don't think there's much value in tracking down exactly what the problem is. Of course there is always <em>some</em> value but I can't guarantee you'll ever find out what the problem is.</p>\n<p>In Etcher-Sketch terms, it's easier to just shake it until you have a blank canvas and ...
[ { "accepted": null, "body": "<p>Can you have her install a different browser to keep her going in the short term?</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-22T16:01:31.707", "id": "19743", "postId": "18512", "score": "0", "tex...
null
null
null
null
null
18495
1
18524
2010-12-22T13:06:00.120
265
523882
<p>Every second e-mail I get suggests to download Adobe Acrobat reader, but <a href="https://get.adobe.com/de/reader/otherversions/" rel="noreferrer">adobe.com doesn’t provide a Linux version</a>.</p> <p>Which PDF Viewer are there available for Ubuntu?<br> I’m fine with partial solutions, a perfect match however would...
7155
527764
2018-05-13T08:49:23.503
2022-01-23T13:15:37.683
What PDF viewers are available for Ubuntu?
[ "software-recommendation", "software-center", "pdf" ]
12
7
CC BY-SA 4.0
[ { "creationDate": "2015-07-01T23:25:42.433", "id": "921429", "postId": "18495", "score": "47", "text": "I often find these questions very useful. Just because it is not a clear cut answer I don't think they need to be closed. Its hard to give an unbiased opinion but you often get a quick survey ...
{ "accepted": true, "body": "<h1>Lightweight</h1>\n<ul>\n<li><p><a href=\"https://wiki.gnome.org/Apps/Evince\" rel=\"noreferrer\"><strong>evince</strong></a> - the default document viewer on Gnome/Ubuntu, with support for PDF, PostScript, and <a href=\"https://help.gnome.org/users/evince/stable/formats.html.en\" re...
[ { "accepted": null, "body": "<p>Try Adobe's own Adobe Reader 9</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-22T15:19:08.840", "id": "19733", "postId": "18497", "score": "1", "text": "Adobes acrobat is very good on linux though, i...
2010-12-22T16:51:08.423
null
null
null
null
18498
1
18500
2010-12-22T13:10:38.600
10
2298
<p>While using <a href="http://gramps-project.org/">an open source genealogy program</a> I encountered an error. I submitted <a href="http://www.gramps-project.org/bugs/view.php?id=4476">a bug report</a> and the author quickly fixed the problem (Yay for open source!).</p> <p>Now I want off course to try the latest rel...
6721
14772
2011-08-04T13:18:49.867
2011-08-04T13:18:49.867
How to upgrade to a newer version of a package than is available in the repository?
[ "package-management", "apt" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>In this particular case then the GRAMPS website provides a download link for a Ubuntu .deb package of version 3.2.5.</p>\n\n<p>On <a href=\"http://sourceforge.net/projects/gramps/files/Stable/3.2.5/\" rel=\"nofollow\">this listing page</a> select <a href=\"http://sourceforge.net/proj...
[ { "accepted": null, "body": "<p>Go for 1st => remove the version I have currently installed with the package manager. Download the source of the newest version and compile it myself? </p>\n\n<p>Will this give problems when newer versions come out? => No. </p>\n\n<p>Will I have to update this program manuall...
null
null
null
null
null
18502
1
25910
2010-12-22T13:22:35.760
3
2145
<p>I use Opera and have a setup with two monitors. If I want to open a new URL <code>opera -newwindow URL</code>. The outcome differs, if I execute this command in a program on the same screen where Opera is, or on the other.</p> <p>On the same screen everything is fine. I get the message <code>opera: Activated runnin...
6037
1067
2010-12-27T13:21:10.347
2011-02-12T02:23:45.327
How to solve this problem starting new Opera-windows on dual monitor-setup?
[ "opera" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Opera stores it's profiles in ~/.opera --- </p>\n\n<p>You could be able to run opera in a terminal or create a <strong>script</strong> by disabling the file lock - it's not really a biggie since we'll be disabling the mail database.</p>\n\n<pre><code>mv /home/username/.opera/lock ../...
[ { "accepted": true, "body": "<p>Opera stores it's profiles in ~/.opera --- </p>\n\n<p>You could be able to run opera in a terminal or create a <strong>script</strong> by disabling the file lock - it's not really a biggie since we'll be disabling the mail database.</p>\n\n<pre><code>mv /home/username/.opera/...
null
null
null
null
null
18509
1
18510
2010-12-22T13:42:41.337
8
376
<p>How can I make another pdf viewer standard for pdf files in Ubuntu?</p>
7155
114
2010-12-22T20:30:05.313
2010-12-23T06:59:15.857
How can I make another pdf viewer default for pdf files?
[ "pdf", "default" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can right-click on a .pdf file, then go to 'Properties' --> 'Open with' tab and select the application that you want.</p>\n\n<p><img src=\"https://i.stack.imgur.com/7Vhdp.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "con...
[ { "accepted": true, "body": "<p>You can right-click on a .pdf file, then go to 'Properties' --> 'Open with' tab and select the application that you want.</p>\n\n<p><img src=\"https://i.stack.imgur.com/7Vhdp.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate"...
null
null
null
null
null
18517
1
19362
2010-12-14T22:37:24.667
8
3886
<p>Whenever I plug my iPod Touch (2nd gen) into my MacBook running Ubuntu 10.10 I get the following error:</p> <blockquote> <p>DBus error org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)</p> </blockquote> <p>It will show up in the file browser but whenever I try to mount ...
4724
1067
2011-01-17T16:05:56.987
2011-01-28T22:17:41.690
Error when plugging iPod Touch into MacBook
[ "10.10", "ipod", "macbook" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-28T22:13:08.727", "id": "20469", "postId": "18517", "score": "0", "text": "I get this same error. Are you running iOS 4.2.1 on your iPod touch? If so, that's the issue. Apple changed something inbetween 4.1 and 4.2.1.", "userDisplayName": null, "userId": "6005"...
{ "accepted": true, "body": "<p>Well, it seems that since I am running 4.2.1, it just isn't possible.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-30T03:47:55.353", "id": "19362", "lastActivityDate": "2010-12-30T03:...
[ { "accepted": true, "body": "<p>Well, it seems that since I am running 4.2.1, it just isn't possible.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-30T03:47:55.353", "id": "19362", "lastActivity...
null
null
null
null
Mr. Man
18520
1
18530
2010-12-22T16:08:47.227
15
22477
<p>I have files in .kml format. In windows 7 I opened them with Google Earth, but Google earth for Linux wrongly determines the place of workout on map. </p> <p>What application can I use to work with these files? </p>
5450
527764
2017-05-15T10:26:47.563
2017-05-15T10:26:47.563
Where can I get an application to work with my kml files?
[ "software-recommendation", "google-earth" ]
6
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can view them online with <a href=\"http://www.gpsvisualizer.com/\" rel=\"nofollow noreferrer\">GPS Visualizer</a>. You load them directly with Viking GPS Analyser. </p>\n\n<p>You can also convert them to GPX files using Viking or GPSBabel. Both are available from the Ubuntu r...
[ { "accepted": null, "body": "<p>If you're having problems with Google Earth in Ubuntu then you could try using Google Maps to view your .kml files.</p>\n\n<p>As <a href=\"http://googlemapsapi.blogspot.com/2006/11/kml-on-google-maps.html\" rel=\"nofollow\">detailed on one of the Official Google blogs</a>:</p...
null
null
null
null
null
18523
1
null
2010-12-22T16:23:11.027
17
13864
<p>I've got Ubuntu 10.10 installed to use my whole hard-disk, but would like to use the 130GB of free space I've got to create a new partition and do some development on Unity and Natty.</p> <p>Can I use gparted to do this? If so how?</p>
347
169736
2014-01-12T16:49:30.067
2014-01-12T16:49:30.067
How do I resize my current ubuntu partition?
[ "partitioning", "gparted" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2014-01-12T16:54:34.147
null
null
18526
1
18533
2010-12-22T16:27:24.540
3
849
<p>I have an issue, we are moving to a production build server now. I need a virtual machine up and running on my Ubuntu 10.10 server edition. I have to setup and install various tool and plugins, on this windows 7 virtual machine as well</p> <p>The problem I am facing is how do I install windows 7 on this machine ( u...
333
866
2010-12-22T16:33:49.867
2011-01-18T00:21:28.413
Windows 7 Virtualized on Ubuntu Server
[ "10.10", "server", "virtualbox", "windows-7", "virtualization" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If I understand you correctly the problem is likely that you lack the VirtualBox GUI.</p>\n\n<p>VirtualBox has a quite powerful command line. You can create your machine with:</p>\n\n<pre><code>VBoxManage createvm Name\n</code></pre>\n\n<p>You will need to use</p>\n\n<pre><code>VBoxM...
[ { "accepted": true, "body": "<p>If I understand you correctly the problem is likely that you lack the VirtualBox GUI.</p>\n\n<p>VirtualBox has a quite powerful command line. You can create your machine with:</p>\n\n<pre><code>VBoxManage createvm Name\n</code></pre>\n\n<p>You will need to use</p>\n\n<pre><co...
null
null
null
null
null
18528
1
null
2010-12-22T16:39:06.553
2
826
<p>Is there any way to turn off window grouping with dockbarx? I use the Prism app to create standalone windows for gmail, my corporate webmail, and a few other sites. Because they all use Prism, instead of displaying as separate shortcuts with the custom icons I assigned to each when creating them, they all display to...
2664
null
null
2010-12-27T19:12:49.113
can I turn off window grouping with dockbarx?
[ "dockbarx", "prism" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T17:40:36.087", "id": "19754", "postId": "18528", "score": "0", "text": "Currently they are working on it.It will be available in next release.", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-22T18:12:27.687", "id": "1976...
null
[ { "accepted": null, "body": "<p>Unfortunately, I was unable to find an option to disable this behaviour, and I would suggest you report a bug to the dockbarx developers (if you don't want to let me know and I'll do it). The only option I could find was to show a window list, but since you are using launcher...
null
null
null
null
null
18531
1
null
2010-12-22T16:53:37.020
3
25139
<p>I installed Ubuntu via usb with no problems, but when I restart, I get an error message: </p> <pre><code>error out of disk" 'grub rescue. </code></pre> <p>How can I fix this?</p>
null
169736
2014-07-25T11:45:24.610
2014-07-25T11:45:24.610
Error out of disk, grub rescue
[ "grub2" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-22T17:05:14.993", "id": "19747", "postId": "18531", "score": "1", "text": "May be you are out of disk space.Boot from a live cd and post the output of **sudo df -h** also post the results of [bootscript](http://bootinfoscript.sourceforge.net/)", "userDisplayName": ...
null
[ { "accepted": null, "body": "<p>Apparently this error occurs when GRUB can't find a usable grub.cfg. Since the boot configuration isn't there, GRUB drops you to the grub-rescue prompt. Following <a href=\"https://help.ubuntu.com/community/Grub2#Rescue%20Mode\" rel=\"nofollow\">these instructions</a> you sho...
null
null
null
null
Dre
18532
1
24653
2010-12-22T16:55:06.463
6
5147
<p>My pc has an Intel DH57JG mainboard, I've installed wine, launching sketchup I receive error that I don't have OpenGL installed, is there a way to configure/install it? On my previous pc with an NVidia video card installing official NVidia driver resolved it. Is there is a way to do the same with the Intel card?</p>...
4546
1067
2011-02-03T20:38:06.543
2011-02-18T09:21:30.657
How to make Google SketchUp work with Intel graphics in Wine?
[ "10.10", "wine", "intel-graphics", "opengl" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T17:17:37.537", "id": "19748", "postId": "18532", "score": "0", "text": "sounds to me like wine cannot find the required libraries.\nrun `locate libgl*` in a terminal and attach the output to your question.", "userDisplayName": null, "userId": "1992" } ]
{ "accepted": true, "body": "<p>I've installed SketchUp 8 and had the same error.</p>\n\n<p>Here's how I got it to work:</p>\n\n<ul>\n<li><p>Open a Terminal, or press <kbd>Alt</kbd>+<kbd>F2</kbd> and type </p>\n\n<pre><code>wine regedit\n</code></pre></li>\n<li><p>Navigate to HKEY_CURRENT_USER → Software → Google →...
[ { "accepted": true, "body": "<p>I've installed SketchUp 8 and had the same error.</p>\n\n<p>Here's how I got it to work:</p>\n\n<ul>\n<li><p>Open a Terminal, or press <kbd>Alt</kbd>+<kbd>F2</kbd> and type </p>\n\n<pre><code>wine regedit\n</code></pre></li>\n<li><p>Navigate to HKEY_CURRENT_USER → Software → ...
null
null
null
null
null
18537
1
18589
2010-12-22T17:51:29.070
4
12671
<p>When i try to login it takes about 2 to 4 minutes and after that it shows an error that says:</p> <blockquote> <p>P2P connect failed.</p> </blockquote> <p>Note that Skype was working with me yesterday.</p> <p>Thanks in advance</p>
7601
3037
2011-01-06T18:23:27.667
2015-09-21T14:52:24.543
How can I fix the login error (P2P connect failed) on Skype?
[ "skype" ]
5
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T18:06:14.603", "id": "19762", "postId": "18537", "score": "1", "text": "Type the following in your terminal `rm -rf ~/.Skype`,this will delete all your settings but then it works.", "userDisplayName": null, "userId": "5691" } ]
{ "accepted": true, "body": "<p>The Skype server takes the IP addresses of all logged in users and exchanges them to those wishing to connect. If the Skype program had the ability to either accept an IP address or loads the last used IP address, the Skype server need not be invoked for a simple P2P connection unles...
[ { "accepted": null, "body": "<p>This actually isn't Ubuntu related, they've had <a href=\"http://news.cnet.com/8301-13506_3-20026408-17.html\">outages all day</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "...
null
null
null
null
null
18538
1
null
2010-12-22T17:54:23.543
1
1993
<p>I have been wanting to try Natty Narwhal really bad. So about a week ago I tried it, and it was not at all stable. I know it's still in development but I desperately want Unity, I even reorganized my gnome panel with dockbarx and gnome window applets to try to emulate Unity. I tried Maverick early and it was great. ...
7333
null
null
2010-12-22T18:24:06.623
When will Natty Narwhal 11.04 be stable to use?
[ "11.04" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>When it's released.</p>\n\n<p>I don't mean to sound snide because I'm being serious. No pre-release version is recommended for production use. It may crash and break everything.</p>\n\n<p>If you don't care about minor glitches, the beta releases and release candidates in late...
null
null
2010-12-22T19:43:30.547
null
null
18543
1
18674
2010-12-22T18:37:04.237
1
292
<p>Is there a way to have the start up sound wait like I did in conky like this?</p> <pre><code>#!/bin/bash sleep 30 </code></pre> <p>Not that its a big deal but my comp boots so fast it does not have time to play the small ogg file i have as the start up sound. Or any other ideas on what i can do to get it to play...
4622
235
2010-12-22T18:41:47.010
2010-12-23T21:53:40.003
Can I set a delay on startup sounds?
[ "startup", "shutdown" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Shutdown sounds were removed from Gnome, unfortunately. As for startup sounds, they should play fine (you shouldn't need to delay them; they'll continue to play after your desktop is available).</p>\n\n<p>In <em>System / Preferences / Startup Applications</em> verify that \"GNOME Log...
[ { "accepted": true, "body": "<p>Shutdown sounds were removed from Gnome, unfortunately. As for startup sounds, they should play fine (you shouldn't need to delay them; they'll continue to play after your desktop is available).</p>\n\n<p>In <em>System / Preferences / Startup Applications</em> verify that \"G...
null
null
null
null
null
18545
1
18553
2010-12-22T19:12:06.207
54
106319
<p>I ran the following code and got this package needs these packages, now it also says these packages are suggested, and theses are recommended. How do I get those up to install as well.</p> <pre><code>myusuf3@purple:/etc$ sudo apt-get install virtualbox-4.0 Reading package lists... Done Building dependency tree ...
333
169736
2014-02-21T13:35:10.873
2023-11-08T09:37:07.950
Installing suggested/recommended packages?
[ "apt" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Recommends are installed by default (since Lucid). To negate this for a specific package, use <code>apt-get --no-install-recommends install pkg</code>. Suggests, however, are not. You can install the suggests for a single package installation by using <code>apt-get -o APT::Install-Su...
[ { "accepted": null, "body": "<p>Add the option <code>--install-recommends</code> to your command:</p>\n\n<pre><code>sudo apt-get --install-recommends install virtualbox-4.0 \n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2014-10-26T22:40:55.930", "id":...
null
null
null
null
null
18546
1
null
2010-12-22T19:13:35.223
1
417
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/17606/how-to-fix-gpg-error-badsig-while-running-apt-get-update">How to fix GPG error/BADSIG while running apt-get update?</a> </p> </blockquote> <p>I'm most frustrated at not being able to get rid of the BADSIG/GPG...
6977
10616
2017-11-29T20:08:48.520
2017-11-29T20:08:48.520
Why does BADSIG/GPG error keep appearing again and again?
[ "update-manager", "repository", "software-sources", "gnupg" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
0
2011-09-14T14:41:52.107
null
null
18547
1
null
2010-12-22T19:15:50.117
9
15532
<p>My built-in microphone doesn't seem to be detected, because I cannot use it to record my voice in Audacity and it's also not working in Skype.</p> <p>Any solution for my problem?</p> <p>Laptop: Axioo MNC</p>
5922
3037
2011-01-03T23:40:41.163
2011-09-16T13:55:51.277
Built-in microphone not detected?
[ "10.04", "microphone" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T20:29:12.173", "id": "19783", "postId": "18547", "score": "2", "text": "Did you check that the proper device is set in the input device tab of sound settings ?", "userDisplayName": null, "userId": "742" }, { "creationDate": "2010-12-22T21:53:39.063",...
null
[ { "accepted": null, "body": "<p>As suggested by the comments: make sure that you have set the microphone as input sound device in the sound preferences.</p>\n\n<ul>\n<li>To open the sound preferences, click on the sound indicator applet in the top right corner:\n<br><br><img src=\"https://img.xrmb2.net/imag...
null
null
null
null
null
18557
1
18559
2010-12-22T21:18:22.070
4
329
<p>With the introduction of Ubuntu Software Centre, I remember reading, though I can't find any reliable source right now, that the various package managers were going to eventually be deprecated. Indeed, Gdebi is no longer a part of the default installation, and I heard that Synaptic was scheduled to the removed in th...
null
10966
2011-03-14T17:10:51.857
2014-06-29T14:24:09.727
What will be the default set of package management tools in future versions of Ubuntu?
[ "package-management", "apt", "software-center", "aptitude", "synaptic" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The Software Centre is a graphical application. As it stands at present there would be very little point in effort being put into a CLI version of the Software Centre when polished alternatives exist.</p>\n\n<p>It is certainly possible Synaptic will be removed from a default install ...
[ { "accepted": true, "body": "<p>The Software Centre is a graphical application. As it stands at present there would be very little point in effort being put into a CLI version of the Software Centre when polished alternatives exist.</p>\n\n<p>It is certainly possible Synaptic will be removed from a default ...
null
null
null
null
user2405
18560
1
18562
2010-12-22T21:50:40.373
9
3418
<p>I want to try out Ubuntu (and hopefully choose it as my primary OS). After looking at many versions of it in VirtualBox and from Live CD, I've finally decided to install it.</p> <p>So I defragmented and shrinked one of the partitions to make room for Ubuntu.<br> My current setup (after shrinking the D: partition):<...
3268
3268
2010-12-23T06:01:17.007
2013-02-06T14:03:34.633
How to avoid problems when installing Ubuntu and Windows 7 in dual-boot?
[ "10.10", "partitioning", "windows-7", "dual-boot", "grub2" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Most of the scare your read about comes from an unlucky installation message from Grub that misled users to install Grub to their Windows partition boot sectors thus making Windows unbootable. As this is fixed now there is only a small risk left. </p>\n\n<p>If you take care <strong>n...
[ { "accepted": true, "body": "<p>Most of the scare your read about comes from an unlucky installation message from Grub that misled users to install Grub to their Windows partition boot sectors thus making Windows unbootable. As this is fixed now there is only a small risk left. </p>\n\n<p>If you take care <...
null
null
null
null
null
18564
1
18565
2010-12-22T22:31:41.213
8
1983
<p>OK, so for the past 2 days my Ubuntu Install (10.10) has been acting in a very strange manner.</p> <p>Just after the login process is done, and the desktop is loading everything seems to be fine, it is fast and smooth like always, but then some 5 mins. later, it gets all choppy and slow, the mouse pointer it's slow...
4203
-1
2017-04-13T12:24:27.937
2010-12-23T04:41:27.927
Is My Filesystem Corrupt or Something?
[ "filesystem", "performance" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Since you say it runs fine for five minutes, that's your window of opportunity to get some monitoring tools running.</p>\n\n<p>First, install iotop and htop :</p>\n\n<blockquote>\n <p>sudo apt-get install iotop htop</p>\n</blockquote>\n\n<p>Then start a terminal for each and run the...
[ { "accepted": true, "body": "<p>Since you say it runs fine for five minutes, that's your window of opportunity to get some monitoring tools running.</p>\n\n<p>First, install iotop and htop :</p>\n\n<blockquote>\n <p>sudo apt-get install iotop htop</p>\n</blockquote>\n\n<p>Then start a terminal for each and...
null
null
null
null
null
18566
1
null
2010-12-22T22:44:36.410
5
24071
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/88384/how-can-i-repair-grub-how-to-get-ubuntu-back-after-installing-windows">How can I repair grub? (How to get Ubuntu back after installing Windows?)</a> </p> </blockquote> <p>So I had a dual boot, with Windows, a...
3889
-1
2017-04-13T12:25:12.207
2011-11-12T21:05:48.170
How do I restore Grub after Windows has deleted it
[ "grub2", "dual-boot" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T22:51:49.593", "id": "19798", "postId": "18566", "score": "1", "text": "Technically windows didn't write over grub, it's still there, you just have to tell bios to use the linux partition instead of the windows partition. Also, while not technically an answer you're...
null
[ { "accepted": null, "body": "<p>There is <a href=\"https://help.ubuntu.com/community/Grub2#Reinstalling%20from%20LiveCD\">quite a comprehensive guide</a> on the Ubuntu wiki that should work for you. I suggest giving that a go.</p>\n", "commentCount": "1", "comments": [ { "creationDate"...
null
null
2013-01-11T13:08:13.027
null
null
18575
1
21491
2010-12-23T04:15:04.060
2
551
<p>I have an Ubuntu laptop that stops responding when booting up. It will change between consoles with ctrl-alt-FN but pressing enter in the console would not even enter a blank line. The last printed line when booting up in recovery mode was "Skipping EDID probe due to cached edid". Any ideas what might be wrong?</p> ...
2623
25798
2012-07-09T13:35:07.890
2012-07-09T13:35:07.890
Laptop freezes on boot, not sure where to start
[ "boot" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T14:42:52.940", "id": "19854", "postId": "18575", "score": "0", "text": "Can you select rescue mode in GRUB's boot menu? It has some options for trying to fix your X config.", "userDisplayName": null, "userId": "136" }, { "creationDate": "2010-12-23T...
{ "accepted": true, "body": "<p>It turned out to be an upgrade that wasn't finished. I started in rescue mode and run the command to finish the upgrade. Then it worked.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-14T10...
[ { "accepted": null, "body": "<p>Same problem with ubuntu 10.10. \nPartial solution might be pressing <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F1</kbd> when Bootsplash appears and then pressing enter. \nWorks for me..</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "co...
null
null
2012-05-16T19:31:42.350
null
null
18576
1
18600
2010-12-23T04:41:21.187
2
3101
<p>I recently bought a dell vostro 3400 i3 with 4 gb ram. Everything works smooth as silk and I am using maverick but I can't get two finger scrolling and multiple gestures such as zoom etc which it says it supports. Can anyone help ? I have installed gsynaptics and enabled scrolling yet it doesnot work.</p>
1543
235
2010-12-23T04:44:44.367
2010-12-23T11:22:26.730
Vostro 3400 touchpad multiple gesture and two finger scrolling not working
[ "multi-touch", "touchpad", "dell" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>My Toshiba U400 has the same problem. Even install gpointing-device-settings didn't work, although at least the option to enable it wasn't greyed out there.</p>\n\n<p>In the end, I found this <a href=\"http://ubuntuforums.org/showthread.php?t=1443291\" rel=\"nofollow\">forum post</a...
[ { "accepted": true, "body": "<p>My Toshiba U400 has the same problem. Even install gpointing-device-settings didn't work, although at least the option to enable it wasn't greyed out there.</p>\n\n<p>In the end, I found this <a href=\"http://ubuntuforums.org/showthread.php?t=1443291\" rel=\"nofollow\">forum...
null
null
null
null
null
18587
1
19349
2010-12-23T07:54:45.290
4
1707
<p>I'm going to add SSD disk to my Ubuntu computer. Is there any known problems with PCI-E based SSD disks in Ubuntu (<a href="http://www.ocztechnology.com/products/solid-state-drives/pci-express/revodrive/ocz-revodrive-pci-express-ssd-.html" rel="nofollow">this</a>, for instance)? Or should I prefer SSD disk with SATA...
1900
235
2010-12-23T15:03:06.610
2010-12-30T01:07:48.250
Is there any known problems with PCI-E based SSD disks?
[ "10.10", "server", "hardware", "compatibility", "ssd" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are indeed some PCI Express SSDs that don't work well, but most of them do. They are basically a RAID controller with discs on one card you see, so same as with raid controllers: The more expensive ones generally work, the cheaper one's may not work perfectly.</p>\n\n<p>You sho...
[ { "accepted": null, "body": "<p>I would strongly recommend you upgrade to 10.10.</p>\n\n<p>I don't own an SSD myself, but I have heard much talk about the 'TRIM' function, support for which was <a href=\"http://en.wikipedia.org/wiki/TRIM#Operating_system_and_SSD_support\" rel=\"nofollow\">only relatively re...
null
0
null
null
null
18592
1
18610
2010-12-23T09:25:50.683
7
3343
<p>I use "Connect to server" option to sftp to remote computers, as a user which has sudoer privileges. But then, I cannot get root privileges to modify system files. How can I do this?</p> <p>(I know i can use ssh and then use sudo, but I was wondering if there's a quicker method.)</p>
7729
235
2010-12-23T15:06:57.370
2010-12-23T15:06:57.370
Get root privileges for nautilus on sftp connection
[ "nautilus", "ssh", "root", "sftp" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Hya, bad news for you. The short answer is that you can't — you get the privileges of the user you logged in as.</p>\n\n<p>The long answer follows herewith… The 'connect to server' option is nothing but a pretty gui that issues simple sftp commands under the hood, once connected to a...
[ { "accepted": true, "body": "<p>Hya, bad news for you. The short answer is that you can't — you get the privileges of the user you logged in as.</p>\n\n<p>The long answer follows herewith… The 'connect to server' option is nothing but a pretty gui that issues simple sftp commands under the hood, once connec...
null
null
null
null
null
18593
1
18657
2010-12-23T09:32:11.890
11
5712
<p>We run several ubuntu virtual machines on ESX server. </p> <p>In ubuntu, there are various kernels available:</p> <ul> <li>linux-generic-pae</li> <li>linux-generic</li> <li>linux-server</li> <li>linux-virtual</li> </ul> <p>Which one is the best choise for a virtual machine running on ESX?</p>
2336
235
2010-12-23T15:03:49.107
2017-09-05T17:24:31.037
Which kernel to use for server VM running on ESX
[ "server", "kernel", "virtualization", "vmware" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T16:08:42.753", "id": "19876", "postId": "18593", "score": "0", "text": "What are the virtual machines going to do?. Desktop, servers?. Will they need some kind of special drivers?.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2011...
{ "accepted": true, "body": "<p>Let's try to explain the main differences between the kernels that you listed:</p>\n\n<ul>\n<li><p>linux-generic: This is the normal Ubuntu kernel. The one that the distro uses as default.</p></li>\n<li><p>linux-generic-pae: This is the generic kernel with <a href=\"http://en.wikiped...
[ { "accepted": true, "body": "<p>Let's try to explain the main differences between the kernels that you listed:</p>\n\n<ul>\n<li><p>linux-generic: This is the normal Ubuntu kernel. The one that the distro uses as default.</p></li>\n<li><p>linux-generic-pae: This is the generic kernel with <a href=\"http://en...
null
null
null
null
null
18594
1
18597
2010-12-23T09:34:27.973
5
4469
<p>It doesn't matter if utility is for Ubuntu or for Windows XP/7, just need to see what pc is using the most traffic in local network.</p> <p>Probably some spammer etc on that pc.</p> <p>Need to get rid of that, before calling to my ISP.</p>
7810
169736
2013-12-26T23:51:12.570
2014-06-21T13:05:44.437
Utility/Sniffer to track internet traffic/speed of all PCs in local network
[ "network-monitoring" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-23T09:35:58.997", "id": "19828", "postId": "18594", "score": "1", "text": "What about wireshark??", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-23T09:52:10.893", "id": "19829", "postId": "18594", "score": "0", ...
{ "accepted": true, "body": "<p>Wireshark will work if you can span a gateway connection in order to see <em>all</em> the PCs traffic. Otherwise, you'll only see your own.</p>\n\n<p>If your PCs support SNMP, I think your best bet will be a tool like <a href=\"http://www.cacti.net/\" rel=\"noreferrer\">Cacti</a>. ...
[ { "accepted": null, "body": "<p><a href=\"http://www.wireshark.org/\" rel=\"nofollow\">Wireshark</a> is the superb tool for doing this. And <a href=\"http://www.debianhelp.co.uk/networktools1.htm\" rel=\"nofollow\">HERE</a> is the list of all the tools you'l ever need, such as:</p>\n\n<ul>\n<li>BWM - BandWi...
null
null
null
null
null
18596
1
23155
2010-12-23T10:12:18.533
4
631
<p>I have two monitors and I want my wacom to only work on one monitor.</p>
7601
235
2011-01-29T05:47:23.433
2011-01-29T05:47:23.433
How do I make my intous 4 wacom affect only one Monitor?
[ "xorg", "input-devices", "wacom", "graphics-tablet" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>That's not currently possible with Ubuntu. You'd need to program xorg to focus one core pointer towards one specific screen and I don't know of any way that's possible.</p>\n\n<p>You could however suggest it as a feature for xorg by reporting a bug:</p>\n\n<p><a href=\"https://help.u...
[ { "accepted": true, "body": "<p>That's not currently possible with Ubuntu. You'd need to program xorg to focus one core pointer towards one specific screen and I don't know of any way that's possible.</p>\n\n<p>You could however suggest it as a feature for xorg by reporting a bug:</p>\n\n<p><a href=\"https:...
null
null
null
null
null
18599
1
null
2010-12-23T10:52:52.150
3
2963
<p>I have multiple 3G USB based Modems. I would like them to keep connected simultaneously, NOT necessarily aggregating their bandwidth; a separate intelligent application would manage their utilization effectively.</p> <p>However I am running into problem of setting up proper routes for the ppp0,ppp1 interfaces: when...
6323
236
2013-01-12T23:12:08.997
2020-06-25T16:18:25.973
Dialing into multiple PPP connections
[ "networking", "network-manager", "modem-manager", "ppp" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-08T11:36:49.550", "id": "27615", "postId": "18599", "score": "0", "text": "Hello, I have the same problem. network-manager doesn't allow me to choose both the connections, so I'm trying to use wvdial. I'd really appreciate some insight on this matter.", "userDispla...
null
[ { "accepted": null, "body": "<p>You may wish to try configuring your mobile connections with a simple tweak: checking the <em>Use this connection only for the resources on its network</em> checkbox, which is hidden a little far unfortunately:</p>\n\n<p>Under the settings for your connection, go to the IPv4 ...
null
null
null
null
null
18601
1
18613
2010-12-23T11:23:14.247
3
1116
<p>This has been bugging me for a while, and I can't find any preference settings that are affecting it, but:</p> <p>On one install of Ubuntu/Gnome I've been able to drag applications in the bottom panel across to one of the virtual desktops and it would move there.</p> <p>However, with the install I'm using on a dif...
5826
4776
2010-12-24T12:48:44.477
2010-12-24T12:48:44.477
Can't drag/drop applications to a different desktop
[ "10.10", "gnome", "workspaces" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I'm going to take a guess and suppose you were using metacity on the older system, and are now using compiz.</p>\n\n<p>Compiz works a bit differently with the GNOME-panel, and you can't drag the applications on the panel to a new workspace. You can however, drag the application by th...
[ { "accepted": true, "body": "<p>I'm going to take a guess and suppose you were using metacity on the older system, and are now using compiz.</p>\n\n<p>Compiz works a bit differently with the GNOME-panel, and you can't drag the applications on the panel to a new workspace. You can however, drag the applicati...
null
null
null
null
null
18602
1
18604
2010-12-23T11:47:29.183
1
4715
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/10373/is-scanning-virus-needed-on-linux-distros">Is scanning VIRUS needed on Linux Distros?</a> </p> </blockquote> <p>What's a good malware scanner for Ubuntu?</p> <p><strong>--update</strong></p> <p>I just suspe...
5304
-1
2017-04-13T12:24:48.743
2011-01-03T07:21:55.370
Malware scanner for Ubuntu
[ "10.04", "malware" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T12:48:26.987", "id": "19839", "postId": "18602", "score": "2", "text": "malware!! in linux?", "userDisplayName": null, "userId": "4497" }, { "creationDate": "2010-12-23T13:07:59.977", "id": "19844", "postId": "18602", "score": "0", "t...
{ "accepted": true, "body": "<p>there aren't many malwares on Linux in general as most programs you'll ever download and install are open-source and, if there is, the program will most likely have a very short lifespan; so there is no need for a malware scanner.</p>\n", "commentCount": "2", "comments": [ { ...
[ { "accepted": true, "body": "<p>there aren't many malwares on Linux in general as most programs you'll ever download and install are open-source and, if there is, the program will most likely have a very short lifespan; so there is no need for a malware scanner.</p>\n", "commentCount": "2", "comment...
null
null
2010-12-23T15:58:19.117
null
null
18603
1
18605
2010-12-23T11:53:49.453
8
11549
<p>After installing Ubuntu on my ThinkPad T510, the GDM screen and GNOME session would always start at 100% brightness.</p> <p>I quickly found out, that this can be controlled via <code>gnome-power-preferences</code>, but I'd like to have GDM and the GNOME session follow the global backlight setting (ie., when I set i...
3037
null
null
2017-08-14T00:29:40.613
How to stop gnome-power-manager from changing the global backlight setting?
[ "brightness", "gnome-power-manager", "backlight" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It seems this can only be disabled by editing a gconf setting using <code>gconf-editor</code> or the command line tool <code>gconftool-2</code> (easier). As GDM is run by a special user (<code>gdm</code>), you got to disable it for the desktop user and that special user:</p>\n\n<p>Ru...
[ { "accepted": true, "body": "<p>It seems this can only be disabled by editing a gconf setting using <code>gconf-editor</code> or the command line tool <code>gconftool-2</code> (easier). As GDM is run by a special user (<code>gdm</code>), you got to disable it for the desktop user and that special user:</p>\...
null
null
null
null
null
18606
1
null
2010-12-23T12:01:09.487
1
2149
<p>I'm trying to install Ubuntu Netbook on my mum's Windows XP Atom notebook.</p> <p>The notebook doesn't have an optical drive, nor do we currently have a usb drive in the house. So I decided to use Unetbootin to create the "frugal" hard disk loader.</p> <p>The only thing is, now I'm stuck on the Allocate Drive Spac...
7796
8844
2011-10-28T05:53:56.930
2011-10-28T05:53:56.930
Ubuntu Netbook installation fails on Allocate Drive Space screen, No Root File System is Defined
[ "installation", "ubuntu-netbook", "windows-xp" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Looking at your top screenshot then what you need to do is select one of the partitions, then click on <em>Change...</em> below. On the dialogue that appears, you should select the <code>ext4</code> file system, make the mount point <code>/</code> (the filesystem 'root') and ...
null
null
null
null
null
18615
1
null
2010-12-23T13:05:45.217
6
249
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/23562/why-cant-i-see-the-menubar-in-some-applications">Why can&#39;t I see the menubar in some applications?</a> </p> </blockquote> <p>My problem is as follows:</p> <p>The program menu, the one that has file edit ...
7814
-1
2017-04-13T12:23:44.677
2011-02-22T20:23:53.250
Program menu disappeared
[ "menu", "gtk", "appmenu" ]
0
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T13:17:34.040", "id": "19845", "postId": "18615", "score": "3", "text": "do you have the appmenu installed?", "userDisplayName": null, "userId": "1992" } ]
null
[]
null
null
2011-06-05T20:30:52.513
null
null
18618
1
null
2010-12-23T13:23:56.267
4
31678
<p>I want to compile the program using these command:gcc -o test test.c,then it displays these:</p> <pre>yangbin@yangbin-desktop:~/桌面$ gcc -o test test.c /usr/bin/ld: cannot open output file test: Is a directory collect2: ld returned 1 exit status </pre> <p>I cannot understand why,please give me a hand to solve it! I...
null
25863
2012-11-21T22:52:21.863
2012-11-21T22:52:21.863
cannot open output file test: Is a directory collect2: ld returned 1 exit status
[ "permissions", "files" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>At the shell prompt you issued the gcc command at, try \"cd test\". If it doesn't error and you get into a subdirectory called test, then the problem is exactly what the error message says. To fix that, try changing the \"test\" after the \"-o\" to some other name.</p>\n", ...
null
null
null
null
yangbin
18622
1
18625
2010-12-23T14:18:07.730
1
304
<p>I was succesfully using Xubuntu 11.04 for some days, but after today update (I haven't updated during the last 2 days) lots of things stopped working: Adobe Flash Firefox plugin, clipboard, notification area panel applet, keyboard layout switcher panel applet, sound volume panel applet, cpu meter panel applet.</p> ...
2390
2390
2010-12-23T14:39:00.990
2010-12-23T14:42:50.490
What piece of the last update could break keyboard switcher, systray, clipboard and Adobe Flash in Xubuntu 11.04?
[ "11.04", "xubuntu", "xfce" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T14:31:57.313", "id": "19851", "postId": "18622", "score": "0", "text": "You mentioned 11.04 on the title, and 10.04 on the description, could you please clarify ? Thanks", "userDisplayName": null, "userId": "742" }, { "creationDate": "2010-12-23T14:3...
{ "accepted": true, "body": "<p>There have been <a href=\"https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/693758\" rel=\"nofollow\">some problems with GTK</a> in 11.04 - your problems could well be related.</p>\n\n<p><em>Sidenote: I would encourage you to take most discussion of/problems with development rel...
[ { "accepted": true, "body": "<p>There have been <a href=\"https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/693758\" rel=\"nofollow\">some problems with GTK</a> in 11.04 - your problems could well be related.</p>\n\n<p><em>Sidenote: I would encourage you to take most discussion of/problems with develop...
null
null
null
null
null
18626
1
18627
2010-12-23T14:46:02.013
5
740
<p>My top gnome-panel is set to not expand and sits on the top-right of my screen. I just realized I wouldn't mind if maximized windows were able to get behind it (it wouldn't actually cover up anything). Is it possible to achieve that with the gnome-panel?</p> <p>Here's what it looks like now:<br> <img src="https://i...
1012
1012
2010-12-23T14:52:34.690
2011-02-01T20:20:33.123
Can I let maximized windows reach behind the gnome-panel?
[ "gnome-panel", "window-manager" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I can give you a small trick to achieve what you want, it's not really elegant but it should works : </p>\n\n<ul>\n<li>Set your panel to Autohide</li>\n<li>Run gconf-editor</li>\n<li>Go to '/apps/panel/toplevels/top_panel_screen0/hide_delay' (should be this one)</li>\n<li>Set the val...
[ { "accepted": true, "body": "<p>I can give you a small trick to achieve what you want, it's not really elegant but it should works : </p>\n\n<ul>\n<li>Set your panel to Autohide</li>\n<li>Run gconf-editor</li>\n<li>Go to '/apps/panel/toplevels/top_panel_screen0/hide_delay' (should be this one)</li>\n<li>Set...
null
null
null
null
null
18629
1
null
2010-12-23T15:46:36.213
4
1161
<p>Recently my Gnome interface theme has occasionally changed itself on every few logins. On the times it does change as soon as I login I get a completely different theme set on my menu bar, icons, font, everything. It sets the grey accessibility one (I think) but then after a few moments it changes itself back to th...
3253
3253
2010-12-23T15:54:15.393
2010-12-23T15:54:44.607
My Appearance theme briefly changes itself
[ "gnome", "nautilus-elementary", "themes" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T16:00:57.617", "id": "19871", "postId": "18629", "score": "0", "text": "Possibly, but my theme does come back after a few minutes without having to log back in again.", "userDisplayName": null, "userId": "3253" } ]
null
[ { "accepted": null, "body": "<p>Might be related to the following <a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/574296\" rel=\"nofollow\">bug</a> .</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-23T16:03:49.593", "id": "19...
null
null
null
null
null
18631
1
18635
2010-12-23T16:07:14.817
4
2251
<p>As it seems that I've been hit by <a href="https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/693758" rel="nofollow">the bug #693758</a> I am willing to downgrade <a href="https://launchpad.net/ubuntu/+source/gtk+2.0" rel="nofollow">gtk+.2.0</a> from 2.23.3 to 2.23.2. But it seems that I have no package with suc...
2390
866
2010-12-23T16:44:31.570
2010-12-23T16:44:31.570
How to downgrade gtk+2.0 package to workaround bug #693758?
[ "package-management", "11.04", "gtk", "downgrade" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>In this particular case for 32-bit:</p>\n\n<pre><code>wget http://launchpadlibrarian.net/60749847/libgtk2.0-0_2.23.2-0ubuntu4_i386.deb\nsudo dpkg -i --force-all libgtk2.0-0_2.23.2-0ubuntu4_i386.deb\n</code></pre>\n\n<p>or for 64-bit</p>\n\n<pre><code>wget http://launchpadlibrarian.ne...
[ { "accepted": null, "body": "<p>If the previous version is still available from the repositories you should be able to list it with:</p>\n\n<pre><code>apt-cache policy libgtk2.0-0\n</code></pre>\n\n<p>To install a specific version of a package use (on this example the version is 2.22.0-0ubuntu1):</p>\n\n<pr...
null
null
null
null
null
18632
1
null
2010-12-23T16:16:32.463
8
12016
<p>The update manager is still stuck in updating the linux kernel (linux-image-2.6.35-24-generic) in the process of updating the grub entries. I think the problem is that the update manager doesn't have root privileges to continue (the app indicator with the key icon disappeared) and I want to know if it's safe to kill...
5749
null
null
2016-07-22T14:31:49.423
Update manager stuck in update
[ "kernel", "updates" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2016-07-22T14:31:49.423", "id": "1209772", "postId": "18632", "score": "0", "text": "I chose to end update manager after seeing this thread. After that I ran this comment in terminal `sudo dpkg --configure -a`. But I got the error \"dpkg: status database area is locked by anot...
null
[ { "accepted": null, "body": "<p>It is safe to kill update-manager, but after that please run the following:</p>\n\n<pre><code>sudo dpkg --configure -a\nsudo apt-get install -f\nsudo apt-get update &amp;&amp; sudo apt-get upgrade\n</code></pre>\n", "commentCount": "3", "comments": [ { "...
null
null
null
null
null
18637
1
null
2010-12-23T16:36:36.410
6
1232
<p>I have an extra ext4 formatted partition which I would like to ecrypt with ecryptfs. I have chosen not to go for home directory ecryption and having a encrypted private directory also hasn't helped me. </p> <p>So, the remaining option for me is to encrypt the extra partition. So, I want to know what is the best way...
2968
235
2010-12-23T16:42:34.860
2010-12-26T01:12:28.760
Encrypting an extra partition with ecryptfs?
[ "encryption", "ecryptfs" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T19:23:17.690", "id": "19929", "postId": "18637", "score": "0", "text": "May I ask why do you want to do this, since you are trying to create exactly the same thing as encrypted home? Is it space? I would just move home to the other partition.", "userDisplayName"...
null
[ { "accepted": null, "body": "<p>Probably the simplest way to do this is to use an \"Encrypted Private\" directory. This will make <code>~/Private</code> encrypted, and you can move trees into there and symlink to them (for firefox, etc). It is very easy to set up:</p>\n\n<pre><code>sudo apt-get install ecry...
null
null
null
null
null
18640
1
18642
2010-12-23T16:50:55.313
3
495
<p>Perhaps someone can help me to get rid of this slight red border in the progress-GUI? See the attached screenshot.</p> <p><img src="https://i.stack.imgur.com/gI2nn.png" alt="alt text"></p> <p>I'm using the <a href="http://gnome-look.org/content/show.php/Finery+(improved+Radiance+theme)?content=124694" rel="nofollo...
7155
8844
2011-02-10T04:16:11.280
2019-07-19T06:02:49.077
How can I get rid off this slight red border in Progress-GUI?
[ "themes", "gui", "gtk" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T16:58:39.380", "id": "19882", "postId": "18640", "score": "2", "text": "Which theme are you using? Is the idea that you want to customize the theme, or that you think there is a problem and theme is showing up wrong?", "userDisplayName": null, "userId": "866...
{ "accepted": true, "body": "<p>That is simply a feature of the theme. You could <a href=\"http://ubuntuforums.org/showthread.php?t=377397\" rel=\"nofollow\">edit the gtkrc</a> or change the theme.\nProbably just best for you to change the theme if you are unsure. You can use <code>gedit</code> to edit the theme. I...
[ { "accepted": true, "body": "<p>That is simply a feature of the theme. You could <a href=\"http://ubuntuforums.org/showthread.php?t=377397\" rel=\"nofollow\">edit the gtkrc</a> or change the theme.\nProbably just best for you to change the theme if you are unsure. You can use <code>gedit</code> to edit the ...
null
null
null
null
null
18641
1
null
2010-12-23T16:57:06.043
116
42380
<p>I've been running Alpha releases of Ubuntu for some time now. I keep running into issues - how can I get these resolved? What should I do when I encounter these problems? And where can I find other Ubuntu+1 users to ask questions?</p>
41
6005
2012-09-29T23:44:45.517
2014-04-30T11:18:19.663
There's an issue with an Alpha/Beta Release of Ubuntu, what should I do?
[ "bug-reporting", "debugging", "release-management" ]
9
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<h2>Forums</h2>\n<ul>\n<li>If your question on Ask Ubuntu was linked to this answer then this is where you should probably go to repost your problem.</li>\n</ul>\n<p>The Ubuntu Forums' <a href=\"http://ubuntuforums.org/forumdisplay.php?f=310\" rel=\"noreferrer\">Development &am...
2010-12-23T16:57:20.363
null
null
null
null
18654
1
18656
2010-12-23T17:29:20.537
559
515810
<p>Because of <a href="https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/693758">bug #693758</a> I'd like to prevent <code>apt-get upgrade</code> and Update Manager from updating the "libgtk2.0-0" package. </p> <p>How can this be achieved?</p>
2390
169736
2014-05-04T13:20:38.810
2023-06-15T05:35:46.707
How to prevent updating of a specific package?
[ "updates", "package-management" ]
15
3
CC BY-SA 3.0
[ { "creationDate": "2011-10-26T18:17:52.663", "id": "82195", "postId": "18654", "score": "0", "text": "@hhlp: But this question is asking about a package that was never installed.", "userDisplayName": null, "userId": "5" }, { "creationDate": "2011-10-26T18:41:42.757", "id": "8...
{ "accepted": true, "body": "<h1>Holding</h1>\n<p>There are different ways of holding back packages: with <code>dpkg</code>, <code>apt</code>, <code>dselect</code>, <code>aptitude</code> or Synaptic.</p>\n<h2>dpkg</h2>\n<p>Put a package on hold:</p>\n<pre><code>echo &quot;&lt;package-name&gt; hold&quot; | sudo dpkg...
[ { "accepted": null, "body": "<p>I synaptic you can freeze the version of a specific package I'm not a 100% sure as to whether this will amend apt-get but it will definately stop update manager.</p>\n\n<p>To freeze a package select it in synaptic then open the package menu and select freeze version.</p>\n\n<...
null
null
null
null
null
18658
1
null
2010-12-23T18:37:00.263
0
688
<p>i m a less that 10 hours user of ubuntu 10.10. i have installed skype.the first time i installed it there was a green icon on the panel with my status but i closed it by wrong.any idea how to return it?thanks</p>
null
25798
2012-07-07T12:53:47.793
2012-07-07T12:53:47.793
How do I get the skype panel icon back?
[ "skype", "notification-area" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>To access skype,</p>\n\n<ul>\n<li>Goto Applications>>Internet>>Skype</li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-23T18:49:46.363", "id": "19924", "postId": "18659", "score": "0", "text": "...
null
null
null
null
kostas
18665
1
57152
2010-12-23T19:57:23.523
5
10784
<p>Developer in me woke up this morning and asked me to fix this before Christmas. (As his Christmas gift).</p> <p>So, if I power on the laptop after docking it, everything works fine. But if I am working on it standalone and then try to dock it, I cannot get the display. Same way, if I undock it while working, I loos...
1815
null
null
2013-08-27T14:44:09.847
Lenovo ThinkPad T400 and docking station
[ "thinkpad", "dock", "lenovo" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-12-25T05:32:32.790", "id": "20050", "postId": "18665", "score": "0", "text": "No takers? Marry X'mas.", "userDisplayName": null, "userId": "1815" }, { "creationDate": "2011-01-03T18:51:15.710", "id": "21409", "postId": "18665", "score": "0", ...
{ "accepted": true, "body": "<p>I have a similar experience with T400 and dock station (ThinkPad Port Advanced Mini Dock). I'm using Fedora 14 and the Intel graphics (Radeon switched off in BIOS, as both the proprietary and open the driver has issues in dual screen mode).</p>\n\n<p>When I undock with the laptop run...
[ { "accepted": null, "body": "<p>Hiya, from my own experience in any additions to computers I would personally save all my work and shut down the computer to ensure all your hard work is saved and will not be affected. Unlock your computer and eject from the docking station. Once fully ejected you can then ...
null
null
null
null
null
18668
1
18669
2010-12-23T20:36:36.163
1
1312
<p>anyidea how to install its on its ? in google chrome / opera / midori ? </p>
5840
null
null
2010-12-23T20:43:02.393
how to install the greasemonkey in google chrome / opera / midori?
[ "google-chrome", "opera" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Within Google Chrome you don't need to install a Greasemonkey extension as you do on Firefox, but if you click on a Greasemonkey script you will automatically have the option to install it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicen...
[ { "accepted": true, "body": "<p>Within Google Chrome you don't need to install a Greasemonkey extension as you do on Firefox, but if you click on a Greasemonkey script you will automatically have the option to install it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, ...
null
null
2010-12-25T22:48:09.603
null
null
18673
1
18679
2010-12-23T21:44:30.060
3
829
<p>I was running low in disk space on my Linux box, Ubuntu 10.10 Desktop, (specifically on my /home partition) so I added another disk to it and I am trying to move the home partition into it.</p> <p>I am trying to follow the steps on this guide here: <a href="https://help.ubuntu.com/community/Partitioning/Home/Moving...
375
1067
2010-12-23T22:06:07.767
2010-12-23T22:36:39.907
Problems trying to move my /home partition
[ "10.10", "encryption", "home-directory", "rsync", "partitioning" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>-if your home directory is encryted, follow the guide by Joao as answer to question <a href=\"https://askubuntu.com/questions/17332/how-can-i-move-an-encrypted-home-directory-to-another-partition\">here</a></p>\n\n<p>-otherwise if your home directory is not encrypted just follow the ...
[ { "accepted": true, "body": "<p>-if your home directory is encryted, follow the guide by Joao as answer to question <a href=\"https://askubuntu.com/questions/17332/how-can-i-move-an-encrypted-home-directory-to-another-partition\">here</a></p>\n\n<p>-otherwise if your home directory is not encrypted just fol...
null
null
null
null
null
18675
1
null
2010-12-23T21:56:07.297
1
1024
<p>I installed nvidia driver, rebooted, and got no graphics, only console. <br>Suggestions?</p> <p>Thanks.</p>
7830
null
null
2011-04-24T11:41:25.453
No graphics after installing Nvidia driver
[ "drivers", "nvidia" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-22T21:53:54.497", "id": "30536", "postId": "18675", "score": "0", "text": "More information please. At least your Ubuntu version.", "userDisplayName": null, "userId": "2732" }, { "creationDate": "2011-04-24T12:11:18.233", "id": "40827", "postId"...
null
[ { "accepted": null, "body": "<p>Can you provide the version which comes up as installed when you run this command:</p>\n\n<pre><code># dpkg -l | grep nvidia\n</code></pre>\n\n<p>From the console you can use the following command to install (and I guess replace or remove) the binary driver installed:</p>\n\n...
null
null
null
null
null
18684
1
null
2010-12-23T23:06:53.937
6
957
<p>Fresh install 10.10 all my bookmarks mainly ftp and ssh bookmarks open firefox and show a web based file browser instead of spawning a nautilus window. have no idea what caused this never seen this before. This kills me on this machine to not be able to transfer/edit remote files right from my places menu.</p>
7834
235
2011-03-27T20:04:21.930
2011-03-27T20:04:21.930
Bookmarks in Places menu now open in Firefox instead of nautilus
[ "nautilus", "places", "bookmarks" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-24T15:57:30.853", "id": "20006", "postId": "18684", "score": "1", "text": "I would open ubuntu tweak and go to File Type Manager and change the associated program there.", "userDisplayName": null, "userId": "6060" }, { "creationDate": "2010-12-24T20:18:...
null
[ { "accepted": null, "body": "<p>Right click a folder, go to Properties -> Open With, and change the associated program to Nautilus. If there is a checkbox for \"always use this program\" make sure it's checked.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-24T2...
null
null
null
null
null
18685
1
18691
2010-12-23T23:08:02.187
67
54261
<p>I have a PDF document with over 300 pages. I need to add 15 pages in between - after page 180. How can I do it?</p>
4157
null
null
2023-09-14T08:50:34.327
Adding pages to existing pdf file
[ "pdf" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You could use <a href=\"http://packages.ubuntu.com/pdftk\">pdftk</a> from the commandline:</p>\n\n<p><code>pdftk A=bigpdf.pdf B=insert.pdf cat A1-180 B A181-end output output.pdf</code></p>\n\n<p>Or if you want a GUI you could use <a href=\"http://packages.ubuntu.com/search?keywords=...
[ { "accepted": null, "body": "<h1><a href=\"http://packages.ubuntu.com/pdfshuffler\" rel=\"noreferrer\">PDF-Shuffler</a> <a href=\"http://apt.ubuntu.com/p/pdfshuffler\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"install pdfshuffler\" /></a></h1>\n<p>PDF Shuffler is an ideal appli...
null
null
null
null
null
18688
1
18692
2010-12-23T23:33:06.947
8
583
<p>The first time a user enters <code>sudo foo</code>, <strong>sudo_root</strong> prompts for the password. For a certain duration after that, <strong>sudo_root</strong> doesn't prompt for a password for any subsequent <code>sudo foo</code>'s in that terminal session. <br/></p> <ul> <li>What duration is that?</li> <li...
4776
4776
2010-12-23T23:58:15.747
2010-12-23T23:58:15.747
For what duration is sudo_root in "don't-prompt-for-password" mode?
[ "command-line", "sudo" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is covered in the Ubuntu Sudo FAQ entry here: <a href=\"https://wiki.ubuntu.com/SecurityTeam/FAQ#Sudo\">https://wiki.ubuntu.com/SecurityTeam/FAQ#Sudo</a></p>\n\n<p>The default is 15 minutes, but can be changed with *timestamp_timeout* in <code>/etc/sudoers</code>. For more detai...
[ { "accepted": true, "body": "<p>This is covered in the Ubuntu Sudo FAQ entry here: <a href=\"https://wiki.ubuntu.com/SecurityTeam/FAQ#Sudo\">https://wiki.ubuntu.com/SecurityTeam/FAQ#Sudo</a></p>\n\n<p>The default is 15 minutes, but can be changed with *timestamp_timeout* in <code>/etc/sudoers</code>. For mo...
null
null
null
null
null
18690
1
18693
2010-12-23T23:38:13.667
1
7776
<p>I'm trying to run a shell script inside some python code, but I keep getting an error message.</p> <p><strong>Python script (test.py):</strong></p> <pre><code> import os f = os.popen('/home/test/Downloads/record.sh') f.close() </code></pre> <p><strong>Shell script (record.sh):</strong></p> <pre><code>#...
7737
7737
2010-12-25T14:37:24.090
2010-12-25T14:37:24.090
Pipe error with bash script called from python
[ "bash", "python", "scripts" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-23T23:40:51.350", "id": "19956", "postId": "18690", "score": "0", "text": "I think this one may be more appropriate for stackoverflow.com since it's a programming question, rather than an Ubuntu question.", "userDisplayName": "user2405", "userId": null }, {...
{ "accepted": true, "body": "<p>To run a shell script in python 2.6, use the <code>commands</code> module:</p>\n\n<pre><code>import commands\nstatus, output = commands.getstatusoutput(\"./script.sh\")\n</code></pre>\n\n<p><code>status</code> is now the exist status of your program, hopefully <code>0</code>. The out...
[ { "accepted": true, "body": "<p>To run a shell script in python 2.6, use the <code>commands</code> module:</p>\n\n<pre><code>import commands\nstatus, output = commands.getstatusoutput(\"./script.sh\")\n</code></pre>\n\n<p><code>status</code> is now the exist status of your program, hopefully <code>0</code>....
null
null
null
null
null
18697
1
null
2010-12-24T02:21:17.747
2
391
<p>Ok so I guess last few days there was a kernel upgrade in apt, cause I had to reboot. And since then, X shows up in htop eating 50% or more of my ram! </p> <p>And the swap is totally eaten too. I haven't seen that happen in years.</p> <p>Using 10.10 w/ compiz and an nvidia 6150 with the official nvidia drivers.</p...
7840
1067
2010-12-24T02:34:11.190
2011-01-25T01:29:24.523
Since that last kernel upgrade X uses too much RAM
[ "10.10", "xorg" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-12-24T02:51:24.027", "id": "19974", "postId": "18697", "score": "0", "text": "How much memory do you have and did you test running ubuntu in console only, just to see if it is a service or some gui program.", "userDisplayName": null, "userId": "7035" }, { ...
null
[ { "accepted": null, "body": "<p>While it may appear that X is using up all the RAM, 99% of the time it's not X but some client application.</p>\n\n<p>The Xserver is a server, and so it responds to client requests. Clients can drive up X RAM or CPU usage by making excessive calls to the xserver, sort of lik...
null
null
null
null
null
18698
1
18701
2010-12-24T04:14:56.393
37
27621
<p>I have a poster I would like to print. It is far larger than a single sheet of paper that can fit in my printer. What is a program that I can use to print it out on separate sheets of paper (to assemble later)?</p>
6161
866
2010-12-24T08:37:25.917
2022-10-10T23:58:55.037
Printing a poster (over several sheets of paper)
[ "printing", "poster" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Install <a href=\"http://packages.ubuntu.com/posterazor\" rel=\"noreferrer\"><strong>posterazor</strong></a> <a href=\"http://apt.ubuntu.com/p/posterazor\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install posterazor\"></a> it will be suitable for you. A...
[ { "accepted": null, "body": "<p>Try using scribus. Its for DTP (Desktop Publishing) only. You will get help here <a href=\"http://docs.scribus.net/\" rel=\"nofollow\">http://docs.scribus.net/</a> also initial issues of fullcirclemagazine has good tutorial for scribus.</p>\n", "commentCount": "0", "c...
null
null
null
null
null
18702
1
null
2010-12-24T06:13:17.997
2
4387
<p>I'm using mencoder and ffmpeg to make videos with music playing over a single image. The videos play fine but I can't seek at all. I've tried generating them with -idx and even -forceidx and keyint with mencoder but I couldn't get it to work. The only option I saw for this with ffmpeg was force_key_frames but it see...
7768
null
null
2010-12-26T20:02:04.380
How to make videos seekable with ffmpeg / mencoder
[ "ffmpeg", "mencoder" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I figured it out for ffmpeg. I added -f image as an input option for the image like so:</p>\n\n<pre><code>-f image2 -i image.jpg\n</code></pre>\n\n<p>I found the answer indirectly on <a href=\"https://superuser.com/questions/98980/ffmpeg-creating-video-for-youtube\">superuser...
null
null
null
null
null
18704
1
18712
2010-12-24T06:38:07.473
7
5518
<p>When I install a software using apt-get it installs to default locations i.e to /usr/bin, /usr/lib, /usr/share and etc. For example when I install "Meld Diff Viewer" using</p> <pre><code>sudo apt-get install meld </code></pre> <p>and use whereis command to find its location, I get the following output</p> <pre><c...
6713
6713
2010-12-24T07:24:22.750
2015-10-27T08:03:25.000
Can I use apt-get or aptitude to install software to non standard location?
[ "installation", "apt", "aptitude" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Most programs are looking for files they need (like config files, GUI ressources, ...) on a few hardcoded places and will refuse to works if those files aren't there. To change this places you usually need to recompile the programs (but sometimes you can use command line options or e...
[ { "accepted": null, "body": "<p>For what i know the directories where it will install the desire software is inside the .deb package. If you need to change that, you need to change the package altogether. This is because the way to install and where to install it must be a standard between packages origina...
null
null
null
null
null
18706
1
null
2010-12-24T07:26:15.243
4
942
<p>We have around 300 machines. How can we monitor the network using an Ubuntu machine so that we can find out which node is broadcasting, traffic monitoring, also trying ntop.</p>
6106
527764
2017-03-14T07:01:11.307
2017-03-14T07:01:11.307
Monitoring of Network
[ "networking", "network-monitoring" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You can use <a href=\"http://packages.ubuntu.com/snmpd\" rel=\"nofollow noreferrer\"><strong>snmpd</strong></a> <a href=\"http://apt.ubuntu.com/p/snmpd\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install snmpd\"></a> and \n <a href=\"htt...
null
null
null
null
null
18713
1
18715
2010-12-24T10:03:32.247
14
12439
<p>Which methods exist to keep a command that was started from shell on running after logging out from from shell?</p>
7155
158442
2016-12-09T01:35:39.360
2016-12-09T01:35:39.360
How can I keep a command I started from the shell running if I logout from the shell?
[ "command-line" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ul>\n<li><p>To put the application into the background, use <code>&amp;</code>:</p>\n\n<pre><code>command &amp;\n</code></pre></li>\n<li><p>If you wish to close the terminal, and keep the application running, you can use several options: <a href=\"http://packages.ubuntu.com/screen\" re...
[ { "accepted": null, "body": "<p>Use the nohup command like this:</p>\n\n<pre><code>nohup gedit /home/user/file.txt &amp;\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2019-06-19T12:41:15.920", "id": "1915913", "postId": "18714", "score...
null
null
null
null
null
18716
1
22488
2010-12-24T10:38:09.463
7
8262
<p>I'm having problems loading a <code>zenity</code> List Dialog when the data contains spaces. </p> <p>It is straight-forward when there are no spaces in the listed data,<br> but I don't know of a simple/standard method for space-embedded file names. </p> <p>For some reason, the output of $(<code>ls -Q /tmp</code>...
2670
null
null
2011-01-20T20:18:31.073
How to load a `zenity` List Dialog with space-embedded data from `ls`?
[ "bash", "zenity" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The problem is <code>ls</code>. It was never designed to be used in scripts. Besides, it's also pointless to use <code>ls</code> in scripts, because the shell can do the job much better, by simply using a glob, see <a href=\"http://mywiki.wooledge.org/BashGuide/Patterns\">http://mywi...
[ { "accepted": null, "body": "<p>You can pipe the list content into zenity, like</p>\n\n<pre><code>(echo \"How much wood would a woodchuck chuck,\" ; \\\n echo \"if a wooodchuck could chuck wood?\" ; \\\n ls -Q -1 \"$zenlist\"* |sed 's/$/ \\\\/') \\\n| zenity --list --title='A single-column List' --width=600...
null
null
null
null
null
18717
1
18720
2010-12-24T11:05:55.813
0
368
<p>My girlfriend has an ASUS eee900 (the version with the 2 SSDs). Although it ships with Xandros, one of the first things I did for her was remove it and install Ubuntu. She's had Ubuntu Netbook Remix on there for a while, but once Unity was enforced on everyone, the poor little netbook can't cope with it (the graphic...
1878
null
null
2010-12-24T13:09:50.037
eee900 Keyboard Issues
[ "ubuntu-netbook", "keyboard", "eeepc" ]
1
5
CC BY-SA 2.5
[ { "creationDate": "2010-12-24T11:19:03.763", "id": "19992", "postId": "18717", "score": "0", "text": "Did the keybord work correctly whilst Ubuntu was installed?", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-12-24T12:37:31.547", "id": "19995", "pos...
{ "accepted": true, "body": "<p>You should be able to switch to the regular graphic interface on the netbook remixed edition of Ubuntu, by selecting the proper environment at the login time. If you are setup for an automatic login, you can still logout and re-login with the proper credentials. The selection is done...
[ { "accepted": true, "body": "<p>You should be able to switch to the regular graphic interface on the netbook remixed edition of Ubuntu, by selecting the proper environment at the login time. If you are setup for an automatic login, you can still logout and re-login with the proper credentials. The selection...
null
null
null
null
null
18718
1
null
2010-12-24T11:11:54.507
6
1182
<p>I am trying to set up a school computer lab with Hindi typing capabilities and am having trouble getting Ubuntu 10.04 to type all of the Hindi combined characters. <br/> I'm using "Bolnagri" since it is very intuitive for people who know the English keyboard. There is a layout document in the <a href="http://ubuntu...
null
4776
2010-12-24T12:45:25.823
2011-01-23T19:21:25.917
Hindi Keyboard layout is missing combined characters
[ "10.04", "keyboard-layout", "language-support" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I'm not sure if this will help, but as far as I know Ubuntu's handling of Devanagari script (and a few others) is not fully implemented yet... </p>\n\n<p>Have a look at this Askubuntu question... <a href=\"https://askubuntu.com/questions/8437/is-there-a-good-mono-spaced-font-...
null
null
null
null
Jeff Rollins
18721
1
null
2010-12-24T13:12:09.793
6
7597
<p>I had installed VLC 1.1.4 in ubuntu 10.04 via a PPA. After I installed it, I have not been able to view subtitles after loading it. It appears as a rectangle in place of text.</p> <p>How can I fix this?</p>
null
4
2011-02-04T16:59:44.960
2015-08-27T11:06:54.703
Subtitle are not working in vlc
[ "vlc" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-24T13:16:36.440", "id": "19998", "postId": "18721", "score": "1", "text": "Do subtitles work with the official repository version of VLC? I have never had any problems with subtitles in VLC.", "userDisplayName": null, "userId": "667" } ]
null
[ { "accepted": null, "body": "<p>The problem might be with the encoding of the subtitle file. Try opening the file and see if you can see the text in the text editor(you definitely should), if you don't, then get a different subtitle file.</p>\n\n<p>If you are able to see, copy all text to clipboard, and sav...
null
null
null
null
Babu