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 in one step? Something like</p> <p>locate fooBar > rm</p> <p>Thanks.</p>
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 command for every line in the input. So by typing <code>locate foobar | xargs rm -f</code>, the output of the locate command will be <strong>patched onto the end</strong> of the <code>rm -f</code> command, and executed for each line produced by <code>locate foobar</code>.</p>\n\n<p>The gotcha:</p>\n\n<p>But what if there are spaces in your line(s) returned by locate? That will break the <code>rm -f</code> command because the arguments passed to rm need to be files (unless you use the -r switch), and a file-path needs to be escaped or quoted if it contains spaces.</p>\n\n<p>xargs provides the -i switch, to <em>substitute</em> the input into the command that follows instead of just appending it. So I'd change the suggestion to </p>\n\n<pre><code>locate foobar | xargs -ixxx rm -f 'xxx'\n</code></pre>\n\n<p>which will now only break if the filenames returned by locate contained apostrophes.</p>\n\n<p>I have to concur with qbi, that you should be <em>careful about using</em> <strong>rm -f</strong> !\nUse the -p flag to xargs, or just run the locate foobar by itself before feeding it to xargs, or drop the -f from rm.</p>\n\n<pre><code>locate foobar | xargs -p -ixxx rm -f 'xxx'\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-21T16:02:40.140", "id": "19645", "postId": "18393", "score": "10", "text": "To be robust against files with exotic characters (newlines, quotes, apostrophes, etc.) in their names, you can use the `-0` (`--null`) option to locate and xargs. This uses the safe ASCII NUL character to separate filenames: `locate -0 foobar | xargs -0 rm`", "userDisplayName": null, "userId": "1296" }, { "creationDate": "2010-12-22T05:54:27.053", "id": "19689", "postId": "18393", "score": "1", "text": "+1 for the reply, and selected for mentioning the gotcha ^_^", "userDisplayName": null, "userId": "3778" }, { "creationDate": "2018-11-15T11:28:27.350", "id": "1799731", "postId": "18393", "score": "1", "text": "I tried it but it didn't work.", "userDisplayName": null, "userId": "510521" }, { "creationDate": "2019-01-20T11:09:15.373", "id": "1834259", "postId": "18393", "score": "0", "text": "Worked partially", "userDisplayName": null, "userId": "908818" }, { "creationDate": "2022-02-10T12:38:14.457", "id": "2407049", "postId": "18393", "score": "0", "text": "Hi I get the `permission denied` error. I guess I need to add `sudo` to this command. I tried with `sudo locate foobar | xargs rm -f`, but it didn't work.", "userDisplayName": null, "userId": "1569790" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T14:17:32.610", "id": "18393", "lastActivityDate": "2010-12-21T14:42:47.430", "lastEditDate": "2010-12-21T14:42:47.430", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "3802", "parentId": "18369", "postTypeId": "2", "score": "18" }
[ { "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 memory 64KiB L1 cache\n/0/4/6 memory 1MiB L2 cache\n/0/d memory 3GiB System Memory\n/0/d/0 memory 1GiB SODIMM DDR2 Synchronous 667 MHz (1.5 ns)\n/0/d/1 memory 2GiB SODIMM DDR2 Synchronous 667 MHz (1.5 ns)\n</code></pre>\n\n<p>You may also want to take a look at the full output of <code>sudo lshw -short</code> or even <code>sudo lshw</code> to get much more information about your hardware.</p>\n\n<p>My thanks to jet and CYREX for pointing out a much better method:\n<strong><pre><code>sudo dmidecode -t memory</code></pre></strong></p>\n\n<p>Which outputs something like this:</p>\n\n<pre><code>...\n\nHandle 0x000F, DMI type 17, 27 bytes\nMemory Device\n Array Handle: 0x000D\n Error Information Handle: No Error\n Total Width: 64 bits\n Data Width: 64 bits\n Size: 2048 MB\n Form Factor: SODIMM\n Set: 1\n Locator: M2\n Bank Locator: Bank 1\n Type: DDR2\n Type Detail: Synchronous\n Speed: 667 MHz (1.5 ns)\n Manufacturer: Mfg 1\n Serial Number: 1234-B1\n Asset Tag: Not Specified\n Part Number: SODIMM001\n\n ...\n</code></pre>\n\n<p>This method is based on the Desktop Management Interface:</p>\n\n<blockquote>\n <p>From 1999, Microsoft required OEMs and BIOS vendors to support the DMI interface/data-set in order to have Microsoft certification.<sup><a href=\"http://en.wikipedia.org/wiki/Desktop_Management_Interface\">(1)</a></sup></p>\n</blockquote>\n\n<p>It should therefore work pretty reliably. </p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-21T11:54:30.353", "id": "19621", "postId": "18375", "score": "6", "text": "This depends on the RAM and BIOS to some extent. My memory is reported as `2GiB DIMM 400 MHz (2.5 ns)` where yours shows `2GiB SODIMM DDR2 Synchronous 667 MHz (1.5 ns)` (so doesn't show the type or speed accurately - It's DDR3 at 200MHz memory clock, 800MHz bus clock)", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-12-21T21:19:03.573", "id": "19669", "postId": "18375", "score": "0", "text": "Good catch. Unfortunately, I think this is as good as it gets.", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2011-01-04T21:08:07.287", "id": "21610", "postId": "18375", "score": "1", "text": "I'd be cool if someone could add if the second method is any more reliable.", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2012-05-17T19:14:36.897", "id": "165236", "postId": "18375", "score": "1", "text": "DO dmidecode and lshw work with ARM embedded devices.", "userDisplayName": null, "userId": "7864" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T11:34:38.943", "id": "18375", "lastActivityDate": "2011-01-23T17:12:35.703", "lastEditDate": "2011-01-23T17:12:35.703", "lastEditorDisplayName": null, "lastEditorUserId": "1067", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "18372", "postTypeId": "2", "score": "64" }
[ { "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 the net where I can find help on the crash?</p> <p>EDIT : I have just found that the processor on the machine is a geode processer and does not support PAE, and I have installed the default kernel that comes with ubuntu server (that uses PAE). Could this be causing the crash?</p> <pre><code>[ 399.757029] BUG: unable to handle kernel paging request at d0c1510c [ 399.760789] IP: [&lt;d0cb5312&gt;] ath_tx_start+0x1022/0x1440 [ath_pci] [ 399.760789] Oops: 0000 [#1] [ 399.760789] last sysfs file: /sys/devices/pci0000:00/0000:00:0e.0/net/ath0/type [ 399.760789] Dumping ftrace buffer: [ 399.760789] (ftrace buffer empty) [ 399.760789] Modules linked in: wlan_scan_sta ath_rate_sample ath_pci wlan ath_hal(P) ipv6 lp parport loop evdev pcspkr scx200 ext3 jbd mbcache ide_gd_modr [ 399.760789] [ 399.760789] Pid: 1918, comm: sshd Tainted: P (2.6.28-6-386 #20-Ubuntu) [ 399.760789] EIP: 0060:[&lt;d0cb5312&gt;] EFLAGS: 00010046 CPU: 0 [ 399.760789] EIP is at ath_tx_start+0x1022/0x1440 [ath_pci] [ 399.760789] EAX: 00000240 EBX: 00000000 ECX: 0000001c EDX: d0c147e0 [ 399.760789] ESI: 00000001 EDI: ce5b7878 EBP: ce45de54 ESP: ce45dd64 [ 399.760789] DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 0068 [ 399.760789] Process sshd (pid: 1918, ti=ce45c000 task=cde7cf80 task.ti=ce45c000) [ 399.760789] Stack: [ 399.760789] 00000018 ce45de47 ce45de40 ce45de46 c030caf1 ce45dd94 00000246 c030caf1 [ 399.760789] 00000000 ce9569c0 031884a0 00007d2b cee684a0 00000246 ce45ddb0 c0309aec [ 399.760789] c0340737 00000000 00003fd0 ce0e05d0 ce424000 ce5b6000 ce5b0600 cee6681e [ 399.760789] Call Trace: [ 399.760789] [&lt;c030caf1&gt;] ? __kfree_skb+0x31/0x80 [ 399.760789] [&lt;c030caf1&gt;] ? __kfree_skb+0x31/0x80 [ 399.760789] [&lt;c0309aec&gt;] ? release_sock+0x7c/0x90 [ 399.760789] [&lt;c0340737&gt;] ? tcp_cleanup_rbuf+0xe7/0x110 [ 399.760789] [&lt;c0309333&gt;] ? sock_common_recvmsg+0x43/0x60 [ 399.760789] [&lt;c030d53c&gt;] ? dev_alloc_skb+0x1c/0x30 [ 399.760789] [&lt;d0cb57fd&gt;] ? ath_mgtstart+0xcd/0x1e0 [ath_pci] [ 399.760789] [&lt;c030d53c&gt;] ? dev_alloc_skb+0x1c/0x30 [ 399.760789] [&lt;d0c75ff5&gt;] ? ieee80211_getmgtframe+0x65/0x90 [wlan] [ 399.760789] [&lt;d0c67ab5&gt;] ? ieee80211_send_nulldata+0x115/0x170 [wlan] [ 399.760789] [&lt;c01403f3&gt;] ? getnstimeofday+0x53/0x100 [ 399.760789] [&lt;d0c657a1&gt;] ? ieee80211_node_timeout+0x2b1/0x300 [wlan] [ 399.760789] [&lt;c012f28d&gt;] ? run_timer_softirq+0x11d/0x1e0 [ 399.760789] [&lt;d0c654f0&gt;] ? ieee80211_node_timeout+0x0/0x300 [wlan] [ 399.760789] [&lt;d0c654f0&gt;] ? ieee80211_node_timeout+0x0/0x300 [wlan] [ 399.760789] [&lt;c012b037&gt;] ? __do_softirq+0x67/0x110 [ 399.760789] [&lt;c01068f9&gt;] ? timer_interrupt+0x29/0x60 [ 399.760789] [&lt;c012b12d&gt;] ? do_softirq+0x4d/0x50 [ 399.760789] [&lt;c012b21d&gt;] ? irq_exit+0x2d/0x40 [ 399.760789] [&lt;c0106221&gt;] ? do_IRQ+0x71/0x90 [ 399.760789] [&lt;c019915d&gt;] ? sys_read+0x3d/0x70 [ 399.760789] [&lt;c01050b3&gt;] ? common_interrupt+0x23/0x30 [ 399.760789] [&lt;c0380000&gt;] ? atm_del_addr+0x130/0x150 [ 399.760789] Code: 45 f3 8b 55 b8 8d 04 40 0f b7 44 82 2c 01 c3 eb 9d c7 04 24 2d eb cb d0 e8 ec 92 6d ef 0f 0b eb fe 0f b6 45 f3 8b 55 b8 8d 04 40 &lt;0f&gt; b [ 399.760789] EIP: [&lt;d0cb5312&gt;] ath_tx_start+0x1022/0x1440 [ath_pci] SS:ESP 0068:ce45dd64 [ 399.760789] Kernel panic - not syncing: Fatal exception in interrupt </code></pre>
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 generic kernel via the package linux-image-generic. ALternatively, one can recompile and install the kernel from source without PAE enabled.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-23T09:16:32.270", "id": "19825", "postId": "18483", "score": "0", "text": "Just waiting for 24 hrs to be over after posting the answer.", "userDisplayName": null, "userId": "7729" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T10:37:22.957", "id": "18483", "lastActivityDate": "2010-12-22T10:37:22.957", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7729", "parentId": "18373", "postTypeId": "2", "score": "0" }
[ { "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 mounted. </p> <p>I would also like to know how it finds out if some images are present in my USB and if "yes" , how it asks me whether I need to open it in GIMP or some other software? </p> <p>I know its a very big and wide question, but please guide me with some pointers on how to understand the whole idea behind it. </p> <p>I have not done large code browsings, but I assure you that I have no problem in doing so if I can be guided correctly. </p>
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>\n<li>Kernel requests to load a driver for the new hardware by calling <em>/sbin/modprobe</em> with hardware's bus/device/etc identifier.</li>\n<li>In user-space, <em>modprobe</em> tries to find a matching driver-specified alias. (See <code>/lib/modules/$(uname -r)/modules.alias</code> for the complete list.) These will look different based on the hardware interface. For example, <code>pci:v0000102Bd00002527sv*sd*bc*sc*i*</code> for a PCI device vendor 102B, device 2527, and anything for subvendor, etc, or USB: <code>usb:v2040p4982d*dc*dsc*dp*ic*isc*ip*</code>.</li>\n<li>once the device driver is loaded (or a new device that already had a driver is initialized), the driver in the kernel sends a notification of the loaded device to <code>udev</code> in userspace.</li>\n<li><code>udev</code> matches the notification against its list of rules in <code>/lib/udev/rules.d/</code> and <code>/etc/udev/rules.d</code>. From here, the behavior is extremely specialized, based on the rules.</li>\n<li>In the case of a USB disk, the <code>80-udisks.rules</code> file is likely the best place to work from. These rules will use things like <em>blkid</em> and other helpers to probe the type and contents of a disk, populating all sort of configuration values including things like <code>ENV{UDISKS_PRESENTATION_HIDE}=\"1\"</code> to ignore a disk for some reason. See \"man 7 udisks\" for details.</li>\n<li>The <em>udisks-daemon</em> watches for devices to appear in the <em>udev</em> database, and presents them them as a discoverable list of devices over DBus. (See \"udisks --enumerate\".)</li>\n<li>Various actions are configured in <em>udisks</em>, and the policy for allowing those actions can be seen in the policy file <code>/usr/share/polkit-1/actions/org.freedesktop.udisks.policy</code>. (Who can mount, umount, etc.)</li>\n<li>Services that are interested in devices will listen for DBus events from <em>udisks</em>, and take actions when they see certain conditions. For example, GNOME's Nautilus (via gvfs volume-monitor) will request automounting for devices (via <em>udisks</em>, which will check its policy, mentioned above).</li>\n<li>Once a filesystem has been mounted, those same listening services will take more actions. For example, Nautilus will ask if you want to open <em>F-Spot</em> when the common photo storage directory <code>DCIM</code> is found on a filesystem.</li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-12-11T10:42:53.307", "id": "1041547", "postId": "18678", "score": "1", "text": "Maybe you know how this differs during boot (I assume only step 1 is different)? Why could a device not be detected during boot, but correctly load after manual replugging?", "userDisplayName": null, "userId": "70751" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T22:31:33.417", "id": "18678", "lastActivityDate": "2010-12-23T22:50:05.187", "lastEditDate": "2010-12-23T22:50:05.187", "lastEditorDisplayName": null, "lastEditorUserId": "721", "ownerDisplayName": null, "ownerUserId": "721", "parentId": "18374", "postTypeId": "2", "score": "16" }
[ { "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 automatically copied to the clipboard and whatever is in the clipboard pasted by midle clicking. I'd don't use this because it's incredibly annoying, but the option is there. Glippy: <a href=\"https://launchpad.net/~bikooo/+archive/glippy\" rel=\"nofollow\">https://launchpad.net/~bikooo/+archive/glippy</a></p>\n\n<p>To do exactly what you want you can use xte. Xte is part of the \"xautomation\" package:</p>\n\n<pre><code>sudo apt-get install xautomation\n</code></pre>\n\n<p>Assuming you're using Compiz, open the Compiz Config Manager. Go to the \"Commands\" section, then enter something like this as a command:</p>\n\n<pre><code>xte 'keydown Control_L' 'key c' 'keyup Control_L'\n</code></pre>\n\n<p>The go to the \"Button Bindings\" tab and map the command to Ctrl+Button3.</p>\n\n<p>Now holding Ctr and pressing the right mouse button will act as pressing Ctrl+C.</p>\n\n<p>To also get this behavior in a terminal the command would be:</p>\n\n<pre><code>xte 'keydown Control_L' 'keydown Shift_L' 'key c' 'keyup Control_L' 'keyup Shirt_L'\n</code></pre>\n\n<p>To learn more about how to emulate key presses with xte type</p>\n\n<pre><code>man xte\n</code></pre>\n\n<p>Into a terminal after you install xautomation.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T14:15:54.657", "id": "18392", "lastActivityDate": "2010-12-21T14:15:54.657", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1910", "parentId": "18385", "postTypeId": "2", "score": "2" }
[ { "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 found in these directories: /usr/share/texmf/web2c:/usr/share/texmf-texlive/web2c:/usr/local/share/texmf/web2c</p> </blockquote> <p>(If you are using TeX Live installed from TUG, you can just use the provided xdvi to view dvi files.)</p>
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 location. (Or you will have to install evince manually as well)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-04-05T07:45:46.443", "id": "33599", "lastActivityDate": "2011-04-05T07:45:46.443", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7411", "parentId": "18387", "postTypeId": "2", "score": "3" }
[ { "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", "text": "+1 RVM is wonderful. Somewhat overkill if you are only using it to export the PATH, but it has a *LOT* of very useful features.", "userDisplayName": null, "userId": "6161" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T13:52:27.370", "id": "18391", "lastActivityDate": "2010-12-21T13:52:27.370", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7742", "parentId": "18389", "postTypeId": "2", "score": "3" }
[ { "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 be reported against appmenu-gtk.</p>\n\n<ul>\n<li><a href=\"https://bugs.launchpad.net/indicator-appmenu/\" rel=\"nofollow\">https://bugs.launchpad.net/indicator-appmenu/</a></li>\n<li><a href=\"https://bugs.launchpad.net/appmenu-gtk\" rel=\"nofollow\">https://bugs.launchpad.net/appmenu-gtk</a></li>\n</ul>\n\n<p><a href=\"https://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationMenu\" rel=\"nofollow\">Wiki page</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T15:35:30.453", "id": "18396", "lastActivityDate": "2010-12-21T15:35:30.453", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "18395", "postTypeId": "2", "score": "4" }
[ { "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 pair it again.</p> <p>Apparently, there are secret keys created after each pairing which are different between my Ubuntu and Windows installations (or something alike).</p> <p>How do I make my phone recognize both Ubuntu and Windows — or how do I make Ubuntu (or Windows) use the same secret keys as the other OS — or …?</p>
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. Well in my case everything in the dist, pool and casper folder. It worked the two times i have tried but am talking about when 10.10 was in beta till it was released.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-03T02:12:48.717", "id": "21260", "postId": "18410", "score": "0", "text": "i don't think that this solves bandwith constraints", "userDisplayName": null, "userId": "1256" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T18:10:04.410", "id": "18410", "lastActivityDate": "2010-12-21T18:10:04.410", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "18403", "postTypeId": "2", "score": "1" }
[ { "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://www.atlassian.com/software/jira/" rel="nofollow">Jira</a>, which has its own Tomcat-style start and stop scripts - <code>$JIRA_HOME/bin/startup.sh</code> and <code>$JIRA_HOME/bin/shutdown.sh</code>.</p>
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/InstallingLinuxAlsaDriverModules" rel="nofollow noreferrer">https://wiki.ubuntu.com/Audio/InstallingLinuxAlsaDriverModules</a></p> <p>This answer did work and my audio driver was working until I updated my kernel...</p> <p>Now the new kernel is Linux 2.6.32-27 generic. How can I get the Alsa module driver to work on this new kernel?</p> <p>Or at least, how can I go back to the old kernel?</p> <p>I tried to run this command:</p> <pre><code>apt-get install linux-alsa-driver-modules-$(uname -r) </code></pre> <p>And this is what I get: </p> <blockquote> <p>Couldn't find package linux-alsa-driver-modules-2.6.32-27-generic</p> </blockquote>
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. Once he commits the change and kicks off the daily build, the next available linux-alsa-driver-modules for 10.04 from the ppa should resolve your issue.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-03-30T17:06:35.050", "id": "36697", "postId": "18434", "score": "0", "text": "can you help me again, another kernal update had happened and i need new audio driver.. please help", "userDisplayName": null, "userId": "7601" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T21:25:26.577", "id": "18434", "lastActivityDate": "2010-12-21T21:25:26.577", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6369", "parentId": "18411", "postTypeId": "2", "score": "2" }
[ { "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 system, math functions, color definitions, etc. It basically provides all the primitive types for a widget system (color, rectangle, point). Very little logic is present here, this is a foundational library.</p>\n\n<p>NuxGraphics is a thin OpenGL abstraction layer. It provides simplifications of common OpenGL patterns (pushing and popping clipping rectangles, changing render targets, state setting, etc), however it does not directly forbid users from making raw OpenGL calls themselves. NuxGraphics provides abstractions for textures and loading/unloading data.</p>\n\n<p>Nux is a widget library implemented on top of NuxCore and NuxGraphics. Nux contains a duplicate for almost every major widget in the GTK stack as well as several composition widgets (color picker, graphs, 3d views). The Nux widgets are not yet at the same level of complexity as GTK widgets, lacking advanced text rendering (being fixed) and clear theming support.</p>\n\n<p>Rendering inside of nux could be described as “canvas style”. Nux provides a painter to perform basic drawing primitives which can be used in addition to embedding other widgets. So rather than embedding an hbar to create a horizontal line, a widget author may, at their choice, use the painter to draw the bar directly. Images may also be rendered in this fashion, rather the embedding an additional widget simply to render a static non-reactive image. This does not however rule out simply embedding widgets.</p>\n\n<p>In Unity nux is used in what we call “Embedded Mode”. Essentially nux provides a function for painting itself in a foreign open gl context. We call the paint function and nux blits itself onto the backbuffer. We can then continue to paint on top of it if we desire (sometimes we allow compiz to do this). There are functions provided to do opengl state management in embedded mode.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-04-16T21:22:27.670", "id": "39623", "postId": "18414", "score": "1", "text": "very informative, Jason. Thanks. Is there a link to where one can find more information?", "userDisplayName": null, "userId": "4442" }, { "creationDate": "2011-08-21T21:59:13.383", "id": "66176", "postId": "18414", "score": "0", "text": "Is there any aim to possibly \"expand\" Nux into a primary toolkit for Ubuntu the way that GTK+ is currently the \"primary\" toolkit?", "userDisplayName": null, "userId": "12558" }, { "creationDate": "2023-01-19T13:48:00.203", "id": "2533593", "postId": "18414", "score": "0", "text": "Ubuntu has been doing Flutter lately, like in the new installer. Nux seems to be used by the Unity team, unrelated to Canonical, AFAIK", "userDisplayName": null, "userId": "23526" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T18:38:45.423", "id": "18414", "lastActivityDate": "2010-12-21T18:38:45.423", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7121", "parentId": "18413", "postTypeId": "2", "score": "71" }
[ { "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.com/Qp3xb.png\" alt=\"bzr branch\" /></a></p>\n<p>Sound Theme Manager is a program for managing <a href=\"http://www.freedesktop.org/wiki/Specifications/sound-theme-spec\" rel=\"nofollow noreferrer\">freedesktop.org sound themes</a> that can:</p>\n<ul>\n<li>Set the desktop sound theme.</li>\n<li>Create sound theme packages from existing themes.</li>\n<li>Install sound theme packages.</li>\n<li>Remove sound themes.</li>\n<li>Play a preview sound for a sound theme.</li>\n<li>Browse through the sounds in a theme and play them.</li>\n<li>Create new sound themes.</li>\n<li>Edit sound theme metadata.</li>\n<li>Edit the sound theme sounds.</li>\n</ul>\n<p>It currently only supports a (large) subset of the sound theme specification but will eventually be fully compliant.</p>\n<hr />\n<p><strong>Full Disclosure:</strong> I am the developer.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-21T23:27:11.400", "id": "19674", "postId": "18432", "score": "0", "text": "Thanks !!! I'll try to use it and, maybe 'dig in to the python API' :)", "userDisplayName": null, "userId": "5011" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-21T21:16:38.843", "id": "18432", "lastActivityDate": "2017-02-21T17:27:46.757", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "667", "parentId": "18416", "postTypeId": "2", "score": "3" }
[ { "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 audio jack from my onboard soundcard for my audio connection.</p> <p>Any ideas on how to resolve this?</p> <p>I ran this command</p> <pre><code>ubuntu-bug audio </code></pre> <p>And it outputted this:</p> <pre><code>You seem to have configured PulseAudio to use the "pci-0000_05_00.1" card, while you want output from "NFORCE - NVidia CK804". </code></pre> <p>I've tired a bit of messing about with the audio settings but can't get anything to work.</p>
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="noreferrer">Emacs</a> and <a href="https://en.wikipedia.org/wiki/Bazaar_%28software%29" rel="noreferrer">Bazaar</a> (<code>bzr</code>) also launch stuff in Firefox instead of Chromium.</p> <p>Are there any additional settings which affect xdg-open functionality?</p> <p>Something is definitely broken:</p> <h3>Update</h3> <p>I have purged Firefox:</p> <ul> <li>update-alternatives - uses the Chromium browser</li> <li>sensible-browser - opens the Chromium browser</li> <li>xdg-open &amp; gnome-open - opens using google-chrome which kindly tells me &quot;it's not default browser&quot;</li> </ul> <p>!!!!</p>
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 also change your host key,to change your host key open virtualbox and then goto File menu and choose preferences.</li>\n<li>In preferences choose input,you can see your host key there.<br>\n<img src=\"https://i.stack.imgur.com/EXG7O.png\" alt=\"alt text\"> </li>\n<li>You can change it if you need. </li>\n<li>Also you have to install <strong>Guest Additions</strong> to enable full screen mode.</li>\n</ul>\n\n<p><strong>Installing Guest Additions for full screen</strong></p>\n\n<ul>\n<li><p>Go to Devices and choose <strong>Install Guest additions</strong> on the top of your virtualization window.<br>\n<img src=\"https://i.stack.imgur.com/rXMPh.png\" alt=\"alt text\"> </p></li>\n<li><p>Open the Guest Additions folder which should be on your Desktop in Ubuntu or in Places menu, and open Autorun.sh in terminal by double clicking on the autorun.sh file and picking <strong>run in Terminal</strong> from the pop-up window button options.Type in your password and wait a few minutes to install guest editions.\n<img src=\"https://i.stack.imgur.com/cRwcq.png\" alt=\"alt text\"></p></li>\n<li><p>After installing Guest additions restart your virtual machine(ubuntu).\n<img src=\"https://i.stack.imgur.com/ssg14.png\" alt=\"alt text\"></p></li>\n<li><p>Now you will have better performance and bigger display resolutions.</p></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2019-09-18T09:53:49.860", "id": "1961210", "postId": "18426", "score": "0", "text": "in my case (VirtualBox 6.0) _Insert Guest Additions CD Image_ did the trick.", "userDisplayName": null, "userId": "164370" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T20:05:39.140", "id": "18426", "lastActivityDate": "2010-12-24T21:02:24.163", "lastEditDate": "2010-12-24T21:02:24.163", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "18425", "postTypeId": "2", "score": "38" }
[ { "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 asking for configuration information. Since I intend to just copy an existing <code>/etc/ldap.conf</code> file to overwrite the auto generated one I'd like to skip that step but don't know how. </p> <p>How do you install a package and make it skip its interactive configuration stage?</p>
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", "postId": "18436", "score": "1", "text": "Thanks for your answer! Also, before I use it on a none test environment, is there a way to get a list of all config files the command normally makes so that I can make sure to override them? (The reason I ask is that I think it creates another config files besides /etc/ldap.conf?)", "userDisplayName": null, "userId": "4500" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-21T22:10:59.890", "id": "18436", "lastActivityDate": "2010-12-21T22:10:59.890", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "18429", "postTypeId": "2", "score": "7" }
[ { "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).. once I saw it say 'ok' at the end but it still locks there.</p> <p>I have tried to change the boot sequence by inserting 'debug' and 'acpi-off' into txt.cfg in both isolinux and syslinux folders but no changes were obvious during the boot.. as far as it got.</p> <p>The pc is built with an abit IP35 motherboard and nvidia 8600GT gfx card.</p> <p>Does anyone have any suggestion of what else I can change to get the install working?</p>
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 while installing from the CD was nice and small.</p> <p>How can I make the console text look like it looked while booting from the CD?</p>
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_GFXMODE= ...</code> and change it to the resolution you want. Add another line for a new variable called <code>GRUB_GFXPAYLOAD</code> with the same resolution. It should look similar to this:</p>\n\n<pre><code>GRUB_GFXMODE=1440x900x32\nGRUB_GFXPAYLOAD=1440x900x32\n</code></pre>\n\n<p>Save and exit. Then edit as root <code>/etc/grub.d/00_header</code></p>\n\n<p>Localize the line that says <code>if [ \"x${GRUB_GFXMODE}\" = \"x\" ] ; then GRUB_GFXMODE=...</code> . As before, change the resolution there to the one you want and add another line for payload:</p>\n\n<pre><code>if [ \"x${GRUB_GFXMODE}\" = \"x\" ] ; then GRUB_GFXMODE=1440x900x32 ; fi\nif [ \"x${GRUB_GFXPAYLOAD}\" = \"x\" ] ; then GRUB_GFXPAYLOAD=1440x900x32 ; fi\n</code></pre>\n\n<p>Finally, locate the line that says set <code>gfxmode=${GRUB_GFXMODE}</code> and add a line for payload below it. It should look like this:</p>\n\n<pre><code>set gfxmode=${GRUB_GFXMODE}\nset gfxpayload=${GRUB_GFXPAYLOAD}\n</code></pre>\n\n<p>Save and exit.</p>\n\n<p>Still as root, refresh grub with</p>\n\n<pre><code>update-grub2\n</code></pre>\n\n<p>Reboot, and both the grub menu and the console should have nicer resolutions.</p>\n\n<p>Finished!</p>\n", "commentCount": "13", "comments": [ { "creationDate": "2011-01-19T03:36:06.337", "id": "23983", "postId": "18463", "score": "0", "text": "This did not seem to work for me. I was using the resolution of 1366x768x32.", "userDisplayName": null, "userId": "1879" }, { "creationDate": "2011-01-19T09:59:20.117", "id": "24009", "postId": "18463", "score": "1", "text": "My solution will only work for grub2, I think. Are you using grub 1, maybe? If yes, try with a lower resolution first - for example 1024x768x32. Regards!", "userDisplayName": null, "userId": "6445" }, { "creationDate": "2011-05-24T22:12:47.430", "id": "49450", "postId": "18463", "score": "1", "text": "unfortunately didn't work for me, running 10.10", "userDisplayName": null, "userId": "6908" }, { "creationDate": "2011-05-24T22:14:32.687", "id": "49451", "postId": "18463", "score": "1", "text": "my monitor's default resolution is 1680x1050 so I just replaced every 1440x900 with 1680x1050. No luck.", "userDisplayName": null, "userId": "6908" }, { "creationDate": "2011-09-15T09:16:23.147", "id": "70468", "postId": "18463", "score": "3", "text": "Looks like that at the moment grub2 doesn't use 'GRUB_GFXPAYLOAD' option, only 'GRUB_GFXPAYLOAD_LINUX'. See the official documentation on grub2: http://www.gnu.org/software/grub/manual/grub.html#gfxpayload", "userDisplayName": null, "userId": "8073" }, { "creationDate": "2012-11-17T16:07:01.953", "id": "270173", "postId": "18463", "score": "2", "text": "It would be more interesting to see a response that is more generic, that will work with most resolutions.", "userDisplayName": null, "userId": "1004" }, { "creationDate": "2013-07-01T13:42:06.633", "id": "398613", "postId": "18463", "score": "0", "text": "Seriously, It works :)", "userDisplayName": null, "userId": "147253" }, { "creationDate": "2013-12-08T07:45:00.037", "id": "495654", "postId": "18463", "score": "0", "text": "What's the difference between GRUB_GFXMODE and GRUB_GFXPAYLOAD?", "userDisplayName": null, "userId": "31521" }, { "creationDate": "2014-06-23T12:34:40.403", "id": "650435", "postId": "18463", "score": "2", "text": "This answer is depreciated and did not work for me on Ubuntu Server 12.04 LTS. Furthermore, it involves editing a file named `00_header` which really should not be edited.", "userDisplayName": null, "userId": "164341" }, { "creationDate": "2015-07-10T12:02:33.797", "id": "927629", "postId": "18463", "score": "1", "text": "This solution failed to me with `1440x900x32` but it did work for `1024x768x24`. I am running Ubuntu Server 14.04 LTS in VirtualBox 4.3.26. Vranger's answer worked smoother.", "userDisplayName": null, "userId": "239396" }, { "creationDate": "2015-08-21T21:56:46.167", "id": "958206", "postId": "18463", "score": "0", "text": "this solution does not work with UBUNTU GNOME 15.04", "userDisplayName": null, "userId": "69037" }, { "creationDate": "2015-08-27T16:29:48.727", "id": "962542", "postId": "18463", "score": "1", "text": "This worked for me on Ubuntu 14.04, but I did not need to do the step of editing 00_header. Modifying /etc/default/grub and then running sudo update-grub and rebooting was all I needed.", "userDisplayName": null, "userId": "14355" }, { "creationDate": "2018-02-20T05:26:58.673", "id": "1631985", "postId": "18463", "score": "0", "text": "There's no reason to edit `/etc/grub.d/00_header`. See the [answer by A.B.](https://askubuntu.com/a/609523/272667)", "userDisplayName": null, "userId": "272667" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-22T04:54:13.727", "id": "18463", "lastActivityDate": "2015-04-15T07:53:56.657", "lastEditDate": "2015-04-15T07:53:56.657", "lastEditorDisplayName": null, "lastEditorUserId": "367165", "ownerDisplayName": null, "ownerUserId": "6445", "parentId": "18444", "postTypeId": "2", "score": "40" }
[ { "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": "2010-12-22T00:14:40.677", "id": "19677", "postId": "18447", "score": "0", "text": "Thanks, solved my problem! (doesn't answer the GNOME Do question though!)", "userDisplayName": null, "userId": "2331" }, { "creationDate": "2010-12-22T00:24:53.377", "id": "19678", "postId": "18447", "score": "2", "text": "@Olivier That *is* where Gnome Do looks. Those are the only standard directories for launchers.", "userDisplayName": null, "userId": "114" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T00:10:17.353", "id": "18447", "lastActivityDate": "2010-12-22T00:10:17.353", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "114", "parentId": "18445", "postTypeId": "2", "score": "3" }
[ { "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"></p> <p>And, after working for a few seconds it turns to this:</p> <p><img src="https://i.stack.imgur.com/KnO3V.png" alt="alt text"></p> <p>Launching Jockey from the command line or application menu, it doesn't recognize my proprietary drivers nor will it complete the package index download successfully. Output of jockey.log:</p> <pre><code>010-12-21 11:31:52,242 DEBUG: Updating repository indexes... 2010-12-21 11:31:58,162 DEBUG: ... fail! 2010-12-21 11:32:15,345 DEBUG: updating &lt;jockey.detection.LocalKernelModulesDriverDB instance at 0x7f13ea279050&gt; 2010-12-21 11:32:15,346 DEBUG: reading modalias file /lib/modules/2.6.35-22-generic/modules.alias 2010-12-21 11:32:15,506 DEBUG: reading modalias file /usr/share/jockey/modaliases/bcmwl 2010-12-21 11:32:15,513 DEBUG: reading modalias file /usr/share/jockey/modaliases/disable-upstream-nvidia 2010-12-21 11:32:15,571 DEBUG: reading modalias file /usr/share/jockey/modaliases/fglrx-modules.alias.override 2010-12-21 11:32:15,579 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-173 2010-12-21 11:32:15,590 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-96 2010-12-21 11:32:15,593 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-current 2010-12-21 11:32:15,967 WARNING: _detect_handlers(): No package repositories available, skipping check 2010-12-21 11:56:02,015 DEBUG: Updating repository indexes... 2010-12-21 11:56:05,044 DEBUG: ... fail! 2010-12-21 11:56:22,847 DEBUG: updating &lt;jockey.detection.LocalKernelModulesDriverDB instance at 0x7f071d91e2d8&gt; 2010-12-21 11:56:22,848 DEBUG: reading modalias file /lib/modules/2.6.35-22-generic/modules.alias 2010-12-21 11:56:22,999 DEBUG: reading modalias file /usr/share/jockey/modaliases/bcmwl 2010-12-21 11:56:22,999 DEBUG: reading modalias file /usr/share/jockey/modaliases/disable-upstream-nvidia 2010-12-21 11:56:23,054 DEBUG: reading modalias file /usr/share/jockey/modaliases/fglrx-modules.alias.override 2010-12-21 11:56:23,055 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-173 2010-12-21 11:56:23,057 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-96 2010-12-21 11:56:23,059 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-current 2010-12-21 11:56:23,402 WARNING: _detect_handlers(): No package repositories available, skipping check 2010-12-21 11:56:30,662 DEBUG: Shutting down 2010-12-21 12:33:34,267 DEBUG: Updating repository indexes... 2010-12-21 12:33:39,794 DEBUG: ... fail! 2010-12-21 12:34:01,366 DEBUG: updating &lt;jockey.detection.LocalKernelModulesDriverDB instance at 0x7f28ff9202d8&gt; 2010-12-21 12:34:01,367 DEBUG: reading modalias file /lib/modules/2.6.35-22-generic/modules.alias 2010-12-21 12:34:01,544 DEBUG: reading modalias file /usr/share/jockey/modaliases/bcmwl 2010-12-21 12:34:01,545 DEBUG: reading modalias file /usr/share/jockey/modaliases/disable-upstream-nvidia 2010-12-21 12:34:01,603 DEBUG: reading modalias file /usr/share/jockey/modaliases/fglrx-modules.alias.override 2010-12-21 12:34:01,605 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-173 2010-12-21 12:34:01,607 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-96 2010-12-21 12:34:01,608 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-current 2010-12-21 12:34:01,960 WARNING: _detect_handlers(): No package repositories available, skipping check 2010-12-21 12:37:20,743 DEBUG: Updating repository indexes... 2010-12-21 12:37:23,362 DEBUG: ... fail! 2010-12-21 12:37:23,367 DEBUG: Shutting down 2010-12-21 14:44:08,534 DEBUG: Updating repository indexes... 2010-12-21 14:44:14,607 DEBUG: ... fail! 2010-12-21 15:56:17,036 DEBUG: Updating repository indexes... 2010-12-21 15:56:21,282 DEBUG: ... fail! 2010-12-21 15:56:39,950 DEBUG: updating &lt;jockey.detection.LocalKernelModulesDriverDB instance at 0x1cc72d8&gt; 2010-12-21 15:56:39,952 DEBUG: reading modalias file /lib/modules/2.6.35-22-generic/modules.alias 2010-12-21 15:56:40,154 DEBUG: reading modalias file /usr/share/jockey/modaliases/bcmwl 2010-12-21 15:56:40,154 DEBUG: reading modalias file /usr/share/jockey/modaliases/disable-upstream-nvidia 2010-12-21 15:56:40,213 DEBUG: reading modalias file /usr/share/jockey/modaliases/fglrx-modules.alias.override 2010-12-21 15:56:40,214 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-173 2010-12-21 15:56:40,217 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-96 2010-12-21 15:56:40,219 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-current 2010-12-21 15:56:40,619 WARNING: _detect_handlers(): No package repositories available, skipping check 2010-12-21 18:44:24,984 DEBUG: Updating repository indexes... 2010-12-21 18:44:31,786 DEBUG: ... fail! 2010-12-21 18:44:49,601 DEBUG: updating &lt;jockey.detection.LocalKernelModulesDriverDB instance at 0x1da73b0&gt; 2010-12-21 18:44:49,603 DEBUG: reading modalias file /lib/modules/2.6.35-22-generic/modules.alias 2010-12-21 18:44:49,864 DEBUG: reading modalias file /usr/share/jockey/modaliases/bcmwl 2010-12-21 18:44:49,866 DEBUG: reading modalias file /usr/share/jockey/modaliases/disable-upstream-nvidia 2010-12-21 18:44:49,917 DEBUG: reading modalias file /usr/share/jockey/modaliases/fglrx-modules.alias.override 2010-12-21 18:44:49,919 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-173 2010-12-21 18:44:49,922 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-96 2010-12-21 18:44:49,923 DEBUG: reading modalias file /usr/share/jockey/modaliases/nvidia-current 2010-12-21 18:44:50,224 WARNING: _detect_handlers(): No package repositories available, skipping check 2010-12-21 18:46:19,366 DEBUG: Updating repository indexes... 2010-12-21 18:46:24,865 DEBUG: ... fail! </code></pre> <p>Does anyone know of a way to fix this? I miss my effects.</p>
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", "id": "162337", "postId": "18955", "score": "0", "text": "having the same problem....solution doesn't worked for me.", "userDisplayName": null, "userId": "39455" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-27T01:29:43.513", "id": "18955", "lastActivityDate": "2010-12-27T01:29:43.513", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5197", "parentId": "18449", "postTypeId": "2", "score": "0" }
[ { "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>--select</code> will immediately open the shutter mainwindow, without allowing me to select anything. The contextmenu of shutter still has the 'Selection' option, which makes me wonder why the commandline option had been removed.</p> <p>Is there a different way to toggle the Selection option in shutter from the commandline?</p>
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": "0", "text": "@Jorge Castro Thanks for reminding me. When I've written this answer, the site didn't allow me to accept it, and I had to wait a while... looks like I forgot to accept it. :-)", "userDisplayName": "user2817", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T10:26:27.760", "id": "18481", "lastActivityDate": "2010-12-22T10:26:27.760", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "user2817", "ownerUserId": null, "parentId": "18450", "postTypeId": "2", "score": "1" }
[ { "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 many, but they annoy anyway) a home directory. Renaming them is not an option, as the applications won't find them in this case (and will create them again).</p> <p>Is there a way to hide a folder having no dot starting its name from being displayed in common file system browsers (I actually use Thunar of XFCE, alongside with Midnight Commander and Krusader, but wouldn't mind to know about Nautilus too).</p>
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>Save the following code in a new file in your home folder. Name it <code>Hide</code>. </p>\n\n<pre class=\"lang-python prettyprint-override\"><code>#!/usr/bin/env python\n\nimport commands\nfrom os.path import join\n\n\nfiles = commands.getoutput(\"echo $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS\")\ncwd = commands.getoutput(\"echo $NAUTILUS_SCRIPT_CURRENT_URI\")\ncwd = cwd[7:]\n\nfor f in files.split(\" /\"):\n\n f = f.split(\"/\")[-1]\n\n commands.getoutput(\"echo \"+f+\" &gt;&gt; \"+join(cwd, \".hidden\"))\n</code></pre></li>\n<li><p>Run the following command to install the script: </p>\n\n<pre><code>cp Hide ~/.local/share/nautilus/scripts/ &amp;&amp; chmod u+x ~/.local/share/nautilus/scripts/Hide\n</code></pre></li>\n<li><p>In Nautilus, select one or more files/folders and right click. Select <em>Hide</em> from the <em>Scripts</em> menu: </p>\n\n<p><img src=\"https://i.stack.imgur.com/M0p8I.png\" alt=\"enter image description here\"></p>\n\n<p>Reload the current location ( <kbd>F5</kbd> ) and the selected files/folders will be hidden. </p></li>\n</ol>\n\n<h2>Command line</h2>\n\n<p>Say you want to hide a folder called \"Rick Astley's Greatest Hits\", just run the following command: </p>\n\n<pre><code>echo \"Rick Astley's Greatest Hits\" &gt;&gt; .hidden\n</code></pre>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-12-22T02:42:17.690", "id": "19680", "postId": "18452", "score": "2", "text": "Exactly a kind of answer I wished to get. But, unfortunately, doesn't work for Thunar.", "userDisplayName": null, "userId": "2390" }, { "creationDate": "2010-12-22T02:50:53.860", "id": "19682", "postId": "18452", "score": "0", "text": "@Ivan, Hopefully they will add it eventually, see the bug report I linked to in my answer.", "userDisplayName": null, "userId": "114" }, { "creationDate": "2010-12-22T08:17:02.233", "id": "19698", "postId": "18452", "score": "0", "text": "Why double quotes \"ObnoxiousFolder\"??", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2013-01-07T17:46:51.583", "id": "295496", "postId": "18452", "score": "0", "text": "FYI, the bug report was closed as WONTFIX (rather rudely IMO, since there was a patch for it already, and the project maintainer basically said \"I don't care\"). We will need another solution...", "userDisplayName": null, "userId": "23900" }, { "creationDate": "2014-07-11T14:59:55.197", "id": "664779", "postId": "18452", "score": "1", "text": "Recent version of Thunar support this as they use GIO to determine hidden directories, and GIO now implements support for the `.hidden` file.", "userDisplayName": null, "userId": "304605" }, { "creationDate": "2014-11-11T12:30:50.447", "id": "751234", "postId": "18452", "score": "0", "text": "Nice script, though I [prefer](http://askubuntu.com/a/548288/929) using more of Python's [own](http://stackoverflow.com/q/4906977/321973) [IO](http://stackoverflow.com/q/4706499/321973). According to https://help.ubuntu.com/community/NautilusScriptsHowto `NAUTILUS_SCRIPT_SELECTED_FILE_PATHS` is newline-separated, so shouldn't your `for ... split` be with `()` instead of `(\" /\")? (The slash is irrelevant, since you only take the `basename` anyway, for which you could use [`os.path.basename`](http://stackoverflow.com/q/22272003/321973) btw)", "userDisplayName": null, "userId": "929" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-22T02:31:29.523", "id": "18452", "lastActivityDate": "2016-04-21T02:11:39.437", "lastEditDate": "2016-04-21T02:11:39.437", "lastEditorDisplayName": null, "lastEditorUserId": "158442", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "18451", "postTypeId": "2", "score": "20" }
[ { "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 render it software. I understand (because the same case caused similar problem in Arch I used half a year ago, not just Ubuntu, and the problem never occurs when I use other window managers than XFWM) that this is probably a problem of the combination of My Intel card with XFWM. From this comes the problem - where to submit the bug - to XFCE bug tracker or to Intel one (which I even have no idea where to look for). At the same time I wouldn't like to register in those issue trackers just to use them once. So I am not straight about submitting the bug, but can explain clearly how to reproduce it, which, I believe can itself still be a useful contribution to the community.</p> <p>So, is there a way to submit a bug I've experienced without complications, for better-qualified specialists to review it and put into corresponding issue trackers themselves if they aren't there yet?</p>
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 program I could find. </p> <p>Including </p> <ul> <li><p>Sound Converter </p></li> <li><p>soundKonverter (KDE) </p></li> <li><p>WinFF </p></li> <li><p>Arista Transcoder, Handbrake, Transmageddon (fails, seems only video works)</p></li> <li><p>ffmpeg (tried "-acodec libfaac -ab 192k -map_meta_data outfile.m4a:infile.mp3")</p></li> </ul> <p>But either they don't transfer the tags or they don't offer any way to set the bitrate to fixed 192kb or the resulting file doesn't show the new bitrate in any audio program (for example: nautilus saying "bitrate" n.a.")! </p>
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>You could expand that to clean up the original files or save them somewhere else (I was actually struggling with that bit).</p>\n\n<p>For some reason, mine was crawling along at 190kbits/s so there might be a better encoding string (I should hope there is, this is a bit silly).</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-12-23T08:24:42.833", "id": "19820", "postId": "18521", "score": "0", "text": "hi Oli! thx for your line here. If you're struggling with cleaning up - you can use winff and add your line (well parts of your line) as custom profile, winFF is a gui for ffmpeg I guess. Funny thing still, all my *.m4a (aac) files from different sources show a bitrate whith every program reading the tags. The ones I convert myself don't, it seems like ffmpeg doesn't write the tag \"bitrate\" and the music library managment programs don't compute and add them. Cause I share my music with my girlfriends ipod, apple desktop and ps3 over lan streaming I'd rather have the bitrate info in correct.", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2010-12-23T08:28:00.020", "id": "19821", "postId": "18521", "score": "0", "text": "To be precise: converting to other formats then aac ffmpeg writes a correct bitrate tag! (tested with mp3 ogg). It would be so nice if all devices could read ogg - I'd happily stick with that! Annoying ...", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2010-12-23T08:44:45.820", "id": "19823", "postId": "18521", "score": "0", "text": "Checking once more I found that nautilus shows the bitrate on different songs encoded with 192k *.m4a on other devices NOT by reading the \"bitrate\" tag - there is none set! So the gstreamer backend seems to be able to compute the bitrate showing values like \"188k\", \"192k\", \"189k\" - all around the 192k that programs claimed they encoded with.", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2010-12-23T09:22:27.537", "id": "19827", "postId": "18521", "score": "0", "text": "hi Oli! If I open the encoded files (your line or my line) doesn't matter! with the program \"mediainfo\" it computes a bitrate of 152k! So by telling ffmpeg to encode with 192k it seems to result in 152k bitrate ... wtf is going on?", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2011-01-24T15:36:16.467", "id": "24881", "postId": "18521", "score": "2", "text": "for multicore systems, try `find . -name \"*.flac\" -print0 |xargs -r0I {} -P 6 ffmpeg -ab 192k -i \"{}\" -map_meta_data \"{}.m4a\":\"{}\" \"{}.m4a\"`: the `-P` argument is the number of concurrent jobs to run.", "userDisplayName": null, "userId": "2327" }, { "creationDate": "2011-01-24T15:37:54.530", "id": "24883", "postId": "18521", "score": "0", "text": "@piedro: what is the bitrate if you calculate by hand? take a long-ish track, divide the filesize by the length in seconds, convert from bytes to bits... the longer the better, as there will be some error due to the headers (especially if you have a lot of metadata)", "userDisplayName": null, "userId": "2327" }, { "creationDate": "2011-02-15T08:47:17.157", "id": "29090", "postId": "18521", "score": "0", "text": "Sry for the pause! Mediainfo tells me it's still 152 kbit rate. Calculate manually 9.3 MB file 8:25 min length resulting in a kbitrate of roughly 151 kbit. It's obviously faulty.", "userDisplayName": null, "userId": "3275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T16:12:57.017", "id": "18521", "lastActivityDate": "2010-12-22T16:12:57.017", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "18454", "postTypeId": "2", "score": "5" }
[ { "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 left :( )</p> <p>I resized it and created a new partition as you can see in the next image</p> <p>I've tried booting from Ubuntu live CD and from a USB and what I can see in Gparted is exactly as in the picture below</p> <p>I would like to move my home directory to the new partition of expand it.</p> <p>This is a snapshot of what I can see on my Gparted (note: the new partition is never used I just created it)</p> <p><a href="http://www.ps-revolution.net/pic/afc3cbbf9f1ba853b2d62f03cf132e8c.png" rel="nofollow">http://www.ps-revolution.net/pic/afc3cbbf9f1ba853b2d62f03cf132e8c.png</a></p> <p>This is from Disk Utilities</p> <p><a href="http://www.ps-revolution.net/pic/d40aa2975f8b1679d867f7ef2587089b.png" rel="nofollow">http://www.ps-revolution.net/pic/d40aa2975f8b1679d867f7ef2587089b.png</a></p> <p>Thanks in Advance</p>
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 which isn't being used.</p>\n\n<p><img src=\"https://i.stack.imgur.com/WaBBU.png\" alt=\"alt text\"></p>\n\n<p>From your image here you can see in (1) where the ntfs partition (which is windows) is mounted as the host. Where as the Ubuntu partition (2) isn't mounted at all as anything. Also the new Ubuntu partition you've made (3) is where I think you've resized the Ubuntu partition (2) and created a new space, which is also not being used or mounted.</p>\n\n<p>To solve this mess you need to back up all your files, delete the new partition and resize the Ubuntu partition back to 300GB. Then go into windows and uninstall Ubuntu from windows. Then see if it will boot into Ubuntu, if it will then job done. If it won't then you need a new install and you need to use the Ubuntu Live CD from boot (not from windows) in order to install it directly and not using a wubi install.</p>\n\n<p>Comment here if you're having issues or need someone to talk you through it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T10:10:21.273", "id": "18479", "lastActivityDate": "2010-12-22T10:10:21.273", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "18462", "postTypeId": "2", "score": "3" }
[ { "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 without persistent option, fsck cannot repair my casper-rw file saying that its read-only file system. Is there any way to check and repair errors in casper-rw ?</p>
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 options but I can't seem to get past this problem. Here's the basic command:</p> <p><code>mencoder "mf://image.jpg" -o out.avi -ovc lavc -lavcopts vcodec=mjpeg -audiofile music.mp3 -oac copy</code></p> <p>Does anyone know how to do this or why mencoder cuts the music to one second?</p>
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> <p>How can I solve this issue?</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 the next page, if it finds your Windows Vista/7 installation, make sure it is UNSELECTED before clicking next.Then click on <strong>Command prompt</strong>.</li>\n<li><p>From there, type in the folowing,</p>\n\n<p><code>bootrec.exe /fixboot</code></p>\n\n<p><code>bootrec.exe /fixmbr</code></p></li>\n<li><p>Now close the two windows and click <strong>Restart</strong>.</p></li>\n</ul>\n\n<p><strong>Note:</strong> </p>\n\n<ul>\n<li>If it din help you,post the results of <a href=\"http://bootinfoscript.sourceforge.net/\" rel=\"nofollow\">http://bootinfoscript.sourceforge.net/</a></li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T10:25:44.373", "id": "18480", "lastActivityDate": "2010-12-22T11:29:18.837", "lastEditDate": "2010-12-22T11:29:18.837", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "18474", "postTypeId": "2", "score": "2" }
[ { "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 fine, but feels like a hack. What's the recommended way to edit/set touchpad device properties like this one? Few years ago I'd have put that into the xorg.conf, but this seems to be discouraged nowadays.</p>
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 for the input devices.</p>\n\n<p>Go to this directory and you will find several files:</p>\n\n<p><code>10-evdev.conf, 50-synaptics.conf, 50-vmmouse.conf, 50-wacom.conf, 51-synaptics-quirks.conf, 60-magictrackpad.conf</code></p>\n\n<p>It might depend on what devices you have connected but this are the ones i have seen always.</p>\n\n<p>Now we want to open the first one that loads. That will be <code>10-evdev.conf</code>. But before we open it we need the synaptic edges values.</p>\n\n<p>First go to the terminal, if in a 11.04 or previous version of Ubuntu press <kbd>ALT</kbd>+<kbd>F2</kbd> and type <code>gnome-terminal</code>, then press <kbd>ENTER</kbd>. If in a 11.04 or newer version you can simply open the Dash and type <code>terminal</code>.</p>\n\n<p>After the terminal opens type <code>xinput list</code></p>\n\n<p>Look for the device that is the one you want to work with. Grab the ID from the input you want to work with.</p>\n\n<p>In my case i have the following output:</p>\n\n<p><img src=\"https://i.stack.imgur.com/gIEzY.png\" alt=\"xinput\"></p>\n\n<p>The one i want to work with is <strong>SynPS/2 Synaptics TouchPad</strong> with an ID of 11.</p>\n\n<p>Now we type: <code>xinput list-props ID | grep Edges</code><br>\n(ID is the number you grabbed from the ID in the xinput list)</p>\n\n<p>in my case i typed <code>xinput list-props 11 | grep Edges</code></p>\n\n<p>and the output was this: <strong>Synaptics Edges (276): 1752, 5192, 1620, 4236</strong></p>\n\n<p>Take note of the 4 Edges numbers (They go in the order: Left, Right, Top, Bottom)</p>\n\n<p>Open 10-evdev.conf: <code>sudo nano 10-evdev.conf</code></p>\n\n<p>Inside the 10-evdev.conf file you will find several <strong>InputClass</strong> Sections. You need to look for the section that has <strong>MatchIsTouchpad \"on\"</strong> in it. That would be the third one for me.</p>\n\n<p>ADD at the bottom of the section the 4 positions in order like this</p>\n\n<p><img src=\"https://i.stack.imgur.com/jJuhA.png\" alt=\"10-evdev.conf\"></p>\n\n<p>SAVE and Reboot. This is to test if it is working. If for some reason you made a mistake, select in the grub menu Recovery Mode, load in terminal as root and edit the file again and remove the lines or repair the problem. Either way, if you run terminal as root in the recovery mode, type <strong>startx</strong> and it will log out where the error is found and how to fix it. The beauty of linux is that it not only SHOWS you where the error is, in most cases it TELLS you how to fix it.</p>\n\n<p>If it reboots normally then NOW YOU CAN START EDITING. Go to 10-evdev.conf:</p>\n\n<p><strong>sudo nano 10-evdev.conf</strong></p>\n\n<p>And start lowering the values to the one you feel more perfect.</p>\n\n<p>In my case i lowered the RightEdge value every 1000 points. Just for testing. Of course reducing the RightEdge increases the space you have to SCROLL up/down. This way, you now have the ability to increase/decrease every area of your synaptic, including the scrolling area. And this answers your question.</p>\n\n<p>Let us now take the code you put up in the question: <strong>xinput --set-prop --type=int --format=32 11 252 1781 5125 1646 4582</strong></p>\n\n<p>In your case you have:</p>\n\n<p><strong>Option \"LeftEdge\" \"1781\"<br>\nOption \"RightEdge\" \"5125\"<br>\nOption \"TopEdge\" \"1646\"<br>\nOption \"BottomEdge\" \"4582\"</strong></p>\n\n<p>Simply edit the section in 10-evdev.conf with your values. Then start lowering the RighEdge value. I recommend to start with lowering every 512 points (since 5125 divided by 10 = 512.5 which is 10% of the total). So you would be modifying 10% each time you lower it.</p>\n\n<p>NOTE: The values MUST BE between double quotes (\"\")</p>\n\n<p>More info in the <a href=\"http://manpages.ubuntu.com/manpages/raring/man4/synaptics.4.html\" rel=\"nofollow noreferrer\">man pages</a> here</p>\n\n<p>The information you will find in that link is up-to-date and shows the several places where you can find the <code>xorg</code> configuration files apart from the several options you can use to customize your synaptic any way you want.</p>\n\n<p>There is also a neat program called <a href=\"https://apps.ubuntu.com/cat/applications/gpointing-device-settings\" rel=\"nofollow noreferrer\">gpointing-device-settings <img src=\"https://hostmar.co/software-small\" alt=\"Install gpointing-device-settings\"></a> (apt-get install gpointing-device-settings) which does some of the stuff.</p>\n\n<p>In any case it worked great, very nice to have the ability to decide how much you want for scroll and how much you want for anything else, including the tapping options.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-26T17:56:29.100", "id": "18924", "lastActivityDate": "2013-06-10T20:39:31.033", "lastEditDate": "2017-03-11T19:00:01.900", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "18482", "postTypeId": "2", "score": "11" }
[ { "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 login. Is it possible log in without restarting the server?. I know that I can restart the server in safe mode and solve the mess, but I'd like to avoid it.</p> <p>Oh yeah, I have no other user with sudo rights in that server. Stop laughing again.</p> <p>BTW, I made the mess using ssh, but I have easy physical access to the server, it's just a couple of rooms away.</p>
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</code></pre>\n\n<p>And on-console TTY login will always attempt to launch your configured shell. Without another user with <code>sudo</code> rights, you'll need to boot to single user mode to fix it. :(</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T23:09:43.167", "id": "18687", "lastActivityDate": "2010-12-23T23:09:43.167", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "721", "parentId": "18484", "postTypeId": "2", "score": "6" }
[ { "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 yet, but I'm wondering if that's still the case and noticed subsonic for android displays artwork correctly in its screenshots.</p>
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 problem is this: I need my pre-recorded backing tracks to come through in the audio on my videos, yet they are <strong><em>not</em></strong> coming through. What do I do to effect this?</p>
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 video in cheese, and set a track to play in your audio application. Leave these running and open pavucontrol from your menu (it is under sound and video as pulseaudio volume control), and click on the recording tab.</p>\n<p><img src=\"https://i.stack.imgur.com/QDPbJ.png\" alt=\"alt text\" /></p>\n<p>If will show you Cheese as one of your applications. Set cheese to record from the output of your system/the other program (it will appear as a sink). Now, you can stop the recording in cheese (delete it if you like) as well as the song/track in your audio player.</p>\n<p>Now, for the rest of this session (that is, until you log out or restart), cheese will record from the other application, as opposed to your mic.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-22T13:54:38.803", "id": "19725", "postId": "18494", "score": "0", "text": "Thank you very much, Roland! Your advice worked like a charm! Luckily, I already had all of those apps installed. Cheers and Merry Christmas!", "userDisplayName": null, "userId": "7775" }, { "creationDate": "2010-12-22T15:16:31.760", "id": "19732", "postId": "18494", "score": "0", "text": "nice :D! Glad I could help ^^! Merry Christmas to you too. Remember to mark the question solved by clicking the tick :P", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-22T13:04:09.153", "id": "18494", "lastActivityDate": "2017-02-21T17:32:49.473", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "18487", "postTypeId": "2", "score": "2" }
[ { "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 2010 Caught SIGSEGV, shutting down... </code></pre> <p>I tried to remove and re-install it without success. After googling, it seems that no one has a solution for this. I don't want to install it from source unless it is really the last hope.</p>
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 seems to have reported a bug though - I would suggest you do this by pressing <kbd>Alt</kbd>+<kbd>F2</kbd> and entering <code>ubuntu-bug nagios3</code>. This will greatly increase the chance that the Ubuntu nagios maintainers will be able to help you.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T13:06:27.030", "id": "18496", "lastActivityDate": "2010-12-22T13:06:27.030", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18491", "postTypeId": "2", "score": "1" }
[ { "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 phone?</p> <p>Symptoms:<br> While surfing some recipe site she had an ad-window pop up with no window controls. She rebooted the computer and when she re-started Firefox it came back, full screen, no controls, on top. </p> <p>I told her to just use -F2 and xkill to get rid of it, which it did but stopped Firefox completely. On re-start it was back, I told her to hit F11 which did take it back to a large screen, but not full-screen, so she could see that there was a normal browser window running underneath. She topped the normal window but the only other thing I had time to check was plug-ins, which there wasn't anything that sounded suspicious. I'm looking for ideas of what to try over the phone, or where to start next week. </p> <p>I'm comfortable with the command line, and using about:config if that makes any difference in the answer.</p>
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 then, if you want, you can pull back some of the less-likely-to-be-infected things (general settings, bookmarks, etc).</p>\n<p>But the easiest install vector for malware in Firefox is through its extensions manager. You can check the <code>extensions.ini</code> file in the active profile for anything suspicious, but as I say, it may bear no fruit.</p>\n<p>To get things back to normal, let's shake Firefox:</p>\n<h2>Nuke the old profile.</h2>\n<p>Here's a little script that moves the old profile to another location. I'm making this up as I go, so there might be a bug or two in it. You should be able to copy and paste this into a terminal.</p>\n<pre><code>cd ~/.mozilla/firefox/\nexport FFPROFILE=`cat profiles.ini | grep &quot;Path=&quot; | sed 's/^Path=//'`\nmv $FFPROFILE $FFPROFILE.BAK\nrm profiles.ini\n</code></pre>\n<p>When Firefox next launches, it will create a new profile.</p>\n<h2>Save bookmarks, saved passwords, etc</h2>\n<p>After firefox has created the new profile, you can go to <code>~/.mozilla/firefox/</code> in nautilus and copy back some of the files into the new profile and then deletes the profile configuration file so that Firefox has to create a new profile. Start by closing Firefox and then punch these lines into a terminal:</p>\n<pre><code>cd ~/.mozilla/firefox/\nexport FFPROFILE=`cat profiles.ini | grep &quot;Path=&quot; | sed 's/^Path=//'`\nexport OLDFFPROFILE=`ls -1 | grep .BAK`\ncp $OLDFFPROFILE/*.sqlite $FFPROFILE/\n</code></pre>\n<p>You can of course do both these parts manually. It's actually easier to do it manually, you just need to know your way around the filesystem a little better. I was just thinking of you needing to do push this off to somebody else... it might just be easier if they copy and paste it into a terminal... Or you do it via SSH.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-22T16:00:49.990", "id": "19742", "postId": "18515", "score": "0", "text": "Works perfect on my test box, I'll give it a run when it's available.", "userDisplayName": null, "userId": "49" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T15:12:52.620", "id": "18515", "lastActivityDate": "2010-12-22T15:18:56.000", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "18493", "postTypeId": "2", "score": "5" }
[ { "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 not only display PDF files, but also be able to:</p> <ul> <li>stageless zoom (not just predefined steps) </li> <li>open files in tabs</li> <li>display comments added with other PDF software</li> <li>add and save comments</li> <li>display forms filled in with other PDF software</li> <li>fill in and save PDF forms</li> <li>create and save bookmarks</li> <li>have a presentation mode</li> </ul>
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\" rel=\"noreferrer\">a few other formats</a>. Can fill forms, highlight text, and annotate. Normal text selection. Remembers window size and document zoom. Dark mode. [<a href=\"http://apt.ubuntu.com/p/evince\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p><code>qpdfview</code> (see <a href=\"https://askubuntu.com/questions/18495/what-pdf-viewers-are-available-for-ubuntu/181820#181820\">answer</a>) - tabbed interface, can fill forms, remembers window size and document zoom. Block selection by holding <kbd>Shift</kbd>. [<a href=\"http://apt.ubuntu.com/p/qpdfview\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p><a href=\"https://www.mupdf.com/\" rel=\"noreferrer\"><strong>MuPDF</strong></a> - extremely fast and minimalistic. Block selection by dragging with the right mouse button, search with <kbd>/</kbd>. Can't annotate, fill forms, sign, or anything else. <a href=\"https://bugs.ghostscript.com/show_bug.cgi?id=691330#c82\" rel=\"noreferrer\">Doesn't remember</a> the zoom factor, or the window size/position. [<a href=\"http://apt.ubuntu.com/p/mupdf\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p><a href=\"https://pwmt.org/projects/zathura/\" rel=\"noreferrer\"><strong>Zathura</strong></a> - extremely fast and minimalistic (uses the MuPDF ending via a <a href=\"https://pwmt.org/projects/zathura/plugins/\" rel=\"noreferrer\">plugin system</a>). Keyboard-navigation, bookmarks, auto-reload on changes. Block selection by dragging with the left mouse button. No form filling or other features. <a href=\"https://git.pwmt.org/pwmt/zathura/-/issues/206\" rel=\"noreferrer\">Doesn't remember</a> the zoom factor, or the window size/position. [<a href=\"http://apt.ubuntu.com/p/zathura\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p><a href=\"https://en.wikipedia.org/wiki/Xpdf\" rel=\"noreferrer\"><strong>xpdf</strong></a> - &quot;Xpdf is a small and efficient program which uses standard X fonts&quot;. Lightweight, but with outdated interface. [<a href=\"http://apt.ubuntu.com/p/xpdf\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p><a href=\"https://www.gnu.org/software/gv/\" rel=\"noreferrer\"><strong>gv</strong></a> - an old lightweight pdf viewer with an old interface. Size of the package is only 580k. gv is an X front-end for the Ghostscript PostScript(TM) interpreter. [<a href=\"http://apt.ubuntu.com/p/gv\" rel=\"noreferrer\">install</a>]</p>\n</li>\n</ul>\n<h1>Full-featured</h1>\n<ul>\n<li><p><a href=\"https://okular.kde.org\" rel=\"noreferrer\"><strong>okular</strong></a> - Multi-format document viewer (PDF, CHM, ePub, others). Requires many KDE prerequisites unless installed as Flatpak. Can easily copy text and images. May be slow and have <a href=\"https://askubuntu.com/questions/1222090/print-pdf-from-okular-without-scaling-down\">issues with printing</a>. [<a href=\"http://apt.ubuntu.com/p/okular\" rel=\"noreferrer\">install</a>]</p>\n</li>\n<li><p>Browsers like Firefox and Chromium derivatives also have great support for PDF viewing and form filling, but no support for annotations or signatures.</p>\n</li>\n</ul>\n<h1>Non-FOSS</h1>\n<ul>\n<li><p><a href=\"https://www.foxitsoftware.com/products/pdf-reader/\" rel=\"noreferrer\"><strong>Foxit Reader</strong></a> - View, create, convert, annotate, print, collaborate, share, fill forms and sign.</p>\n</li>\n<li><p><a href=\"https://www.qoppa.com/pdfstudioviewer/\" rel=\"noreferrer\"><strong>PDF Studio Viewer</strong></a> - free version can annotate, fill&amp;save forms. Paid versions can sign, OCR, split/merge/insert/remove/rotate pages, add watermarks/header/footer/bookmarks, edit, redact, compare, optimize, batch process etc.</p>\n</li>\n<li><p><a href=\"https://code-industry.net/masterpdfeditor/\" rel=\"noreferrer\"><strong>Master PDF Editor</strong></a> - View, create, modify, fill forms, sign, scan, OCR, annotate, split/insert/remove/rotate pages, add bookmarks. <a href=\"https://code-industry.net/free-pdf-editor/\" rel=\"noreferrer\">Free version</a> allows editing text and objects, annotating, and filling forms.</p>\n</li>\n</ul>\n<h1>Unsupported/outdated</h1>\n<ul>\n<li><a href=\"https://kpdf.kde.org/\" rel=\"noreferrer\"><strong>kpdf</strong></a> - Extremely outdated (2008) PDF viewer based on xpdf, for KDE 3. [<a href=\"http://apt.ubuntu.com/p/kpdf\" rel=\"noreferrer\">install</a>]</li>\n<li><a href=\"https://aur.archlinux.org/packages/acroread/\" rel=\"noreferrer\"><strong>acroread</strong></a> - Adobe Acrobat Reader, no longer supported for Linux by Adobe, seems to be no longer supported by Ubuntu.</li>\n</ul>\n", "commentCount": "10", "comments": [ { "creationDate": "2012-04-07T21:50:41.390", "id": "142631", "postId": "18524", "score": "81", "text": "Imho the list is useless without description what product has which benefit. For example `xpdf` loads pretty fast and allows to mark columnwise for copying content.", "userDisplayName": null, "userId": "10068" }, { "creationDate": "2015-12-09T16:20:22.590", "id": "1040386", "postId": "18524", "score": "7", "text": "`evince` sucks. Try searching some words in it and you'll see it eating upto 1 GB memory.", "userDisplayName": null, "userId": "364011" }, { "creationDate": "2016-03-15T14:40:38.387", "id": "1111385", "postId": "18524", "score": "6", "text": "`okular` allows you to zoom at 1600%. Great for inspecting graphics.", "userDisplayName": null, "userId": "396913" }, { "creationDate": "2016-05-16T14:47:43.827", "id": "1155467", "postId": "18524", "score": "1", "text": "I tried xpdf - it displayed then dumped core. Then tried evince which couldn't find files it was looking for and didn't display anything other that messages to stderr. Then tried gv which worked fine. Give me old that works to new that doesn't any day of the week.", "userDisplayName": null, "userId": "544714" }, { "creationDate": "2020-01-20T08:27:17.363", "id": "2020248", "postId": "18524", "score": "1", "text": "At least Foxit Reader, Master PDF, lately Okular **DO** provide advanced capabilities.", "userDisplayName": null, "userId": "925128" }, { "creationDate": "2021-03-07T21:15:59.013", "id": "2252631", "postId": "18524", "score": "0", "text": "I see many improperly rendered characters with Ocular 1.10.0 (the version dated 2020 April 23).", "userDisplayName": null, "userId": "25031" }, { "creationDate": "2021-11-26T20:09:25.697", "id": "2373488", "postId": "18524", "score": "0", "text": "Wow... I didn't notice the existence of `gv` before. It looks a bit ugly but it is pretty fast and has some useful tricks like the zooming a part of the document and printing. I would love MuPDF to print, but for now I will stay on GV. Thanks", "userDisplayName": null, "userId": "9598" }, { "creationDate": "2022-09-19T14:41:32.960", "id": "2491532", "postId": "18524", "score": "0", "text": "evince, qpdfview, xpdf and web browsers do not support writing on and signin documents -- I ended up using xournal++ which isn't mentionned here.", "userDisplayName": null, "userId": "391276" }, { "creationDate": "2023-03-24T20:11:56.233", "id": "2556123", "postId": "18524", "score": "0", "text": "qpdfview supports zooming in, evince could not zoom beyond 73%, I was using fractional scaling on Gnome Ubuntu desktop 22.04. In additon, it supports the hand-tool to drag, evince, I couldn't figure the hand tool (if it is there at all)", "userDisplayName": null, "userId": "1679023" }, { "creationDate": "2023-11-29T22:25:08.647", "id": "2618237", "postId": "18524", "score": "0", "text": "Okular is excellent if you need to adjust light intensity. I find reading documents with a totally white background colour to be painful at times. You can adjust the light intensity in a number of ways via Okular's accessibility settings. No more headaches from reading documents!", "userDisplayName": null, "userId": "1649097" } ], "communityOwnedDate": "2010-12-22T16:51:08.423", "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-12-22T16:24:12.767", "id": "18524", "lastActivityDate": "2022-01-23T13:15:37.683", "lastEditDate": "2022-01-23T13:15:37.683", "lastEditorDisplayName": null, "lastEditorUserId": "197003", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "18495", "postTypeId": "2", "score": "163" }
[ { "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 release (3.2.5) of this program (which includes the bugfix for my problem). Apt-get tells me that the version I have installed (3.2.3-1) is already the newest version. </p> <p>So what is the best way to upgrade to a newer version of a package then is available in the repositories? </p> <p>Do I:</p> <ul> <li>remove the version I have currently installed with the package manager. Download the source of the newest version and compile it myself? Will this give problems when newer versions come out? Will I have to update this program manually in the future whenever newer versions come out?</li> <li>Should I do the above, but with a program like <a href="http://www.asic-linux.com.mx/~izto/checkinstall/index.php">checkinstall</a>, and remove the manually compiled version once the version can be installed via the package manager?</li> <li>Should I make a request for the package to be <a href="https://help.ubuntu.com/community/UbuntuBackports#How%20to%20request%20new%20packages">backported</a>? I think my request will make little chance because the rules read: <blockquote> <p>Applications to be backported must have meaningful benefits to the user not attainable via other processes. Specifically: The sole purpose must not be to fix a bug or security vulnerability. </li> </ul> <p>Or is there another way to do this correctly?</p> </blockquote></p>
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/projects/gramps/files/Stable/3.2.5/gramps_3.2.5-1_ubuntu10.deb/download\" rel=\"nofollow\"><code>gramps_3.2.5-1_ubuntu10.deb</code></a> which should be easily installable by double clicking on the downloaded file.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-22T14:18:31.753", "id": "19726", "postId": "18500", "score": "0", "text": "I will accept this as the correct answer for this specific case, but the question \"what is the best option to choose in general?\" remains.", "userDisplayName": null, "userId": "6721" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T13:19:03.197", "id": "18500", "lastActivityDate": "2010-12-22T13:19:03.197", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18498", "postTypeId": "2", "score": "3" }
[ { "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 running instance</code> and the new window with the URL is opened.</p> <p>On the other screen, I get a dialog with the following message: <code>It appears another opera instance is using the same configuration directory because its lock file is active: /home/(my name)/.opera/lock</code> and the URL is not shown.</p> <p>That's not only from console, also if I click a link in E-Mail or so. How can I fix this?</p> <p>Window-manager is awesome, if it does make a difference.</p>
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 ../; opera -pd /home/username/.opera/ -newwindow -nomail; mv ~/lock /home/username/.opera \n</code></pre>\n\n<p>(which handles moving the lock file back again)</p>\n\n<p>Hope this helps!</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-11-25T12:53:15.533", "id": "93417", "postId": "25910", "score": "0", "text": "Thanks alot. This works with minor modifications. I added -nosession to the opera-commandline (because otherwise it asked) and dropped -newwindow, as otherwise it opened an empty window first.", "userDisplayName": null, "userId": "6037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T02:23:45.327", "id": "25910", "lastActivityDate": "2011-02-12T02:23:45.327", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2325", "parentId": "18502", "postTypeId": "2", "score": "2" }
[ { "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, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T13:48:13.787", "id": "18510", "lastActivityDate": "2010-12-22T13:48:13.787", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6650", "parentId": "18509", "postTypeId": "2", "score": "11" }
[ { "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 it I get that error.</p> <p><strong>EDIT</strong>: I thought that this might be because I had it plugged into a dock, but I tried plugging it in directly to the MacBook with the USB Cable and it still does not work, same error message.</p>
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:47:55.353", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4724", "parentId": "18517", "postTypeId": "2", "score": "-1" }
[ { "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 repos. See <a href=\"https://sourceforge.net/p/viking/wikiallura/Main_Page/\" rel=\"nofollow noreferrer\">Viking GPS Documentation</a> for details.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-22T16:53:27.440", "id": "18530", "lastActivityDate": "2017-05-15T10:24:36.867", "lastEditDate": "2017-05-15T10:24:36.867", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "4435", "parentId": "18520", "postTypeId": "2", "score": "10" }
[ { "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 ( ubuntu 10.10 server) also, how am i supposed to gain access to it in order to install tools that are required on it. </p> <p>I would prefer virtual box as my tool of choice. </p> <p>Please and thank you. </p>
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>VBoxManage modifyvm options\n</code></pre>\n\n<p>to configure the machine. You can create a virtual hd with:</p>\n\n<pre><code>VBoxManage createhd\n</code></pre>\n\n<p>You can read the <a href=\"http://www.virtualbox.org/manual/ch08.html\" rel=\"nofollow\">manual</a> online. It's very complete and there are even more options than using the GUI.</p>\n\n<p>First, you can't use the .deb file, because it will bring Qt and all it's dependencies with it. You should use some of the alternative <a href=\"http://www.virtualbox.org/manual/ch02.html#id438708\" rel=\"nofollow\">install</a> options.</p>\n\n<p>Finally, configure VBox virtual CD to use a Windows.iso or the server real CD and start the machine with:</p>\n\n<pre><code>VBoxHeadless -s MachieName\n</code></pre>\n\n<p>This will start the machine and listen for RDP connections on port 3389 (default). Just use rdesktop or a similar software from your desktop to connect to it and do all the windows install stuff.</p>\n", "commentCount": "8", "comments": [ { "creationDate": "2010-12-22T17:48:10.523", "id": "19757", "postId": "18533", "score": "0", "text": "@javier i looked into installing vbox, i got various options, which one is the correct one, for ubuntu server", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-12-22T17:55:41.717", "id": "19760", "postId": "18533", "score": "0", "text": "Oh, yes. You will need to use the alternative installer as the deb depends on qt. It's a pity, as adding the official repo is quite a better solution. Install DKMS before, or you are going to have fun after a kernel update.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-12-22T18:22:27.360", "id": "19764", "postId": "18533", "score": "0", "text": "@Javier, can I get the instructions for that or least a link for them stuff :) I would like to not break the production server.", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-12-22T18:37:41.943", "id": "19769", "postId": "18533", "score": "0", "text": "It's on the manual link on the answer. http://www.virtualbox.org/manual/ch02.html#id438708.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-12-22T18:40:06.200", "id": "19771", "postId": "18533", "score": "0", "text": "Be careful with the online manual, looks like some parts are updated for the version 4, for example, they talk about expansion packs. VBox 4 is right now in beta, and I'm expecting more restrictive licensing from oracle. If you doubt download the pdf version, I hope that it isn't autogenerated from the html.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-12-22T20:26:42.103", "id": "19782", "postId": "18533", "score": "0", "text": "@Javier vbox was released today. could i use ssh -x to get a gui for vbox?", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-12-22T21:10:33.103", "id": "19787", "postId": "18533", "score": "0", "text": "Uppsss... that explains the docs changes. I haven't tried the ssh -x trick. When I'm back at work I'll try.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-12-23T07:47:50.130", "id": "19817", "postId": "18533", "score": "0", "text": "Note that VirutalBox 4 installation is different. RDP and other functions have been moved to an extension pack, that should be installed afterwards, kind like a firefox extension. I have no experience with it. I'll look at it today in a test machine.", "userDisplayName": null, "userId": "211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T16:56:28.093", "id": "18533", "lastActivityDate": "2011-01-18T00:21:28.413", "lastEditDate": "2011-01-18T00:21:28.413", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "18526", "postTypeId": "2", "score": "3" }
[ { "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 together under a single Prism button, using the Prism icon.</p>
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> <p>Running <code>locate libgl</code> on a terminal returns no results.</p> <p>thanks in advance.</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 → SketchUp8 → GLConfig → Display</p></li>\n<li><p>Change the value of HW_OK to <code>1</code> (so that it shows up as <code>0x00000001 (1)</code>)</p></li>\n</ul>\n\n<p>Then start SketchUp</p>\n\n<p>I hope this works for you as well :) </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-03T19:31:00.410", "id": "26859", "postId": "24653", "score": "0", "text": "you are really a Ubuntu Guru!!! Thanks my proble is result!", "userDisplayName": null, "userId": "4546" }, { "creationDate": "2011-02-18T13:06:49.370", "id": "29678", "postId": "24653", "score": "1", "text": "Stefano,\r\n Great. A very clear and concise instruction,which worked first time.\r\nMany thanks Bob McM", "userDisplayName": "user11058", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T19:25:56.850", "id": "24653", "lastActivityDate": "2011-02-03T19:25:56.850", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "18532", "postTypeId": "2", "score": "12" }
[ { "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 unless a dynamically assigned IP address changes. If the Skype server is down, the new IP address may be manually input when Skype programs the function into the next revision of Skype.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T08:27:45.567", "id": "18589", "lastActivityDate": "2010-12-23T08:27:45.567", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "james", "ownerUserId": null, "parentId": "18537", "postTypeId": "2", "score": "1" }
[ { "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. :D (getting a little off topic here....) But anyways ;) When is Ubuntu Natty Narwhal 11.04 going to be ready for stable testing?</p>
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?? Also shutdown goes so fast it does not finish that sound either? And as allways TYAVMIA :-) </p>
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 Login Sound\" is enabled:\n<img src=\"https://i.stack.imgur.com/2OuXq.png\" alt=\"alt text\"></p>\n\n<p>To configure a custom start-up sound, you'll have to create it manually at the moment:</p>\n\n<pre><code>mkdir - ~/.local/share/sounds/mysound\ncd ~/.local/share/sounds/mysound\nln -s /the/sound/file/you/want.ogg desktop-login.ogg\n</code></pre>\n\n<p>And then in the same directory, create the file <code>index.theme</code>:</p>\n\n<pre><code>[Sound Theme]\nName=MySound\nInherits=ubuntu\nDirectories=.\n</code></pre>\n\n<p>Then you'll be able to select your theme in the drop-down of <em>System / Preferences / Sound / Sound Effects / Sound theme</em>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T21:53:40.003", "id": "18674", "lastActivityDate": "2010-12-23T21:53:40.003", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "721", "parentId": "18543", "postTypeId": "2", "score": "3" }
[ { "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 Reading state information... Done The following extra packages will be installed: acroread ia32-libs lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libaudio2 libc6-i386 libcurl3 libflac8 libhal1 liblcms1 libmng1 libogg0 libpulse0 libqt4-dbus libqt4-network libqt4-opengl libqt4-xml libqtcore4 libqtgui4 libsdl-ttf2.0-0 libsdl1.2debian libsdl1.2debian-alsa libsndfile1 libv4l-0 libvorbis0a libvorbisenc2 libx11-xcb1 nspluginwrapper Suggested packages: libldap2 libgnome-speech7 lib32asound2-plugins nas liblcms-utils pulseaudio qt4-qtconfig Recommended packages: pdf-viewer The following NEW packages will be installed: acroread ia32-libs lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libaudio2 libc6-i386 libcurl3 libflac8 libhal1 liblcms1 libmng1 libogg0 libpulse0 libqt4-dbus libqt4-network libqt4-opengl libqt4-xml libqtcore4 libqtgui4 libsdl-ttf2.0-0 libsdl1.2debian libsdl1.2debian-alsa libsndfile1 libv4l-0 libvorbis0a libvorbisenc2 libx11-xcb1 nspluginwrapper virtualbox-4.0 0 upgraded, 34 newly installed, 0 to remove and 26 not upgraded. Need to get 168MB of archives. After this operation, 460MB of additional disk space will be used. </code></pre> <p>Please and thank you</p>
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-Suggests=\"true\" install pkg</code>.</p>\n\n<p>Installing conky without Suggests:</p>\n\n<pre><code>laney@iota&gt; sudo apt-get install conky\n[...]\nSuggested packages:\n apcupsd moc mpd\nThe following NEW packages will be installed\n conky conky-all\n</code></pre>\n\n<p>…or with Suggests:</p>\n\n<pre><code>laney@iota&gt; sudo apt-get -o APT::Install-Suggests=\"true\" install conky\n[...]\nThe following NEW packages will be installed\n apache2 apache2-doc apache2-mpm-worker apache2-suexec apache2-utils apache2.2-bin apache2.2-common apcupsd apcupsd-cgi apcupsd-doc ario ario-common conky\n conky-all icecast2 ices2 libao-common libao4 libaprutil1-dbd-sqlite3 libaprutil1-ldap libcue1 libmpdclient2 libresid-builder0c2a libsidplay2 libsidutils0\n moc moc-ffmpeg-plugin mpd\n</code></pre>\n\n<p>You can make this the default behaviour by putting</p>\n\n<pre><code>APT::Install-Suggests \"true\"\n</code></pre>\n\n<p>in a file in <code>/etc/apt/apt.conf.d/</code>, for example <code>/etc/apt/apt.conf.d/30install-suggests</code>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2016-11-28T15:39:46.713", "id": "1315033", "postId": "18553", "score": "10", "text": "Can also install suggested packages with the `--install-suggests` option. E.g. `sudo apt install --install-suggests conky`", "userDisplayName": null, "userId": "755" }, { "creationDate": "2022-01-03T13:21:26.353", "id": "2389824", "postId": "18553", "score": "0", "text": "If recommended packages are installed by default, then why is `pdf-viewer` not listed under the packages to be installed, in the example?", "userDisplayName": null, "userId": "528963" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-22T20:03:56.970", "id": "18553", "lastActivityDate": "2014-10-26T21:36:29.383", "lastEditDate": "2014-10-26T21:36:29.383", "lastEditorDisplayName": null, "lastEditorUserId": "158442", "ownerDisplayName": null, "ownerUserId": "6683", "parentId": "18545", "postTypeId": "2", "score": "52" }
[ { "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 errors I get while running apt-get update. This is what I get when running the command: <a href="http://paste.ubuntu.com/546690/" rel="nofollow noreferrer">http://paste.ubuntu.com/546690/</a></p> <p>I tried cleaning the cache, changing the server to Main Server, and even tried the following command:</p> <pre><code>sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys &lt;key&gt; </code></pre> <p>None of that seems to solve my problem though.</p> <p>Help on this would be highly appreciated.</p>
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 the near future.</p> <p>But what about the command line tools? These are far more efficient than the Ubuntu Software Center if you know what package name you're after. Will they continue to exist as standalone apps, or will they be rolled into Ubuntu Software Center in some way, becoming it's command line interface?</p>
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 in the next few cycles.</p>\n\n<p>Note that it was decided not to merge the Update Manager into the Software Centre.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T21:45:50.467", "id": "18559", "lastActivityDate": "2010-12-22T21:45:50.467", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18557", "postTypeId": "2", "score": "3" }
[ { "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):</p> <pre><code>[·100 MB·] [······250000 MB······] [·······600000 MB·······] [··100000 MB···] Reserved Windows 7 system (C:) Data (D:) Free space NTFS NTFS NTFS (for Ubuntu) </code></pre> <p>The Internet (including AskUbuntu) is full of scary stories about Windows not loading after installation of Ubuntu, something about installing GRUB to a wrong partition, etc.<br> As I am a newbie to Linux and Ubuntu, it is very easy for me to do something wrong. Please mention the problems that may appear and explain how to avoid them.</p> <p>Ubuntu version that will be installed: 10.10 Desktop amd64 </p> <p>Please note that I have installed Windows 7 about a year ago, so I have much to lose if something goes wrong. I want to be very careful because there is no way for me to backup all the data.</p>
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>not to touch your Windows partitions</strong> when installing Ubuntu, and if you <strong>follow the standard installation process provided with Ubuntu</strong> you are on the safe side.</p>\n\n<p>As always when installing a new OS or changing partitions backing up your data is absolutely necessary. I'm sure you have done that already.</p>\n\n<p>For deeper insights into dual-boot setups read the <a href=\"https://help.ubuntu.com/community/WindowsDualBoot\" rel=\"nofollow\">Community Wiki</a>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-22T22:17:58.350", "id": "19794", "postId": "18562", "score": "0", "text": "No extra HDD here -> Backup impossible :(", "userDisplayName": null, "userId": "3268" }, { "creationDate": "2010-12-22T22:23:32.143", "id": "19796", "postId": "18562", "score": "0", "text": "dropbox or box.net or Ubuntu One (works on windows now) can partially help", "userDisplayName": null, "userId": "7745" }, { "creationDate": "2010-12-23T05:15:43.767", "id": "19810", "postId": "18562", "score": "0", "text": "Dropbox: not much space, small (internet) speed. But I have lots of data!", "userDisplayName": null, "userId": "3268" }, { "creationDate": "2010-12-23T19:58:46.190", "id": "19935", "postId": "18562", "score": "2", "text": "On a sidenote: backup is important to everyone... (whether you're installing Windows 7 and Ubuntu side by side or not)", "userDisplayName": null, "userId": "866" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T22:09:50.290", "id": "18562", "lastActivityDate": "2010-12-22T22:09:50.290", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3940", "parentId": "18560", "postTypeId": "2", "score": "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 <...
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,the apps won't respond to anything,and every aspect of the system is slow,even turning it off it's slow.</p> <p>Some 2 days ago, <a href="https://askubuntu.com/questions/18313/i-cant-boot-into-ubuntu-strange-error">i asked a question here</a>, about Ubuntu giving me an error, the person who answer my question, said that the filesystem might be corrupt and told me to do a check with a live cd,and so i did, i ran the fsck command and it actually fixed something.</p> <p>However, this Problem, the sluggish performance just won't go away, i don't have any idea as to why this happened, but i'd like to know if there is a permanent fix, or if im gonna have to install Ubuntu all over again.</p>
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 them (just \"iotop\" and \"htop\", one in each terminal). Then wait for the stuttering to start happening and see what causes it.</p>\n\n<p>Another place to look might be dmesg - perhaps start a third terminal and run the command :</p>\n\n<blockquote>\n <p>tail -f /var/log/kern.log</p>\n</blockquote>\n\n<p>(instead of just running \"dmesg\" directly, because you're interested in constantly monitoring the system as you wait for the stuttering to begin).</p>\n\n<p>These steps should help pinpoint what might be causing your issues.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-22T22:42:08.353", "id": "18565", "lastActivityDate": "2010-12-22T22:56:42.573", "lastEditDate": "2010-12-22T22:56:42.573", "lastEditorDisplayName": null, "lastEditorUserId": "861", "ownerDisplayName": null, "ownerUserId": "861", "parentId": "18564", "postTypeId": "2", "score": "11" }
[ { "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, and Ubuntu, but I had to re-install windows for various reasons...</p> <p>Now that I have re-installed windows, windows wrote over grub, which I knew was going to happen, but I didn't think about how to fix the problem, or if it was even possible... so here is my question, how do I restore grub to allow me to boot into windows and my already installed ubuntu?</p>
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> <p>Pressing ctrl-alt-del successfully rebooted it when in that mode. Another symptom is that GRUB stopped booting automatically, not sure if related (I doubt it).</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:39:13.750", "id": "21491", "lastActivityDate": "2011-01-14T10:39:13.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2623", "parentId": "18575", "postTypeId": "2", "score": "1" }
[ { "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>, which highlighted this little shell script :</p>\n\n<pre><code>#!/bin/bash\n#\n# list of synaptics device properties http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html#sect4\n# list current synaptics device properties: xinput list-props '\"AlpsPS/2 ALPS GlidePoint\"'\n#\nsleep 5 #added delay... \nxinput --set-prop --type=int --format=32 \"AlpsPS/2 ALPS GlidePoint\" \"Synaptics Two-Finger Pressure\" 125\nxinput --set-prop --type=int --format=32 \"AlpsPS/2 ALPS GlidePoint\" \"Synaptics Two-Finger Width\" 0 # Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels\nxinput --set-prop --type=int --format=8 \"AlpsPS/2 ALPS GlidePoint\" \"Synaptics Two-Finger Scrolling\" 1 0 # vertical scrolling, horizontal scrolling - values: 0=disable 1=enable\nexit\n</code></pre>\n\n<p>It works for some models, not for others, however. Good luck.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-23T17:53:35.323", "id": "19917", "postId": "18600", "score": "0", "text": "Well the forum worked somewhat but the zoom and other gestures didnot", "userDisplayName": null, "userId": "1543" }, { "creationDate": "2010-12-23T19:41:40.847", "id": "19931", "postId": "18600", "score": "0", "text": "Yep, I have no idea how to get the other gestures working. Perhaps someone skilled in uTouch can help. Your question was only about two-fingered scrolling, so I didn't look any further. Check out http://unity.ubuntu.com/projects/utouch/", "userDisplayName": null, "userId": "861" }, { "creationDate": "2011-01-11T17:00:38.373", "id": "22644", "postId": "18600", "score": "0", "text": "I've been using this script happily for a month and now my multitouch 2 finger scrolling has gone wild: the mouse cursor runs everywhere :/", "userDisplayName": null, "userId": "5938" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T11:22:26.730", "id": "18600", "lastActivityDate": "2010-12-23T11:22:26.730", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "861", "parentId": "18576", "postTypeId": "2", "score": "1" }
[ { "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 interface to achieve maximum compatibility with Ubuntu OS? I use Ubuntu Server 8.04 now, but I'm ready to upgrade to 10.10 if necessary.</p>
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 should therefore make sure you can give it back should it not work.</p>\n\n<p>The one you linked, the OCZ RevoDrive, is <a href=\"http://www.overclockersclub.com/reviews/ocz_revodrive_50gb/2.htm\" rel=\"nofollow\">known to work</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-30T05:11:10.163", "id": "20707", "postId": "19349", "score": "1", "text": "This answer my question. Thanx.", "userDisplayName": null, "userId": "1900" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-30T01:07:48.250", "id": "19349", "lastActivityDate": "2010-12-30T01:07:48.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "18587", "postTypeId": "2", "score": "2" }
[ { "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 server via an ssh like transport protocol. A list of these commands is available if you enter a terminal window and enter <code>man sftp</code>. You'll see the commands available to 'connect to server' in the section 'interactive commands' of the manpage.</p>\n\n<p>They are limited to <code>bye cd chgrp chmod chown df exit get help lcd lls lmkdir ln lpwd ls lumask mkdir progress put pwd quite rename rm rmdir symlink</code> and <code>!</code>. You may recognise many of them from ftp, if you ever command-line ftp'd. Some new cool additions, but as you can see none of them supports the concept of RunAs, or <code>sudo</code>. </p>\n\n<p>Gaining elevated privileges was simply never designed into the protocol.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2014-02-28T08:24:27.810", "id": "554237", "postId": "18610", "score": "1", "text": "such a bad news to me as well :( Is there any alternate to this. As recommended I always keep the root login disabled in my sshd_config.", "userDisplayName": null, "userId": "19454" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T12:23:14.940", "id": "18610", "lastActivityDate": "2010-12-23T12:23:14.940", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3802", "parentId": "18592", "postTypeId": "2", "score": "9" }
[ { "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.wikipedia.org/wiki/Physical_Address_Extension\">PAE</a> enabled. It will let you use 4 Gb of RAM or more in a 32bit system. You don't want it if your using 64 bits or if you have less than 4Gb of RAM, as it has a small performance penalty.</p></li>\n<li><p>linux-server: This is a kernel optimised for server use. This <a href=\"http://www.serverwatch.com/tutorials/article.php/3715071/Ubuntu-Server--Kernel-Configuration-Considerations.htm\">article</a> has good info on the most important changes. They are over 50 configuration options changed. A gross approximation will be that this kernel will favor long background processes over interactive ones. It will not hesitate to freeze your mouse to give more power to your database number crunching or a file-write.</p></li>\n<li><p>linux-virtual: This is the <strong>server kernel</strong>, with most drivers stripped. It only has the drivers needed to run as a guest in the most popular virtual machines like KVM, Xen, and VMWare. <a href=\"https://help.ubuntu.com/community/ServerFaq#What%20are%20the%20differences%20between%20the%20server%20and%20virtual%20kernels?\">Source</a>.</p></li>\n</ul>\n\n<p>So there is no clear answer to your question, it all depends on the use of the virtual machines. If they are going to be traditional servers (not terminal servers) and you are never going to move them to real hardware, linux-virtual seems the best option.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2019-01-10T12:21:48.827", "id": "1829276", "postId": "18657", "score": "0", "text": "waht about the differences between inux-virtual-hwe-18.04-edge and linux-virtual-hwe-18.04 etc. ?", "userDisplayName": null, "userId": "410337" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T18:19:29.113", "id": "18657", "lastActivityDate": "2010-12-23T18:19:29.113", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "211", "parentId": "18593", "postTypeId": "2", "score": "13" }
[ { "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>. This way you run Cacti on a central PC/server, which then polls the other PCs for interface information and graphs the resulting interfaces for comparison.</p>\n\n<p><img src=\"https://i.stack.imgur.com/pynAq.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T10:39:54.177", "id": "18597", "lastActivityDate": "2010-12-23T10:39:54.177", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "861", "parentId": "18594", "postTypeId": "2", "score": "7" }
[ { "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.ubuntu.com/community/ReportingBugs\" rel=\"nofollow\">https://help.ubuntu.com/community/ReportingBugs</a></p>\n\n<p>I suspect that you may be using an nvidia card, if this is the case then you are using twinview which distorts the dimensions of the desktop (because it's fake, it's one desktop over two displays, instead of two desktops like ATI and Intel), to set this up just use xsetwacom:</p>\n\n<pre><code>xsetwacom --list\n</code></pre>\n\n<p>This will tell you the names of your pen device, then use that in the next command:</p>\n\n<pre><code>xsetwacom --set \"Wacom Intuos3 4x6 stylus\" TwinView horizontal\n</code></pre>\n\n<p>To put it back to normal, use:</p>\n\n<pre><code>xsetwacom --set \"Wacom Intuos3 4x6 stylus\" TwinView none\n</code></pre>\n\n<p>You should need to set stylus, eraser and pointer to get all your devices set right. Once you can see how it works, copy and paste the commands into a new hidden file called <code>.xinitrc</code> in your home folder, you can use a normal text editor to make the file.</p>\n\n<p>Now you should have good wacom settings when you reboot. (side note: you can use <code>xsetwacom --list param</code> to get a list of all the options you can set.)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-25T03:33:54.390", "id": "23155", "lastActivityDate": "2011-01-25T03:43:00.960", "lastEditDate": "2011-01-25T03:43:00.960", "lastEditorDisplayName": null, "lastEditorUserId": "132", "ownerDisplayName": null, "ownerUserId": "132", "parentId": "18596", "postTypeId": "2", "score": "2" }
[ { "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 one of them connects, other's entries in the routing table get updated so it is no more usable. If I reconnect the second one, it would override the first one's routing entries. If I do it over and over, sometimes both of them's entries disappear while in rare cases the two work well.</p> <p>I have tried it both using NetworkManager as well as WVDial but issue pops up in both of these. Perhaps both of them use same PPP dialer at the backend and thats why this issue appears. </p> <p>What is the proper solution to make them work together? In the long run, I'd also like them to automatically dial in once USB gets connected.</p>
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 different computer, it is refusing to do this, and all I can do is right-click and select the desktop. </p> <p>This has happened on a number of versions of Gnome (from 9.04 through to 10.10) with one computer having this function, and the other computer not. I've also done a couple of complete rebuilds - so it doesn't appear to be a preference/option being stuck somewhere.</p> <p>Anyone have any clue how to get this functionality enabled?</p>
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 the title bar and move it to the edge of the screen. This will cause the window to change to the next workspace (so long as you have the advanced effects enabled in appearance properties).</p>\n\n<p>Leave me a comment if you need more detail.</p>\n\n<p>EDIT:\nYou will also need <a href=\"http://www.tech-recipes.com/rx/2756/ubuntu_install_compiz_config_settings_manager_configure_desktop_effects/\" rel=\"nofollow noreferrer\">compiz config</a> to enable dragging windows across desktops.\nDesktop wall (or cube if you like) provide the option. In desktop wall for example:\n<img src=\"https://i.stack.imgur.com/ygZ1n.png\" alt=\"alt text\">\nThe option is edge_flip_move. You can also you edge_flip_dnd for drag and drop :)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-24T03:26:20.897", "id": "19976", "postId": "18613", "score": "0", "text": "Ah, okay - I get the metacity/compiz thing. I tried setting the advanced visual effects as you said, but while I got the stretchy window effect when dragging them, I couldn't move it to another desktop still... maybe I need to restart?", "userDisplayName": null, "userId": "5826" }, { "creationDate": "2010-12-24T03:33:34.777", "id": "19977", "postId": "18613", "score": "0", "text": "restart didn't make a difference", "userDisplayName": null, "userId": "5826" }, { "creationDate": "2010-12-24T12:38:31.353", "id": "19996", "postId": "18613", "score": "0", "text": "my mistake I forgot you need to enable that as an option.", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T12:53:42.297", "id": "18613", "lastActivityDate": "2010-12-24T12:42:27.060", "lastEditDate": "2010-12-24T12:42:27.060", "lastEditorDisplayName": null, "lastEditorUserId": "1992", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "18601", "postTypeId": "2", "score": "2" }
[ { "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 suspect something strange on my system, so I wondered if is there a malware scanner.</p>
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": [ { "creationDate": "2010-12-23T12:32:00.467", "id": "19835", "postId": "18604", "score": "1", "text": "In an isolated system, potentially true. But what if he's connected to a network? The responsible thing (certainly in a corporate environment) to do is to ensure that you're not a carrier of malware (files passing through the system), even if not affected by it.", "userDisplayName": null, "userId": "3802" }, { "creationDate": "2010-12-23T12:58:10.107", "id": "19843", "postId": "18604", "score": "0", "text": "in all honesty, from experience I can say, most of the risk to windows systems would come from a malicious person, not a malicious program. I was in networked environments for a long time (years) without infecting a single windows computer, yet I was able to go around collecting windows viruses (Even tried to run them on wine, but they failed to work because of missing features) - I never was able to pass them on to anyone by just sitting on the network, and I was able to show people the lack of risk from running linux. no need for antimalware except on a server.", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T11:54:40.037", "id": "18604", "lastActivityDate": "2010-12-23T11:54:40.037", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3175", "parentId": "18602", "postTypeId": "2", "score": "3" }
[ { "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 it during POST, GRUB, GDM, a GNOME session, or on a TTY, I expect it not to automatically change).</p> <p>So, how can I make gnome-power-manager stop automatically changing my backlight level?</p>
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>Run the following from a gnome-terminal:</p>\n\n<pre><code>gconftool-2 --set --type boolean \"/apps/gnome-power-manager/backlight/enable\" false\n</code></pre>\n\n<p>This will deactivate the backlight control for your user. Now type:</p>\n\n<pre><code>sudo -u gdm gconftool-2 --set --type boolean \"/apps/gnome-power-manager/backlight/enable\" false\n</code></pre>\n\n<p>This will deactivate the backlight control for the user that controls the GDM screen.</p>\n\n<p>You should now no longer see automatic backlight level changes.</p>\n\n<hr>\n\n<p>In Ubuntu 11.10 Oneiric Ocelot this changed to:</p>\n\n<pre><code> gsettings set org.gnome.settings-daemon.plugins.power idle-dim-ac false\n gsettings set org.gnome.settings-daemon.plugins.power idle-dim-battery false\n</code></pre>\n\n<p>Still not sure how to disable it for the login screen.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-10-15T08:54:34.913", "id": "76312", "postId": "18605", "score": "1", "text": "This command for ubuntu oneiric doesn't work.. can you correct it?", "userDisplayName": null, "userId": "19079" }, { "creationDate": "2011-10-15T10:13:09.447", "id": "76334", "postId": "18605", "score": "1", "text": "I think is `gsettings set org.gnome.settings-daemon.plugins.power idle-dim-battery false`", "userDisplayName": null, "userId": "19079" }, { "creationDate": "2011-11-02T10:36:22.440", "id": "84632", "postId": "18605", "score": "0", "text": "Is the section about GDM's user still accurate (given that we're not on LightDM)? Edit: I see the revised section below now.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-11-02T16:57:45.643", "id": "84759", "postId": "18605", "score": "0", "text": "Not sure about GDM in 11.10. This should be tested with a fresh install, but I'm low on disk space on the device where I saw this happening.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-12-03T00:35:09.600", "id": "96173", "postId": "18605", "score": "0", "text": "Even after running the 11.10 commands here, it keeps maxing out the backlight every few seconds if I reduce it (on AC). Any idea why?", "userDisplayName": null, "userId": "10371" }, { "creationDate": "2011-12-03T09:34:19.413", "id": "96225", "postId": "18605", "score": "0", "text": "@l0b0 If you are using the binary Nvidia driver, then that's likely the culprit. Try the solutions to [this question](http://askubuntu.com/questions/74376/brightness-control-problem-on-sony-vaio-with-nvidia-gt-320m).", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-12-04T22:08:03.907", "id": "96636", "postId": "18605", "score": "0", "text": "@htorque: Nope, don't need any proprietary driver for the Samsung 900X3A.", "userDisplayName": null, "userId": "10371" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-23T11:55:32.307", "id": "18605", "lastActivityDate": "2011-10-17T08:00:52.437", "lastEditDate": "2011-10-17T08:00:52.437", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "18603", "postTypeId": "2", "score": "11" }
[ { "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 Space screen during Ubuntu install.</p> <p>The screen I'm stuck on looks like this:</p> <p><img src="https://i.stack.imgur.com/yQP6e.jpg" alt="screenshot"></p> <p>Sorry it's so blurry. Anyway, the two entries in the table start with "/dev/".</p> <p>Regardless of which one I choose I get an error saying:</p> <p><code>&gt; No Root File System is Defined</code></p> <p>Bear with me, because I don't know anything about partitions or stuff like that. I chose Ubuntu because it's user-friendly and because Windows is a pile of crap, particularly XP on a netbook.</p> <p>Having said that, what's gone wrong, can you help?</p> <p>Also, after choosing Unebootin from the boot options and it starts to load Ubuntu, it gives the option to press "esc" to load options. The screen that comes up looks like this:</p> <p><img src="https://i.stack.imgur.com/7dlon.jpg" alt="screenshot"></p> <p>Now, out of those options, I've tried the first one, which says Unetbootin again, and the straight up "Install Ubuntu Netbook" options, but have come up against exactly the same issue both times.</p> <p>Any ideas anyone?</p>
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 view all that does not display in some programs like </p> <ul> <li>Audicity</li> <li>Play on linux</li> </ul> <p>when i change the theme in the appearance it appears again i really do not know what is wrong with that or why.</p> <p>i have ubuntu 10.10 and running compiz have ubuntu tweak</p> <p>thanks for all that will answer and all that can not</p> <p>really thanks dudes.</p> <p>ubuntu is sure fun</p>
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 am a freshman.</p> <pre> /*****test.c*********/ #include int main(void) { int input=0; printf("enter an integer:"); scanf("%d",&input); printf("Twice the number you supplied is %d\n",2*input); return 0; } </pre>
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> <p>Lack of clipboard really annoys.</p> <p>What could be the reason? Is there a a way to fix this?</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 releases to the <a href=\"http://ubuntuforums.org/forumdisplay.php?f=394\" rel=\"nofollow\">Natty part of the Ubuntu Forums</a>.</em></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T14:42:50.490", "id": "18625", "lastActivityDate": "2010-12-23T14:42:50.490", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18622", "postTypeId": "2", "score": "2" }
[ { "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.stack.imgur.com/GwGie.jpg" alt="Panel"><br> Ideally, the window's titlebar would be behind the panel (partially obscured by it). I know that different dock softwares like AWN are able to do that, but I'm running a weak netbook, and I would rather do that with the gnome-panel.</p>
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 value 'hide delay' to a very big number (it's in ms so ... 10000000)</li>\n</ul>\n\n<p><strong>Explanation :</strong> \nWith the Autohide feature, your application windows will expand to the edge of the screen, the 'so big' delay will let your panel visible</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-23T15:46:30.833", "id": "19866", "postId": "18627", "score": "0", "text": "This is workaround at best, not a solution.", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-12-23T16:01:22.790", "id": "19872", "postId": "18627", "score": "0", "text": "Yep, i agree, but better than nothing :)", "userDisplayName": null, "userId": "2841" }, { "creationDate": "2010-12-23T19:04:59.917", "id": "19928", "postId": "18627", "score": "0", "text": "If you compare this to some scary solutions, you start to think that this one is very nice. So short and easy. And it seems like it will work well! What else do you need?", "userDisplayName": null, "userId": "3268" }, { "creationDate": "2010-12-23T21:08:31.413", "id": "19940", "postId": "18627", "score": "0", "text": "Yeah, it does work pretty well =). I'll give it another day or two of testing, but I'll probably accept it.", "userDisplayName": null, "userId": "1012" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T15:09:09.773", "id": "18627", "lastActivityDate": "2010-12-23T15:09:09.773", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2841", "parentId": "18626", "postTypeId": "2", "score": "4" }
[ { "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 the correct theme set in the Appearance menu.</p> <p>However one after effect of this issue is that Nautilus become messed up. (Screenshot attached below:) This is the theme that gets randomly applied before changing back to my normal theme, but it sticks with Nautilus, unless I kill it and restart it.</p> <p><img src="https://i.stack.imgur.com/MojhT.png" alt="theme issue"></p> <p>I don't know what I could of done to make this happen and it only started happening a few days ago.</p> <p>Any help on this issue would be great! It's got me baffled!</p> <p>Useful Info about my theme setup:</p> <ul> <li>Using Nautilus Elementary</li> <li>Faenza icon set</li> <li>Using Ambiance for menus and windows.</li> <li>Compiz Enabled</li> <li>Nvidia Graphics Card</li> </ul>
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 such a name in my system :-( how do I downgrade it then?</p>
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.net/60749886/libgtk2.0-0_2.23.2-0ubuntu4_amd64.deb\nsudo dpkg -i --force-all libgtk2.0-0_2.23.2-0ubuntu4_amd64.deb\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T16:28:37.867", "id": "18635", "lastActivityDate": "2010-12-23T16:28:37.867", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18631", "postTypeId": "2", "score": "4" }
[ { "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 the update manager and start the process over.</p>
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 to achieve this. The drive should get mounted when I log in. And I should be able to move my Documents and other important folders in the home directory to the encrypted drive, and symlink them back to the home directory. As I save some passwords in firefox, should I move the hidden firefox folder in the home directory to the encrypted drive? </p>
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="nofollow noreferrer">finery theme</a>, I found the gtkrc file in my themes folder but doesn't find where to change the color of this border or an possibility to change the borderwidth to zero?</p>
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. It will usually be in <code>/usr/share/themes/themename/gtk-2.0/</code>.</p>\n\n<p>Looking at the theme, the relevant line appears to be line 71:</p>\n\n<p><code>GtkEntry::progress-border = { 2, 2, 2, 2 }</code></p>\n\n<p>Try changing these values and see if the border goes away (I haven't installed the theme so I cannot verify as yet).</p>\n\n<p>Another potentially relevant set of lines are the lines from 358 to 361:\n<code>style \"progressbar\"</code></p>\n\n<p><code>{</code><br>\n<code>xthickness = 1</code></p>\n\n<p><code>ythickness = 1</code></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-23T17:34:18.990", "id": "19908", "postId": "18642", "score": "0", "text": "thanks for your effort. change the border shades value to 0 did the trick: style \"progressbar\" \n{\n xthickness = 1\n ythickness = 1\n \n engine \"murrine\"\n {\n border_shades = { 0, 0} # draw a gradient on the border.", "userDisplayName": null, "userId": "7155" }, { "creationDate": "2010-12-23T17:02:09.770", "id": "19886", "postId": "18642", "score": "0", "text": "How can i edit the gtkrc?", "userDisplayName": null, "userId": "7155" }, { "creationDate": "2010-12-23T17:07:52.100", "id": "19888", "postId": "18642", "score": "0", "text": "I update my answer :)", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2010-12-23T17:08:49.000", "id": "19891", "postId": "18642", "score": "0", "text": "thanks Roland, found the file gtkrc file, but doesn't find where to change the color of this border or an possibility to change the borderwidth to zero? Could you assist me?", "userDisplayName": null, "userId": "7155" }, { "creationDate": "2010-12-23T17:13:12.290", "id": "19897", "postId": "18642", "score": "0", "text": "I'll take a look at the theme and see if I can make any relevant changes :)", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T16:59:17.957", "id": "18642", "lastActivityDate": "2010-12-23T17:18:48.107", "lastEditDate": "2010-12-23T17:18:48.107", "lastEditorDisplayName": null, "lastEditorUserId": "1992", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "18640", "postTypeId": "2", "score": "3" }
[ { "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 --set-selections\n</code></pre>\n<p>Remove the hold:</p>\n<pre><code>echo &quot;&lt;package-name&gt; install&quot; | sudo dpkg --set-selections\n</code></pre>\n<p>Display the status of all your packages:</p>\n<pre><code>dpkg --get-selections\n</code></pre>\n<p>Display the status of a single package:</p>\n<pre><code>dpkg --get-selections &lt;package-name&gt;\n</code></pre>\n<p>Show all packages on hold:</p>\n<pre><code>dpkg --get-selections | grep &quot;\\&lt;hold$&quot;\n</code></pre>\n<h2>apt</h2>\n<p>Hold a package:</p>\n<pre><code>sudo apt-mark hold &lt;package-name&gt;\n</code></pre>\n<p>Remove the hold:</p>\n<pre><code>sudo apt-mark unhold &lt;package-name&gt;\n</code></pre>\n<p>Show all packages on hold:</p>\n<pre><code>sudo apt-mark showhold\n</code></pre>\n<h2>dselect</h2>\n<p>With dselect, enter the [S]elect screen, find the package you wish to hold in its present state and press <kbd>=</kbd> or <kbd>H</kbd>. The changes will take effect immediately after exiting the [S]elect screen.</p>\n<hr />\n<p>The following approaches are limited in that locking/holding a package within aptitude or synaptic doesn't affect apt-get/apt.</p>\n<h2>aptitude</h2>\n<p>Hold a package:</p>\n<pre><code>sudo aptitude hold &lt;package-name&gt;\n</code></pre>\n<p>Remove the hold:</p>\n<pre><code>sudo aptitude unhold &lt;package-name&gt;\n</code></pre>\n<h2>Locking with Synaptic Package Manager</h2>\n<p>Go to <strong>Synaptic Package Manager</strong> (System &gt; Administration &gt; Synaptic Package Manager).</p>\n<p>Click the search button and type the package name.</p>\n<p>When you find the package, select it and go to the <strong>Package</strong> menu and select <strong>Lock Version</strong>.</p>\n<p><img src=\"https://i.stack.imgur.com/P0yoN.png\" alt=\"Synaptic menu\" /></p>\n<p>That package will now not show in the update manager and will not be updated.</p>\n", "commentCount": "15", "comments": [ { "creationDate": "2011-08-20T10:47:09.867", "id": "65891", "postId": "18656", "score": "6", "text": "This also works to prevent a package from being installed. When installing `devscripts`, a lot packaged are pulled as Recommended packages. As I don't need a mailserver (postfix), I could disable the installation of it by running `echo postfix hold | sudo dpkg --set-selections` before running `sudo apt-get install devscripts`. This hold action persists only for this installation, after the installation the selections are reset.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2012-08-02T05:22:04.663", "id": "210579", "postId": "18656", "score": "8", "text": "Also worth pointing out, package holds do break upgrades and patches sometimes by creating a situation where there is no legal solution apt can calculate to a dependency. If package foo has a == < or <= dependency on libbar, then apt will refuse to upgrade libbar as well as foo. Over time, these cascading dependencies may grow to block a large number of updates, including important security updates. You'll need to either remove the hold and let the upgrade happen, or rebuild the packages you are holding against newer versions of its dependencies if this happens.", "userDisplayName": null, "userId": "70344" }, { "creationDate": "2013-04-02T07:30:56.913", "id": "347354", "postId": "18656", "score": "2", "text": "Just a note: `apt-mark` doesn't support `hold` in version 0.7.25 (Ubuntu Lucid)", "userDisplayName": null, "userId": "8110" }, { "creationDate": "2015-02-03T04:16:02.627", "id": "803475", "postId": "18656", "score": "0", "text": "How can this be achieve in muon (kubuntu's update manager)?. Thanks in advance. Also, the package was downloaded (older version of chromium) so it isn't appearing in the muon GUI (at least what I see), it is appearing on the update manager though.", "userDisplayName": null, "userId": "155835" }, { "creationDate": "2016-09-03T04:20:59.197", "id": "1244017", "postId": "18656", "score": "2", "text": "I can confirm that `sudo apt-mark hold/unhold` currently works in Ubuntu **16.04** (Xenial Xerus). I held some obsolete packages and then executed `sudo apt-get dist-upgrade` in order to see if they would be upgraded, but the held packages were not upgraded. By the way, you can hold/unhold several packages at once. Example: `sudo apt-mark hold thunar thunar-dbg thunar-data libthunarx-2-0 libthunarx-2-dev`. Nice!", "userDisplayName": null, "userId": "389062" }, { "creationDate": "2017-10-21T02:09:54.593", "id": "1548363", "postId": "18656", "score": "0", "text": "If I could bump you up by 2 points I would. Your advice for how to use Synaptic to tell apt not to upgrade packages X, Y, Z was incredibly helpful! I have not tested your other methods for blacklisting certain packages b/c the Synaptic version worked perfectly! Thanks!", "userDisplayName": null, "userId": "131880" }, { "creationDate": "2017-10-23T22:31:29.697", "id": "1550520", "postId": "18656", "score": "2", "text": "Could someone here define the difference between **holding** and **locking**?", "userDisplayName": null, "userId": "16023" }, { "creationDate": "2017-10-24T19:05:28.683", "id": "1551278", "postId": "18656", "score": "1", "text": "Also, a bit of elaboration as to what **apt, aptitude, dpkg**, etc are, what they do, how they differ and whether for preventing a given package from updating all/either/some of these commands need to be run would not go amiss. The current answer is too terse and presupposes too much background knowledge (imho). -- For a bit of relevant/important background reading and commentary, read, for instance, this: https://askubuntu.com/questions/18654/how-to-prevent-updating-of-a-specific-package#comment102573_86229", "userDisplayName": null, "userId": "16023" }, { "creationDate": "2019-08-11T07:12:06.060", "id": "1941893", "postId": "18656", "score": "1", "text": "How about packages installed from snap market?", "userDisplayName": null, "userId": "758342" }, { "creationDate": "2020-04-23T20:23:46.497", "id": "2070369", "postId": "18656", "score": "0", "text": "Using apt-mark hold is preventing me from upgrading from Ubuntu 19.10 to 20.04:\n```\nhin@xps:~$ update-manager -d\nGtk-Message: 22:22:12.308: Failed to load module \"appmenu-gtk-module\"\nChecking for a new Ubuntu release\nPlease install all available updates for your release before upgrading.\n```\nHowever, I have run `sudo apt update && sudo apt upgrade`", "userDisplayName": null, "userId": "690704" }, { "creationDate": "2021-02-20T06:18:47.180", "id": "2244260", "postId": "18656", "score": "2", "text": "just a note: at least nowadays the hold-flags from `dpkg`, `apt-mark`, `apt` and `aptitude` are honored by each other. and even Synaptic kind of recognizes them: the held packages are still shown as upgradeable (if there is something to upgrade to of course) and you can mark them manually to upgrade, but when hitting the button \"Mark All Upgrades\" they are left out. **but** locking via Synaptic seems to still be \"Synaptic-exclusive\".", "userDisplayName": null, "userId": "354350" }, { "creationDate": "2021-07-14T14:03:13.377", "id": "2311398", "postId": "18656", "score": "1", "text": "As even more packages are nowadays recommending all kind of crap, it's good to know about `sudo apt install --no-install-recommends the-package-name`. That way you don't need to apply any hold tricks to avoid installing unneeded packages.", "userDisplayName": null, "userId": "50254" }, { "creationDate": "2022-01-07T10:43:25.387", "id": "2391732", "postId": "18656", "score": "0", "text": "Is it worth promoting the `apt-mark hold` option to the top of this answer? As far as I can tell, that's the recommended method now.", "userDisplayName": null, "userId": "37574" }, { "creationDate": "2022-02-24T17:14:40.823", "id": "2413571", "postId": "18656", "score": "0", "text": "The synaptic method failed to hold for me.", "userDisplayName": null, "userId": "436098" }, { "creationDate": "2022-08-22T21:16:12.297", "id": "2481268", "postId": "18656", "score": "0", "text": "With sudo apt-mark hold, how can you apply it to all packages?", "userDisplayName": null, "userId": "394369" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-12-23T18:04:14.657", "id": "18656", "lastActivityDate": "2021-02-18T23:33:17.817", "lastEditDate": "2021-02-18T23:33:17.817", "lastEditorDisplayName": null, "lastEditorUserId": "354350", "ownerDisplayName": null, "ownerUserId": "3550", "parentId": "18654", "postTypeId": "2", "score": "827" }
[ { "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 loose the display. </p> <p>Basically, I need to reboot for any docking/undocking dance to work. </p> <p>Questions: 1) What kind of information should I be looking for to understand the problem? 2) Where to find that information. </p> <p>After this, I can go and try to figure out what is going wrong.</p>
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 running, usually the laptop is still usable. The later dock-in operation is not 100% successful, e.g. the usb mouse connected to the docking station is no more working till the next re-boot.</p>\n<p>To be honest, I'd be happy if I could at least suspend to disk - undock - resume - suspend to disk - dock in - resume, but this cycle has just about 30-50% success - which is a real pain. So result is that unplugging few more cables is much faster then waiting for re-boot and opening all the docs closed before the shutdown :-(</p>\n\n<p>Concerning the hot undock-dock, I have tried the howto on \n<a href=\"http://www.thinkwiki.org/wiki/Docking_Solutions\" rel=\"nofollow\">http://www.thinkwiki.org/wiki/Docking_Solutions</a></p>\n\n<p>The shell script works well, after some customization, but udev rule</p>\n\n<pre><code>/etc/udev/rules.d/81-thinkpad-dock.rules\nKERNEL==\"dock.0\", ACTION==\"change\", RUN+=\"/usr/local/sbin/thinkpad-dock.sh\"\n</code></pre>\n\n<p>does not trigger it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-08-15T08:54:45.393", "id": "57152", "lastActivityDate": "2011-08-15T21:49:27.967", "lastEditDate": "2011-08-15T21:49:27.967", "lastEditorDisplayName": null, "lastEditorUserId": "19490", "ownerDisplayName": null, "ownerUserId": "23310", "parentId": "18665", "postTypeId": "2", "score": "2" }
[ { "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, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T20:43:02.393", "id": "18669", "lastActivityDate": "2010-12-23T20:43:02.393", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "18668", "postTypeId": "2", "score": "3" }
[ { "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" rel="nofollow">https://help.ubuntu.com/community/Partitioning/Home/Moving</a></p> <p>However, when copying the files over to the new mounted partition rsync seems to fail silently. When I compare the folders, the new one is still empty.</p> <p>This is the command that I am executing: </p> <pre><code>sudo rsync -axS --exclude='/*/.gvfs' /home/. /media/home/. </code></pre> <p>Has it anything to do with the encryption on my home folder?</p>
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 advice in this <a href=\"https://askubuntu.com/questions/5484/how-can-i-move-my-home-directory-to-another-partition-if-its-already-part-of-th\">question</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T22:36:39.907", "id": "18679", "lastActivityDate": "2010-12-23T22:36:39.907", "lastEditDate": "2017-04-13T12:24:13.310", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "7155", "parentId": "18673", "postTypeId": "2", "score": "2" }
[ { "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=pdfsam\">PDFsam</a> (PDF split and merge), <a href=\"http://packages.ubuntu.com/search?keywords=pdfjam\">PDFjam</a> or <a href=\"http://jpdftweak.sourceforge.net/\">jPDFTweak</a>. (PDF Shuffler has already been mentioned.)</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-23T23:47:40.357", "id": "19959", "postId": "18691", "score": "0", "text": "It was from 191 page that I had to add other pages. Using the following command pdftk A=251.pdf B=542.pdf A1-191 B A191-end output output.pdf gave me this error A1-191 not found as file or resource.\nError: Failed to open PDF file: \n A1-191\nB not found as file or resource.\nError: Failed to open PDF file: \n B\nA191-end not found as file or resource.\nError: Failed to open PDF file: \n A191-end\nErrors encountered. No output created.\nDone. Input errors, so no output created.", "userDisplayName": null, "userId": "4157" }, { "creationDate": "2010-12-23T23:55:27.300", "id": "19960", "postId": "18691", "score": "0", "text": "you missed the \"cat\".", "userDisplayName": null, "userId": "1689" }, { "creationDate": "2010-12-24T00:02:27.570", "id": "19961", "postId": "18691", "score": "0", "text": "Oh yeah... sorry to trouble you...", "userDisplayName": null, "userId": "4157" }, { "creationDate": "2015-05-20T18:43:14.663", "id": "888596", "postId": "18691", "score": "0", "text": "How can one insert blank pages on PDFsam?", "userDisplayName": null, "userId": "48105" }, { "creationDate": "2016-02-01T04:27:32.380", "id": "1079367", "postId": "18691", "score": "1", "text": "@WaldirLeoncio, A simple way to insert a blank page, regardless of what PDFsam does, is print a blank libreoffice document page using the \"print to file\" option. Now you have a blank page you can add in.", "userDisplayName": null, "userId": "385212" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T23:38:36.567", "id": "18691", "lastActivityDate": "2010-12-23T23:38:36.567", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1689", "parentId": "18685", "postTypeId": "2", "score": "73" }
[ { "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>Can the duration be changed? </li> </ul>
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 details see <a href=\"http://manpages.ubuntu.com/sudoers\">\"man sudoers\"</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-02T21:20:31.713", "id": "26716", "postId": "18692", "score": "1", "text": "Here's a cheatsheet from http://www.webupd8.org/2010/04/how-to-change-sudo-password-time-out-in.html \ntype `sudo visudo` \ngo the line that says `Defaults env_reset` \nand change it to \n`Defaults env_reset , timestamp_timeout=X` \nwith X in minutes", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-06-15T08:30:20.013", "id": "53976", "postId": "18692", "score": "1", "text": "FYI: `sudo -k` invalidates an active sudo session. That is useful if you've huge `timestamp_timeout` values and do not plan to do any `sudo` stuff in the next minutes.", "userDisplayName": null, "userId": "6969" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T23:43:33.337", "id": "18692", "lastActivityDate": "2010-12-23T23:43:33.337", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "721", "parentId": "18688", "postTypeId": "2", "score": "9" }
[ { "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>#!/bin/sh rec -r 16k -c 1 -p | sox -p output.wav silence 1 0.1 1% -1 0.5 1% &amp; </code></pre> <p><strong>When I run:</strong></p> <pre><code>python test.py </code></pre> <p>This is the error message that I get: <strong>FAIL sox: `-' error writing output file: Broken pipe</strong></p> <p>Running the shell script alone works fine (i.e. ./record.sh).</p> <p>What am I doing wrong? Thanks.</p> <p><strong>EDIT BELOW: I have changed the shell script, so it looks like this (there is no longer any piping):</strong></p> <pre><code>#!/bin/sh rec -r 16k -b 16 -c 1 output.wav silence 1 0.5 0.1% 1 1.0 0.1% </code></pre> <p>With Stefano's help I have the following Python script:</p> <pre><code>#!/usr/bin/python from subprocess import Popen, PIPE output = Popen(["sh", "/home/test/Downloads/data/recorder.sh", ], stdout=PIPE).communicate()[0] </code></pre> <p>Do I still need the PIPE and communicate bits?</p> <p>What do I need to change, so that the python script doesn't wait for recorder.sh to finish before moving on?</p>
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 output the same as if the script were run like this:</p>\n\n<pre><code>{ cmd ; } 2&gt;&amp;1\n</code></pre>\n\n<p>In python3, the getstatusoutput method has moved into subprocess,</p>\n\n<pre><code>import subprocess\nstatus, output = subprocess.getstatusoutput(\"./script.sh\")\n</code></pre>\n\n<p>Please refer to:</p>\n\n<ul>\n<li><a href=\"http://docs.python.org/library/subprocess\" rel=\"nofollow\">subprocess</a></li>\n<li><a href=\"http://docs.python.org/library/commands\" rel=\"nofollow\">commands</a></li>\n</ul>\n\n<p>In the standard library documentation.</p>\n\n<p>There are more ways to spawn subprocesses, and you need to assess which one is the correct method in your case. Refer to the <a href=\"http://docs.python.org/library/subprocess\" rel=\"nofollow\">subprocess</a> docs to read about them.</p>\n\n<h2>An even better way to run your script is this:</h2>\n\n<pre><code>from subprocess import Popen, PIPE\noutput = Popen([\"sh\", \"script.sh\", ], stdout=PIPE).communicate()[0]\n</code></pre>\n\n<p>It will work in python 2.6, 2.7, 3.1 and 3.2.</p>\n\n<p>Note though that you can not use shell script in this method, if you want to pipe output around, use this method instead:</p>\n\n<pre><code>p1 = Popen([\"dmesg\"], stdout=PIPE)\np2 = Popen([\"grep\", \"hda\"], stdin=p1.stdout, stdout=PIPE)\noutput = p2.communicate()[0]\n</code></pre>\n\n<p>Whereas the commands module will accept \"dmesg | grep hda\"</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-24T00:23:57.183", "id": "19966", "postId": "18693", "score": "1", "text": "Stefano thanks for your answer. I'm new to Python and shell scripting, so please bear with me. I tried your suggested method just below (\"An even better way to run your script is this:\"), but I get an error that it can't find script.sh. When I add the full path I also get an error.", "userDisplayName": null, "userId": "7737" }, { "creationDate": "2010-12-24T00:45:00.640", "id": "19968", "postId": "18693", "score": "0", "text": "what's the exact line? \nit should be `Popen([\"sh\", \"script.sh\", ], stdout=PIPE).communicate()[0]` - note that the command you run is \"sh\", with \"script.sh\" as an argument. the command and its arguments are given as a List, that's `[\"ls\", \"-l\", ]` for example", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-25T18:18:05.867", "id": "20095", "postId": "18693", "score": "0", "text": "@yonatan that's a whole different question - there are a few ways to do it, I suggest you ask it on stackoverflow - you'll get an answer in minutes. (Actually, this will have been asked before and you can just search for it)", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-25T20:12:41.273", "id": "20104", "postId": "18693", "score": "0", "text": "ok no problem will do! Thanks for all your help. Happy Holidays ;)", "userDisplayName": null, "userId": "7737" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T23:52:33.393", "id": "18693", "lastActivityDate": "2010-12-23T23:59:27.103", "lastEditDate": "2010-12-23T23:59:27.103", "lastEditorDisplayName": null, "lastEditorUserId": "1067", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "18690", "postTypeId": "2", "score": "2" }
[ { "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> <p>This has made my computer unusable. I disable AWN and changed my theme and no effect on X ram usage. </p> <p>I tried looking with the 'tree' mode in htop for anything that stood out but didn't see anything. </p> <p>Help, cause now I have to boot up into Vista.</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. After installation, you can see posterazor under <strong>Applications → Graphics → PosteRazor</strong>.</p>\n\n<p><strong>Using posterazor:</strong> </p>\n\n<ul>\n<li>Step 1: Import your poster<br>\n<img src=\"https://i.stack.imgur.com/bVGjl.png\" alt=\"alt text\"></li>\n<li>Step 2: You can see the size of the imported image here.<br>\n<img src=\"https://i.stack.imgur.com/C6GJp.png\" alt=\"alt text\"></li>\n<li>Step 3: Enter dimensions and borders \n<img src=\"https://i.stack.imgur.com/T6PJC.png\" alt=\"alt text\"> </li>\n<li>Step 4: Enter the overlapping value \n<img src=\"https://i.stack.imgur.com/pdCDM.png\" alt=\"alt text\"> </li>\n<li>Step 5: Define the final poster size for multiple sheets.<br>\n<img src=\"https://i.stack.imgur.com/bfgIg.png\" alt=\"alt text\"> </li>\n<li>Step 6: Save the poster.<br>\n<img src=\"https://i.stack.imgur.com/wfaS7.png\" alt=\"alt text\"> </li>\n<li>Now you will get all the split images in PDF format.</li>\n<li>Print the image and integrate it. </li>\n</ul>\n", "commentCount": "6", "comments": [ { "creationDate": "2015-10-08T01:37:33.810", "id": "992801", "postId": "18701", "score": "2", "text": "It seems that it doesn't handle PDFs", "userDisplayName": null, "userId": "15943" }, { "creationDate": "2017-09-04T07:31:58.350", "id": "1517824", "postId": "18701", "score": "0", "text": "it does pdfs but only the first page :(", "userDisplayName": null, "userId": "13177" }, { "creationDate": "2017-09-04T14:41:07.520", "id": "1517999", "postId": "18701", "score": "1", "text": "ain't working for me", "userDisplayName": null, "userId": "570021" }, { "creationDate": "2018-01-29T20:05:03.033", "id": "1618772", "postId": "18701", "score": "0", "text": "\"No Application Found\"", "userDisplayName": null, "userId": "268145" }, { "creationDate": "2018-07-27T08:05:10.037", "id": "1734439", "postId": "18701", "score": "0", "text": "I tried it and it printed, but the colours were very murky.", "userDisplayName": null, "userId": "75601" }, { "creationDate": "2019-12-21T17:52:41.123", "id": "2007364", "postId": "18701", "score": "0", "text": "Theres an [online version](https://posterazor.sourceforge.io/online/)", "userDisplayName": null, "userId": "881893" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-24T06:08:54.320", "id": "18701", "lastActivityDate": "2017-03-04T18:07:15.933", "lastEditDate": "2017-03-11T19:00:00.030", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "18698", "postTypeId": "2", "score": "34" }
[ { "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 seems I'd have to set each time explicitly.</p> <p>I'd specifically like this to work with Totem. When I do try to seek with Totem it restarts the video. I can seek with other videos processed with mencoder/ffmpeg where I started with a video from another source. I'm only having trouble with these videos that I'm creating from images.</p> <p>The basic encoding commands I'm using are:</p> <pre><code>mencoder "mf://image.jpg" -mf w=480:h=360:type=jpg -o mencoder_out.avi -ovc lavc -lavcopts vcodec=mpeg4:aspect=4/3:keyint=30 -audiofile music.mp3 -oac copy -fps 1/300.0 -ofps 30 -idx </code></pre> <p>and</p> <pre><code>ffmpeg -i image.jpg -i music.mp3 -acodec copy ffmpeg_out.avi </code></pre> <p>With mencoder I've also tried using a separate pass to add the key frames:</p> <pre><code>mencoder -idx mencoder_out.avi -o mencoder_indexed.avi -ovc copy -oac copy </code></pre> <ul> <li>note: with mencoder I usually add other lavcopts like vbitrate and mbd but none of those have had any effect on this problem as far as I can tell</li> </ul>
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><code>adnan@adnan-laptop:~$ whereis meld meld: /usr/bin/meld /usr/lib/meld /usr/share/meld /usr/share/man/man1/meld.1.gz </code></pre> <p>Is there any way to change the install location. Lets say if I want to install it in <strong>/usr/local/</strong> can I do it using apt-get or aptitude? I know I can compile it from source and specify prefix option to <strong>configure</strong> script or <strong>make install</strong> but it would be better (and really easier) if I could do it using <strong>apt-get</strong> as I would be able to use uninstall, upgrade and other stuff that apt-get offers</p>
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 environment variables instead).</p>\n\n<p>dpkg and apt offer a way to change the install location (as far as I remember it's <code>--root=</code> with dpkg and <code>Dir::Root</code> in the apt config - but check the docs if you really need it). This is so you can mount another systems's root dir on your system and install packages on it (like if you have diskless systems mounting their root via NFS from a server).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-24T09:37:08.940", "id": "18712", "lastActivityDate": "2015-10-27T08:03:25.000", "lastEditDate": "2015-10-27T08:03:25.000", "lastEditorDisplayName": null, "lastEditorUserId": "158442", "ownerDisplayName": null, "ownerUserId": "2369", "parentId": "18704", "postTypeId": "2", "score": "6" }
[ { "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\" rel=\"nofollow noreferrer\"><code>screen</code></a> <a href=\"http://apt.ubuntu.com/p/screen\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install screen\"></a>, <a href=\"http://packages.ubuntu.com/dtach\" rel=\"nofollow noreferrer\"><code>dtach</code></a> <a href=\"http://apt.ubuntu.com/p/dtach\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install dtach\"></a> and <code>nohup</code>.</p>\n\n<pre><code>nohup command &amp;\n</code></pre></li>\n<li><p>Screen is helpful as you can re-start a session and dtach is fun as well.</p></li>\n<li><p>Look at the following links for more informations</p>\n\n<ul>\n<li><strong><a href=\"https://help.ubuntu.com/community/Screen\" rel=\"nofollow noreferrer\">Screen</a></strong> </li>\n<li><strong><a href=\"http://linux.die.net/man/1/dtach\" rel=\"nofollow noreferrer\">Dtach</a></strong></li>\n</ul></li>\n</ul>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-24T10:35:07.240", "id": "19988", "postId": "18715", "score": "0", "text": "doesnt adding an `&` at the end of the command work too?", "userDisplayName": null, "userId": "3778" }, { "creationDate": "2010-12-24T10:40:51.943", "id": "19989", "postId": "18715", "score": "2", "text": "@Kaustubh-P using & is often a good habbit to close terminals via the 'exit' command, not hitting the X close button.& makes the command run in thebackground.But if the parent shell closes. that can still force the background programs to exit.", "userDisplayName": null, "userId": "5691" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-24T10:26:17.750", "id": "18715", "lastActivityDate": "2016-12-09T01:14:33.063", "lastEditDate": "2017-03-11T19:00:00.030", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "18713", "postTypeId": "2", "score": "12" }
[ { "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>) (Quoted output) still<br> splits the file-names at every space. The quotes and back-slashes in the<br> <code>ls | sed</code> output seem to be treated as a "finalized string" rather than<br> as "readable data lines" (like the first two data lines)... </p> <p>I've managed to "work around the issue", but Self-Modifying code probably<br> isn't the best way to go! (even though it is fun! :) </p> <hr> <p>Here is the method which does NOT work </p> <pre><code>zenlist="/tmp/zen list"; touch "$zenlist" zenity --list --title='A single-column List' --width=600 --height=450 \ --column='Spaces are allowed within "q u o t e s"' \ "How much wood would a woodchuck chuck," \ "if a wooodchuck could chuck wood?" \ $(ls -Q -1 "$zenlist"* |sed 's/$/ \\/') echo "" # rm "$zenlist" # Uncomment this line to delete the file </code></pre> <hr> <p>This method works, but there must be a "conventional" (better) way!? </p> <pre><code>zenlist="/tmp/zen list" echo "zenity --list --title='A single-column List' --width=600 --height=450 \\" &gt;"$zenlist" echo "--column='Spaces are allowed within \"q u o t e s\"' \\" &gt;&gt;"$zenlist" echo "\"How much wood would a woodchuck chuck,\" \\" &gt;&gt;"$zenlist" echo "\"if a wooodchuck could chuck wood?\" \\" &gt;&gt;"$zenlist" (ls -Q "$zenlist"* |sed 's/$/ \\/') &gt;&gt;"$zenlist" echo "" &gt;&gt;"$zenlist" source "$zenlist" # rm "$zenlist" # Uncomment this line to delete the file </code></pre>
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://mywiki.wooledge.org/BashGuide/Patterns</a></p>\n\n<pre><code>zenlist=\"/tmp/zen list\"; touch \"$zenlist\" \"$zenlist\"$'\\neven with a newline'\nzenity --list --title='A single-column List' --width=600 --height=450 \\\n --column='Spaces are allowed within \"q u o t e s\"' \\\n \"How much wood would a woodchuck chuck,\" \\\n \"if a wooodchuck could chuck wood?\" \\\n \"$zenlist\"*\n</code></pre>\n\n<p>And for a general way to put list items with spaces and other chars into a \"variable\", use bash arrays.</p>\n\n<pre><code># assign some items to start with\nitems=( \"How much wood would a woodchuck chuck,\" \"if a wooodchuck could chuck wood?\" )\n\n# append some items\nitems+=( \"$zenlist\"* )\n\nzenity --list --title='A single-column List' --width=600 --height=450 \\\n --column='Spaces are allowed within \"q u o t e s\"' \"${items[@]}\"\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-21T00:22:58.683", "id": "24342", "postId": "22488", "score": "0", "text": "Wow!... I'm starting to see the true power of the shell... You have given very clear examples; and the link is also excellent... Thanks ...", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2011-06-24T14:05:43.813", "id": "55996", "postId": "22488", "score": "0", "text": "God, you're a lifesaver.", "userDisplayName": null, "userId": "20564" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T20:13:19.410", "id": "22488", "lastActivityDate": "2011-01-20T20:18:31.073", "lastEditDate": "2011-01-20T20:18:31.073", "lastEditorDisplayName": null, "lastEditorUserId": "9016", "ownerDisplayName": null, "ownerUserId": "9016", "parentId": "18716", "postTypeId": "2", "score": "6" }
[ { "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 graphics performance is pretty hopeless).</p> <p>After swapping and changing a few times to get something she likes, I've installed Linux Mint 9. Unfortunately, the keyboard isn't mapped correctly and I can't find the correct driver to use for it. This means that some of the keys only work with the left shift key, some others only with the right shift key, and some others work with neither. In particular, she can't type an @ sign - which makes emailing people difficult!</p> <p>Any advice on how I can get the keyboard operating again would be very much appreciated by both of us!</p>
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 through some of the icons on the bottom of the desktop BEFORE logging in. This is how I got rid of the Unity environment, which is also giving me hard time on my Eee900 netbook. </p>\n\n<p>Because of performance, I now use Jolicloud on my netbook. It is much faster, although the environment is not what I would personally prefer. But id does a better job than Ubuntu. </p>\n\n<p>I realize it might not answer your original question, but it may solve the keyboard issue you had with Ubuntu. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-27T14:10:26.433", "id": "20293", "postId": "18720", "score": "0", "text": "I tried my girlfriend on Jolicloud - she hated it! I think the best plan is for me to downgrade to 10.04 or earlier, to see if that fixes it. Thank you anyway!", "userDisplayName": null, "userId": "1878" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-24T13:09:50.037", "id": "18720", "lastActivityDate": "2010-12-24T13:09:50.037", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1464", "parentId": "18717", "postTypeId": "2", "score": "1" }
[ { "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://ubuntuforums.org/showthread.php?t=1502429" rel="nofollow">link</a> which shows many combined characters but there are a few characters like <code>ऋ</code> which do not have any Third Level Key code mentioned. <br/> I found <code>ॠ</code> with Character map at <code>U0960</code> in the Hindi font but when I type in <code>ऋ</code> I get <code>ॠ</code>. Another problem is that <code>श्र</code> (zxr) does not work. It does not combine into the character shown but is a half <code>श</code> + <code>र</code>. <br/> I must be doing something wrong so am hoping someone can help.</p>
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