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
24594
1
24792
2011-02-03T11:11:27.810
4
11305
<p>There are lots of "<code>lo: Disabled Privacy Extensions</code>" in <code>var/log/messages</code> . I googled and find it is ipv6 releated, so I tried to disable ipv6.</p> <p>I added the following lines to <code>/etc/sysctl.conf</code> </p> <pre><code>net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 net.ipv6.conf.lo.disable_ipv6=1 </code></pre> <p>and <code>blacklist ipv6</code> to <code>/etc/modprobe.d/blacklist.conf</code> </p> <p>after that, I restarted the network by <code>/etc/init.d/networking restart</code> .</p> <p>My question is: The <code>ip addr</code> still shows inet6 address attached to eth0 in forms like inet6 fe80::212:79ff:fecf:edaf/64 scope link</p> <p>Does it means my ipv6 <strong>not</strong> disabled?</p>
10153
22708
2011-08-03T07:45:02.910
2013-12-23T09:11:45.357
"lo: Disabled Privacy Extensions" and ipv6 disabling?
[ "10.04", "networking", "ipv6", "vsftpd" ]
5
1
CC BY-SA 2.5
[ { "creationDate": "2015-12-06T02:10:56.833", "id": "1037709", "postId": "24594", "score": "0", "text": "Don't disable IPv6. If you don't have a IPv6 router in your LAN, your machine will not use that. But if you really want to disable IPv6, you just need to remove the 'ipv6' module. But you s...
{ "accepted": true, "body": "<p><strong>Disbale IPv6 in Ubuntu</strong></p>\n\n<p><strong>Method 1</strong></p>\n\n<pre><code>gksudo gedit /etc/modprobe.d/aliases\n</code></pre>\n\n<p>Find the line: <code>alias net-pf-10 ipv6</code>\nchange to <code>alias net-pf-10 off</code></p>\n\n<p>If the above change is not working you need to change the following one \n <code>alias net-pf-10 off ipv6</code></p>\n\n<p><strong>Method 2</strong></p>\n\n<p>Edit /etc/default/grub file</p>\n\n<pre><code>gksudo gedit /etc/default/grub\n</code></pre>\n\n<p>Change</p>\n\n<pre><code>GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”\n</code></pre>\n\n<p>to</p>\n\n<pre><code>GRUB_CMDLINE_LINUX_DEFAULT=”ipv6.disable=1 quiet splash”\n</code></pre>\n\n<p>Save and exit the file</p>\n\n<p>Update the grub from the command line</p>\n\n<pre><code>sudo update-grub\n</code></pre>\n\n<p>Keep me informed.</p>\n\n<p>Regards, </p>\n\n<p>Ilias el Matani</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T15:27:23.143", "id": "24792", "lastActivityDate": "2011-02-04T15:27:23.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10212", "parentId": "24594", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>ipv6 support appears to be built-in in the latest ubuntu kernels, so you can't blacklist the module. </p>\n\n<p>To disable ipv6 you need to do <code>sysctl -p /etc/sysctl.conf</code> before the changes in that file are used. (assuming you didn't reboot your computer, in which...
null
null
null
null
null
24599
1
24600
2011-02-03T11:30:08.620
32
52681
<p>I have written a program that outputs a lot of text to the terminal. </p> <p>I am looking for certain words in the text to see if I have done it right, but simply reading the text is impossible. </p> <p>Are there any capabilities or commands that can actually enable me to lookup a word in the terminal (like <kbd>Ctrl</kbd> + <kbd>F</kbd>)?</p>
7111
169736
2013-12-13T13:36:37.630
2013-12-13T13:36:37.630
Search function in the terminal?
[ "command-line", "gnome-terminal" ]
5
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-17T10:17:11.400", "id": "29443", "postId": "24599", "score": "0", "text": "what is the right command to add a word or phrases in text file using terminal?", "userDisplayName": "user10996", "userId": null } ]
{ "accepted": true, "body": "<p>It's <kbd>Shift</kbd> + <kbd>Ctrl</kbd> + <kbd>F</kbd>.</p>\n<p>You might want to change the <em>Scrollback</em> value to <em>Unlimited</em> to not lose any lines:</p>\n<ul>\n<li><p><em>Edit &gt; Profile Preferences &gt; Scrolling</em></p>\n<p><img src=\"https://i.stack.imgur.com/cJx2p.png\" alt=\"enter image description here\" /></p>\n</li>\n</ul>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-03T11:43:01.010", "id": "26809", "postId": "24600", "score": "10", "text": "Rule of thumb: ***Shift*** + Shortcut will work *for the most part*", "userDisplayName": null, "userId": "6005" }, { "creationDate": "2013-11-24T19:36:40.993", "id": "487282", "postId": "24600", "score": "0", "text": "Can this be achieved in Lubuntu? [It seems it cannot](http://sourceforge.net/tracker/?func=detail&aid=3560827&group_id=180858&atid=894872)", "userDisplayName": null, "userId": "179541" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-03T11:36:02.793", "id": "24600", "lastActivityDate": "2011-05-12T20:46:54.940", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24599", "postTypeId": "2", "score": "49" }
[ { "accepted": true, "body": "<p>It's <kbd>Shift</kbd> + <kbd>Ctrl</kbd> + <kbd>F</kbd>.</p>\n<p>You might want to change the <em>Scrollback</em> value to <em>Unlimited</em> to not lose any lines:</p>\n<ul>\n<li><p><em>Edit &gt; Profile Preferences &gt; Scrolling</em></p>\n<p><img src=\"https://i.stack.imgur...
null
null
null
null
null
24603
1
24606
2011-02-03T12:48:42.443
1
1781
<p>I was offered a couple of DVDs from abroad that cannot be played on my player due to region filtering.</p> <p>So I tried <code>k9copy</code> to copy the DVD (it removes the region automatically).<br/> But for some reasons the copy does not work well (followed the instructions <a href="https://help.ubuntu.com/community/K9Copy" rel="nofollow">from here</a> but the generated ISO file does not work / not even in media player - additionally there are many bugs in k9copy 2.3.5 (latest from Ubuntu) showing that it is not a reliable software, at least not on Gnome...).</p> <p>My question is simple: how to copy a DVD on Ubuntu, the copy/ISO being as close to the original, but without the region code.</p>
6619
null
null
2011-02-03T13:09:05.523
How to copy a DVD
[ "dvd", "clipboard" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T13:48:13.587", "id": "26817", "postId": "24603", "score": "0", "text": "Legally speaking the terms and conditions of this site bind us to US law and as such, the finer points of the DMCA. Technically speaking I believe this stops us facilitating the removal of DRM, ...
{ "accepted": true, "body": "<p>The most user-friendly method in my opinion is just right-click on the DVD icon on your desktop and select \"Copy disc\" (I'm not sure about the name of the menu item). This uses the package <em>libdvdcss2</em> and the software Brasero, which is shipped with Ubuntu.</p>\n\n<p>Reference: <a href=\"https://help.ubuntu.com/community/RestrictedFormats/RippingDVDs\" rel=\"nofollow\">Ubuntu Wiki: ripping dvds</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-03T13:43:57.640", "id": "26816", "postId": "24606", "score": "0", "text": "Unfortunately the region code is copied as well.", "userDisplayName": null, "userId": "6619" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T13:09:05.523", "id": "24606", "lastActivityDate": "2011-02-03T13:09:05.523", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2805", "parentId": "24603", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>The most user-friendly method in my opinion is just right-click on the DVD icon on your desktop and select \"Copy disc\" (I'm not sure about the name of the menu item). This uses the package <em>libdvdcss2</em> and the software Brasero, which is shipped with Ubuntu.</p>\n\n<p...
null
null
2011-02-03T14:34:41.863
null
null
24604
1
24617
2011-02-03T12:50:48.047
5
1538
<p>I'm using Ubuntu 10.04 and I use to connect to a pptp VPN, everything works perfectly, when i start my VPN connection I can see that the connection is in progress from the NetworkManager icon, and I can see that the connection is on when the Network icon gets the small lock.</p> <p><img src="https://i.stack.imgur.com/8TLRu.png" alt="notification area with network connection and vpn lock icon"></p> <p>Is it possible to add a notification ballon, like the one I see when the network connection is estabilished?</p> <p><img src="https://i.stack.imgur.com/Bq84o.jpg" alt="eth0 connection estabilished notification baloon"></p> <p>P.s if the connection fail or is dropped, the notification cames out like this: <img src="https://i.stack.imgur.com/FiMES.png" alt="vpn failed"></p>
8770
8770
2011-02-09T12:50:23.237
2019-03-18T15:28:52.857
Is it possible to add a notification message when a VPN gets connected?
[ "10.04", "vpn", "notification" ]
2
5
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T14:49:52.047", "id": "26827", "postId": "24604", "score": "1", "text": "You probably should file your request as bug report for network manager.", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-02-03T15:02:10.313", "id": "268...
{ "accepted": true, "body": "<p>This is more like a hack but should work (works for me).</p>\n\n<p>vpn-notify.py:</p>\n\n<pre><code>import gtk\nimport pynotify\nimport dbus\nfrom dbus.mainloop.glib import DBusGMainLoop\n\ndef vpn_connection_handler(*args, **keywords):\n state = args[0].get('State',0)\n if state == 2:\n n = pynotify.Notification (\"VPN\", \"Connection established\")\n n.show()\n\n\npynotify.init (\"icon-summary-body\")\n\n\ndbus_loop = DBusGMainLoop()\n\nsystem_bus = dbus.SystemBus(mainloop=dbus_loop)\nsystem_bus.add_signal_receiver(vpn_connection_handler,\n dbus_interface=\"org.freedesktop.NetworkManager.VPN.Connection\",\n signal_name=\"PropertiesChanged\")\n\ngtk.gdk.threads_init()\ngtk.main()\n</code></pre>\n\n<p>Run it with:</p>\n\n<pre><code>python vpn-notify.py\n</code></pre>\n\n<p>Establish the VPN connection.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-03T16:46:08.827", "id": "26839", "postId": "24617", "score": "0", "text": "it works! Now I have some more info to file the bug report.", "userDisplayName": null, "userId": "8770" }, { "creationDate": "2013-09-29T03:01:24.907", "id": "450142", "postId": "24617", "score": "0", "text": "Maybe you want to check this question http://askubuntu.com/q/351309/169736", "userDisplayName": null, "userId": "169736" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T15:39:03.827", "id": "24617", "lastActivityDate": "2011-02-03T15:39:03.827", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "24604", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>This is more like a hack but should work (works for me).</p>\n\n<p>vpn-notify.py:</p>\n\n<pre><code>import gtk\nimport pynotify\nimport dbus\nfrom dbus.mainloop.glib import DBusGMainLoop\n\ndef vpn_connection_handler(*args, **keywords):\n state = args[0].get('State',0)\n ...
null
null
null
null
null
24609
1
24762
2011-02-03T14:10:10.437
4
3740
<p>I'm currently running 10.10 with a package removed. </p> <p>I'm concerned that when it comes time to upgrade, synaptic may well install that package again. Is there way to blacklist a package that works even through distribution upgrades?</p> <p>In my case, the package is mono.</p>
673
1067
2011-02-04T08:16:18.067
2017-08-27T08:31:29.010
Blacklisting packages from installing
[ "package-management", "upgrade" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T21:29:27.033", "id": "26882", "postId": "24609", "score": "0", "text": "Couldn't you upgrade the OS and then remove mono?", "userDisplayName": null, "userId": "2827" }, { "creationDate": "2011-02-04T00:41:40.350", "id": "26927", "postId": "24...
{ "accepted": true, "body": "<p>The answer is simple:</p>\n\n<p>Remove the packages you don't want using <code>apt-get</code>, synaptic package manager or the Software Center.\nopen APT's <code>01autoremove</code> file by issuing the command </p>\n\n<pre><code>sudo -H gedit /etc/apt/apt.conf.d/01autoremove\n</code></pre>\n\n<p>Navigate to the bottom of the section titled Never-MarkAuto-Sections and add an entry to the section. In my case to block GRUB I entered <code>grub.*</code>;. The contents of the modified file is at the bottom of this page.</p>\n\n<p>You will enter the package name or portion of package names, including using <code>.*</code> to mean any characters. In my case <code>grub.*</code> blocks all packages that start with the word <code>grub</code>.</p>\n\n<p>When you next open the update utility it will not show the option to upgrade or update the software that you chose to block.</p>\n\n<p>My <code>/etc/apt/apt.conf.d/01autoremove</code> file:</p>\n\n<pre><code>APT\n{\n NeverAutoRemove {\n \"^linux-firmware$\";\n \"^linux-image.*\"; \"^linux-restricted-modules.*\";\n \"^linux-ubuntu-modules-.*\";\n };\n Never-MarkAuto-Sections\n { \"metapackages\";\n \"restricted/metapackages\";\n \"universe/metapackages\";\n \"multiverse/metapackages\";\n \"oldlibs\";\n \"restricted/oldlibs\";\n \"universe/oldlibs\";\n \"multiverse/oldlibs\";\n \"grub.*\";\n };\n};\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-10-03T17:39:16.910", "id": "243820", "postId": "24762", "score": "0", "text": "Did not work for me (even specifically for grub*). Details in new question: http://askubuntu.com/questions/196037/blacklisting-grub-packages-from-installing", "userDisplayName": null, "userId": "28824" }, { "creationDate": "2012-10-04T00:49:10.847", "id": "243995", "postId": "24762", "score": "1", "text": "Uh? `Never-MarkAuto-Sections` doesn't do this at all: it causes packages in a section not to be marked as automatically installed. You can't use package names, only section names. You can't use wildcards, only exact names. And this doesn't do anything about whether the package will be installed.", "userDisplayName": null, "userId": "1059" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-04T12:10:48.970", "id": "24762", "lastActivityDate": "2017-08-27T08:31:29.010", "lastEditDate": "2017-08-27T08:31:29.010", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "10212", "parentId": "24609", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>You could make your own mono package that is empty and set the version crazy high. </p>\n\n<p>Sometimes this creates dep-solving issues though</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-04T15:51:28.317", "id": "27034",...
null
null
null
null
null
24610
1
null
2011-02-03T14:11:15.320
3
398
<p>I have setup an Ubuntu server 10.10 32bit on an old Dell D610 Laptop for testing. I have the latest PHP, MySQL and Apache with Wordpress installed.</p> <p>After the testing is over and once I finish adding material to my wordpress I will build a Ubuntu 10.10 64bit VM on Hyper-V.</p> <p>What I am wondering is , if it's best practice to build everything from scratch (which will take me more time and would like to avoid)</p> <p>or transfer the database and all other settings? If I choose to transfer how and what I need to do?</p> <p>Here's where I'd like some help as I am still an intermediate admin (If I can call it that!)</p> <p>I am looking forward for your help.</p> <p>Thanks!</p>
10157
235
2011-02-03T15:21:47.333
2011-03-05T21:07:01.850
Moving a LAMP set up from 32 bit to 64 bit
[ "10.10", "64-bit", "webserver" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Just install the binary 64-bit version of the Mysql, Apache-httpd and PHP.\nThere will be no differences in your SQL dump or in your PHP scripts between the two systems.</p>\n\n<p>Just stick with the same major versions and check for the PHP (php.ini) and httpd settings.</p>\...
null
null
null
null
null
24615
1
24666
2011-02-03T14:52:02.430
1
815
<p>i'm trying to set up fstab to automatically connect to my office shared server. I'm undoubtedly doing something silly here as the username and password and server name work fine in the first code snippet below, just not the second - any help would be appreciated!</p> <p>The following command works as expected...</p> <pre><code>tom@tom-desktop: sudo /usr/bin/smbclient -L Server.local -Uguest Enter guest's password: Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.10] Sharename Type Comment --------- ---- ------- Lacie Disk Disk macosx Server Disk macosx IPC$ IPC IPC Service (Server) ADMIN$ IPC IPC Service (Server) Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.0.10] Server Comment --------- ------- ACER-9D60040D10 SERVER Server Workgroup Master --------- ------- WORKGROUP ACER-9D60040D10 </code></pre> <p>But when i add the following line to /etc/fstab, i get this error: cifs_mount failed w/return code = -22 </p> <pre><code>//Server.local/Server /media/maguires cifs username=guest,password=password 0 0 </code></pre>
null
null
null
2011-02-03T20:24:29.610
Trying to configure samba share with office server
[ "networking", "mount", "samba", "fstab" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Try changing the line to specify that you're using a guest user, perhaps?</p>\n\n<pre><code>//Server.local/Server /media/maguires cifs guest,users 0 0\n</code></pre>\n\n<p>the <code>users</code> tag will allow you mount/unmount it as a standard user.</p>\n\n<p>Alternatively, try specifying guest, but keep the password blank :</p>\n\n<pre><code>//Server.local/Server /media/maguires cifs username=guest,password=,users 0 0\n</code></pre>\n\n<p>Also, many people have reported that smbfs doesn't work so well with hostnames specified in /etc/fstab. Perhaps try changing <code>Server.local</code> reference to an IP address. (NB : This is still worth doing EVEN IF you have name resolution working, either through /etc/hosts or a relevant DNS entry.)</p>\n\n<p>[Edit - didn't read Christopher's comments on this issue. Worth keeping in though]</p>\n\n<p>Hope this helps.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T09:41:10.353", "id": "26967", "postId": "24666", "score": "0", "text": "First suggestion worked a treat, many thanks @Scaine.", "userDisplayName": "user10160", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T20:24:29.610", "id": "24666", "lastActivityDate": "2011-02-03T20:24:29.610", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "861", "parentId": "24615", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>I think mount error 22 = invalid argument? Try IP address instead of Server.local.\nInstall the network file system:</p>\n\n<pre><code>sudo apt-get install smbfs\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-03T15:33:04...
null
null
null
null
user10160
24626
1
24645
2011-02-03T16:32:36.430
1
1468
<p>What is the code to make a script run on startup that binds the home folders with other folders depending on if a drive is present?</p> <p>Because most of my files are kept in separate drives and places than /home/John/Folder, I use Terminal code to bind the Home folders for different places. For example, I bind the /Documents folder with /Dropbox/Documents so it's constantly backed up. I've found out how to do this through the terminal, and read somewhere that you can put code in the /etc/rc.local script and that that script (rc.local) runs on start up. I've put the code into that script, but I'm not sure how to get that to run on startup. Right now I have to wait till the computer has started up, then run the code in the terminal. The full code in that script I've set is below.</p> <pre><code>sudo mount -o bind /media/Storage/Music ~/Music &amp;&amp; sudo mount -o bind /media/storage/downloads ~/Downloads &amp;&amp; sudo mount -o bind /media/2TB/Videos ~/Videos &amp;&amp; sudo mount -o bind /home/john/dropbox/documents ~/Documents &amp;&amp; sudo mount -o bind /home/john/dropbox/Photos ~/Pictures &amp;&amp; exit 0 </code></pre> <p>The <em>exit 0</em> is needed for the script to run, according to a comment in the script.</p> <p>Since this on a laptop and I keep my video files on an external drive, is there anyway to add a simple "If is present, also bind ~/Videos to /media//Videos," and if it's not, skip over it? Or put that code at the end so it doesn't affect the above execution?</p>
9494
null
null
2011-02-03T23:42:12.717
Start up script, mounting and binding depending on if drives are present?
[ "10.10", "mount" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are multiple issues with your script:</p>\n\n<ol>\n<li>You are chaining (&amp;&amp;) unrelated commands, a failure on one will skip the rest.</li>\n<li>You are using \"~\" in the path name, the script is invoked with root, whicih means it will be translated into /root, you must use the full path name</li>\n<li>You don't need to use sudo because it's running with root.</li>\n</ol>\n\n<p>The folllowing script will do what you have requested:</p>\n\n<pre><code>[[ -d /media/Storage/Music ]] &amp;&amp; mount -o bind /media/Storage/Music /home/your_user/Music \n[[ -d /media/storage/downloads ]] &amp;&amp; mount -o bind /media/storage/downloads /home/your_user/Downloads\n[[ -d /media/2TB/Videos ]] &amp;&amp; mount -o bind /media/2TB/Videos /home/your_user/Videos \nmount -o bind /home/john/dropbox/documents /home/your_user/Documents \nmount -o bind /home/john/dropbox/Photos /home/your_user/Pictures\nexit 0\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T18:50:23.270", "id": "24645", "lastActivityDate": "2011-02-03T18:50:23.270", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "24626", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>In a BASH script...</p>\n\n<pre><code>#check for existence of a directory\nif [ ! -d /media/Videos ]; then\n // do nothing or echo \"not available\"\nelse\n // action\nfi\n\n#check for existence of a file\nif [ ! -f /media/Videos/i_am_mounted ]; then\n // do nothing ...
null
null
null
null
null
24628
1
24723
2011-02-03T16:47:24.843
10
16503
<p>I was at school SSHing to my homebox. All of a sudden, my connection was closed. Attempting to reconnect failed. When I returned home, I discovered that my computer was off.</p> <p>Nobody was at my house and I am sure that I did not have a power outage.</p> <p>How can I figure out how or why my computer shut off? Is there some log in <code>/var/log</code> that could point me in the right direction? Should there be a core dump somewhere that I should find? If so, how do I use core dumps?</p>
1879
169736
2014-01-09T23:46:04.143
2014-01-13T22:00:34.177
Which log will tell me why my computer shut down?
[ "power-management" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The relevant files in <code>/var/log</code> are messages, <code>dmesg</code></p>\n\n<p>issue, command <code>last</code> to see the exact reboot time.\nYou will see a line starting with <code>reboot</code> (or may be <code>shutdown</code>) for all reboot/crash.<br>\n<code>cat /var/log/messages</code> from a terminal and check for messages at the time stamp of reboot or just before it.\n<code>dmesg</code> can give the last boot time messages. </p>\n\n<p>Hope this helps.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-04T07:03:56.367", "id": "24723", "lastActivityDate": "2014-01-13T22:00:34.177", "lastEditDate": "2014-01-13T22:00:34.177", "lastEditorDisplayName": null, "lastEditorUserId": "23878", "ownerDisplayName": null, "ownerUserId": "10077", "parentId": "24628", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>It is unusual for a kernel error to shutdown the power, it would either hang with a kernel panic or reboot. It was most likely an hardware issue.</p>\n\n<p>If there was a kernel panic search for \"kernel panic\" on the logs dir:</p>\n\n<pre><code>grep -r \"kernel panic\" /va...
null
null
null
null
null
24630
1
null
2011-02-03T16:51:48.063
0
172
<p>When im running make for building oxygen-transparent theme , I receive the following error :</p> <pre><code>kde@wilsonzaizai-Satellite-L510:~/oxygen-transparent/build$ sudo make install [ 0%] Built target oxygentransparentstyle_automoc [ 5%] Built target oxygentransparentstyle [ 5%] Built target kwin3_oxygen_transparent_automoc [ 18%] Built target kwin3_oxygen_transparent [ 18%] Built target kwin_oxygen_transparent_config_automoc Linking CXX shared module ../../lib/kwin_oxygen_transparent_config.so /usr/bin/ld: cannot find -loxygenstyle collect2: ld returned 1 exit status make[2]: *** [lib/kwin_oxygen_transparent_config.so] Error 1 make[1]: *** [decoration/config/CMakeFiles/kwin_oxygen_transparent_config.dir/all] Error 2 make: *** [all] Error 2 </code></pre> <p>What is -loxygenstyle ?</p>
3267
506
2011-02-03T17:55:26.780
2011-02-03T18:23:56.983
Make error on Kubuntu
[ "kubuntu", "themes" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>-loxygenstyle means that it must be linked to the \"oxygenstyle\" library, which is not currently installed on your system.</p>\n\n<p>If you search for liboxygenstyle on <a href=\"http://packages.ubuntu.com/search?searchon=contents&amp;keywords=liboxygenstyle&amp;mode=filena...
null
null
null
null
null
24634
1
24636
2011-02-03T17:13:33.150
4
671
<p>I'm not too familiar with VMs and the like so this may not even be possible.</p> <p>Here is what I have:</p> <ol> <li>A real, full install of Windows 7 on hard drive A.</li> <li>A real, full install of Ubuntu 10.04 on hard drive B.</li> <li>Grub allowing me to select what I want to launch when I start up my computer.</li> </ol> <p>It would be Amazing if I could do one of two things.</p> <ul> <li><p>Within Windows 7, launch my real install of ubuntu as if it were a VM. That means I would get all the installed software, all of the files, and all of the settings.</p></li> <li><p>Launch a VM copy of ubuntu 10.04 but some how make it use all of the installed software and settings from my real copy.</p></li> </ul> <p>Thanks!</p>
10169
46312
2012-04-09T02:20:44.360
2012-04-09T02:20:44.360
How to Launch a real install of Ubuntu already on another hard-drive in Windows 7 like a VM
[ "installation", "windows", "virtualization" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>If I understand correctly, you want to run 2 fully installed OS's at the same time. AFAIK, you cannot run two OS's at once without virtualizing one of them.</p>\n\n<p>So here is what I found on moving an OS from a hard drive to a virtual machine</p>\n\n<blockquote>\n <p>Convert your Computer into a Virtual\n Machine</p>\n \n <p>There's a new\n utility from Microsoft that makes it\n both simple and free to convert an\n existing installation of Windows into\n a virtual machine ready to run on any\n other computer.</p>\n \n <p>Microsoft’s Sysinternals team has\n released a simple application called\n <a href=\"http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx\">Disk2vhd</a>, that lets you easily migrate\n an existing computer to a virtualized\n hard drive (VHD). It's a tiny utility\n doesn't even require instillation.\n Create Virtual Hard Disks with\n Disk2VHD</p>\n \n <p>When you run Disk2vhd, it will\n immediately show you all the drives\n and partitions on your computer that\n it can migrate to a VHD. Simply\n select a drive that you wish to create\n a VHD file from and click “Create.”\n Disk2vhd will convert the hard drive\n into a VHD file even if the computer\n /drive is currently in use.</p>\n \n <p>When the Virtual Machine VHD file is\n created, you can run it in any desktop\n virtualization program including the\n free <a href=\"http://www.labnol.org/software/create-virtual-machine-of-existing-computer/10510/\">Windows Virtual PC</a>, <a href=\"http://www.virtualbox.org/\">Virtual Box</a>,\n or <a href=\"http://www.vmware.com/\">VMware Player</a>. You can also mount\n the virtual machine as a standard hard\n drive in Windows 7, and can even boot\n from it if your computer is running\n Windows 7 Ultimate.</p>\n \n <p>You may use Disk2vhd to create virtual\n machines of your Windows XP, Windows\n Server 2003, Windows Vista and higher\n machines, including x64 systems. Usage\n Scenario</p>\n \n <p>Let's say you have a computer that is\n already running all the software\n programs you frequently use, but you\n now want to move to a new computer or\n upgrade your operating system. You can\n then consider creating a virtual\n machine of your old machine using the\n Microsoft utility and this will help\n you use all your favorite programs\n (with the same settings) on the new\n machine.</p>\n \n <p>You can also use virtualization to\n create a ghost image of your hard\n drive in a single file and this will\n be handy in the event of a disk\n failure.</p>\n \n <p>Disk2vhd is an useful tool that will\n make it much easier for you to enjoy\n the benefits of virtualization without\n being too technical.</p>\n</blockquote>\n\n<p>From <a href=\"http://www.labnol.org/software/create-virtual-machine-of-existing-computer/10510/\">labnol.org</a></p>\n\n<p>Hope this helps.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T17:33:45.987", "id": "24636", "lastActivityDate": "2011-02-03T17:33:45.987", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5179", "parentId": "24634", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>If I understand correctly, you want to run 2 fully installed OS's at the same time. AFAIK, you cannot run two OS's at once without virtualizing one of them.</p>\n\n<p>So here is what I found on moving an OS from a hard drive to a virtual machine</p>\n\n<blockquote>\n <p>Con...
null
null
null
null
null
24635
1
null
2011-02-03T17:27:09.083
3
1709
<p>I'm using the script below to run FFmpeg on Ubuntu 10.10. I followed these <a href="http://ubuntuforums.org/showthread.php?t=786095&amp;highlight=install+ffmpeg+x264" rel="nofollow">instructions</a> to install FFmpeg &amp; x264.</p> <p>While <code>ffmpeg</code> does capture the screen it does not capture the mic audio. I've checked that the mic works via <em>"System Preferences"</em>. Anyone have any ideas on what the problem(s) could be and suggestions on how to resolve this issue? Thanks.</p> <pre><code>ffmpeg -f alsa -ac 2 -i hw:0,0 -f x11grab -r 30 -s $(xwininfo -root | grep 'geometry' | awk '{print $2;}') -i :0.0 -acodec pcm_s16le -vcodec libx264 -vpre lossless_ultrafast -threads 0 -y screen-capture.mkv </code></pre>
null
3037
2011-02-06T10:48:23.847
2011-02-06T10:48:23.847
FFmpeg not recording audio during screen capture
[ "sound", "microphone", "ffmpeg" ]
0
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T17:29:55.990", "id": "26846", "postId": "24635", "score": "1", "text": "Have you checked Sound Preferences to ensure that your Mic is the current input source?", "userDisplayName": null, "userId": "4715" }, { "creationDate": "2011-02-03T17:34:37.657"...
null
[]
null
null
2012-02-21T21:29:52.893
null
user10172
24638
1
null
2011-02-03T17:54:41.710
3
3278
<p>I am planning on installing Ubuntu from the minimal CD image so that I can install what I want to. </p> <p>Any suggestions for <em>must have</em> packages that I should be installing? Like for example GNOME is one. I am looking for personal experiences. </p> <p>Should GNOME be enough to get me up and running?</p>
null
null
null
2011-02-03T19:24:57.733
Ubuntu minimal and must have packages
[ "ubuntu-minimal" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T18:11:47.967", "id": "26849", "postId": "24638", "score": "3", "text": "Your question is highly subjective and depends on your specific needs, also installing gnome will bring most of the packages that you get from a regular Ubuntu gnome desktop install.", "user...
null
[ { "accepted": null, "body": "<p>Depending on what you want to do with your computer, I'd say the main must-have package is the X server (and related packages). This will allow you to run any number of the available window managers and/or desktop environments, and is the base for most all GUI interaction you...
null
null
null
null
user10174
24640
1
24721
2011-02-03T18:06:33.727
1
804
<p>Following is the layout of the current partitions of my single hard drive viewed from Windows 7:</p> <ul> <li>C: has Windows 7 system files and my personal data;</li> <li>Q: for Lenovo recovery;</li> <li>SYSTEM_DRV: for Windows boot files;</li> </ul> <p>My goals are:</p> <ul> <li>to create another partition D: for my personal data, and dedicate C: for Windows system files and applications only.</li> <li>to install Ubuntu alongside Windows. D: will be shared between the two OSes.</li> </ul> <p>My questions are:</p> <ol> <li>Is it correct that the free space generated from shrinking C: will only be able to create an extended partition, since there are already 3 primary partitions? So must D: be one logical partition on the extended partition, just as the partitions for Ubuntu will be? Will this be bad sometime? If yes, other better solutions?</li> <li>What are the good utilities to accomplish the partition tasks? Can Ubuntu installer solely handle them? Or better to have some of the jobs done in Windows with some recommended softwares?</li> </ol> <p>Thanks and regards!</p>
1471
1471
2011-02-03T20:35:19.637
2011-02-04T06:56:25.593
Partitions for dual boot install with Windows
[ "10.04", "dual-boot", "windows-7" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Since you have windows 7, you can even use windows native utilities to shrink C drive.\nIt would be good if you go step by step.\nI would do like this. </p>\n\n<ol>\n<li>Use Settings -> Control Panel -> Administrative Tools -> Computer Management -> Storage -> Disk Management -> Shrink Volume from windows 7 and free up needed space.</li>\n<li>From windows itself create a extended partition</li>\n<li>Select extended partition and create a required D drive and leave rest of the space as unused for installing Ubuntu.</li>\n<li>Do a reboot and confirm all looks good with windows drives including my new D drive and free space.</li>\n<li>While installing Ubuntu, use manual partitioning scheme to choose any number of partitions from the free space and install Ubuntu.</li>\n</ol>\n\n<p>This way, you can separate freeing up space for Ubuntu and Ubuntu install. Advantage that you will get an intermediate validation point to confirm all looks good.</p>\n\n<p>Here is a detailed reference on resizing partitions from windows:\n<a href=\"https://help.ubuntu.com/community/HowtoResizeWindowsPartitions\" rel=\"nofollow\">https://help.ubuntu.com/community/HowtoResizeWindowsPartitions</a></p>\n\n<p>Now, if you like to use D drive itself for Ubuntu along with windows, I believe wubi is the only option. Then, Ubuntu will co-exist inside windows as a program. On any other install, I believe Ubuntu expects to have root partition on an ext2/ext3/ext4 partition type.</p>\n\n<p>Let me know if this helps.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-07T00:37:39.487", "id": "27425", "postId": "24721", "score": "0", "text": "Thanks! I was wondering why \"if you like to use D drive itself for Ubuntu along with windows, I believe wubi is the only option\"? During installation of Ubuntu, can I specify D to be mounted automatically whenever Ubuntu starts?", "userDisplayName": null, "userId": "1471" }, { "creationDate": "2011-02-07T03:06:19.657", "id": "27436", "postId": "24721", "score": "0", "text": "Yes, D drive can be mounted when Ubuntu boots. But you cannot have Ubuntu's root files (installation files) to co-exist on D drive which would be an NTFS filesystem. So you will need a Linux Partition to 'install' Ubuntu and D drive can be mounted. For that matter, any NTFS drives (that includes C or any other drive on same system) can be mounted at will from Ubuntu.", "userDisplayName": null, "userId": "10077" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T06:56:25.593", "id": "24721", "lastActivityDate": "2011-02-04T06:56:25.593", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10077", "parentId": "24640", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>You haven't gotten an answer for a while... On #1: Yes: (maximum of 4 primary partitions) and after you shrink C:, the remainder of the disk can be used as an extended partition, with many logical partitions within it. On #2, the Ubuntu installer is awesome and can handle it ...
null
null
null
null
null
24646
1
null
2011-02-03T19:05:31.020
1
1071
<p>The other party is sending their webcam view and I am sending mine, so that they can see everything fine, but i only can see a blank window.</p> <p>when enabling the "show my webcam" it shows for a few milliseconds but then just disappears.<br> It happens with two different graphic cards, it's very unlikely to be graphics card related.</p> <p>Any ideas on what could be the problem?</p>
742
47151
2012-03-14T11:19:44.790
2012-03-14T11:19:44.790
Skype shows a blank window on the webcam part what could be the problem?
[ "webcam", "skype", "cheese" ]
1
8
CC BY-SA 3.0
[ { "creationDate": "2011-02-03T19:28:45.983", "id": "26858", "postId": "24646", "score": "0", "text": "Problems with skype itself ???", "userDisplayName": null, "userId": "6586" }, { "creationDate": "2011-02-03T19:36:28.453", "id": "26861", "postId": "24646", "score": ...
null
[ { "accepted": null, "body": "<p>As far as I remember skype has a problem with v4l2 (video for linux 2) and has to use vl41 instead but it doesn't know were it is the solution was to shutdown skype then create a script. In a terminal type or paste</p>\n\n<pre><code>gksudo gedit /usr/local/bin/skype\n</code><...
null
null
null
null
null
24660
1
24665
2011-02-03T20:02:33.340
4
2640
<p>I created the stick with Unetbootin. The stick boots fine, but after language selection the installer says that CD-ROM is not in the drive. How can I get around that?</p> <p>The desktop disk works fine, but I can't use it.</p> <p>I cannot use usb-creator-gtk since it gives me Segmentation faults for some reason... So I have to stick with unetbootin.</p>
1241
1241
2011-02-03T20:26:23.520
2011-02-03T20:26:23.520
How can I install Ubuntu using the Alternate disk from USB-stick?
[ "usb", "iso", "installation" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Use the Startup Disk Creator in System --> Administration</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-02-03T20:44:30.073", "id": "26871", "postId": "24665", "score": "3", "text": "It gives me a Segmentation Fault when creating the stick :(", "userDisplayName": null, "userId": "1241" }, { "creationDate": "2011-02-03T20:47:10.687", "id": "26872", "postId": "24665", "score": "0", "text": "Use an older (or newer) iso like 9.10 or 10.04 or 10.10 to create it", "userDisplayName": null, "userId": "5938" }, { "creationDate": "2011-02-12T12:22:51.517", "id": "28446", "postId": "24665", "score": "0", "text": "10.04 worked fine, but 10.10 just gives segmentation faults. Wtf?", "userDisplayName": null, "userId": "1241" }, { "creationDate": "2011-02-17T13:06:25.187", "id": "29480", "postId": "24665", "score": "0", "text": "Probably a bug in 10.10 :)", "userDisplayName": null, "userId": "5938" }, { "creationDate": "2011-02-17T13:06:49.617", "id": "29481", "postId": "24665", "score": "0", "text": "ps that's why I always choose LTS :)\n\nPlease mark the answer as right and upvote if you've found this correct :)", "userDisplayName": null, "userId": "5938" }, { "creationDate": "2013-01-06T22:32:40.890", "id": "295034", "postId": "24665", "score": "0", "text": "Multiple bugs on Startup Disk Creator (usb-creator) are reported: 572611, 875758, 859539.", "userDisplayName": null, "userId": "7398" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T20:21:47.793", "id": "24665", "lastActivityDate": "2011-02-03T20:21:47.793", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5938", "parentId": "24660", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p><a href=\"https://help.ubuntu.com/community/Installation/FromUSBStick\" rel=\"nofollow\">https://help.ubuntu.com/community/Installation/FromUSBStick</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-12-26T01:11:54.237", "id":...
null
null
null
null
null
24667
1
24670
2011-02-03T20:37:03.927
0
698
<p>I have installed ubuntu-restricted-extras but when I play a movie such as this <a href="http://media.railscasts.com/videos/250_authentication_from_scratch.mov" rel="nofollow">http://media.railscasts.com/videos/250_authentication_from_scratch.mov</a> it plays the sound but the video is just a black screen.</p> <p>It does the same in several different media players VLC, Totem, Bansheee. The BBC Iplayer and Youtube work fine.</p> <p>How do I troubleshoot this?</p> <p>Thanks</p>
10183
114
2011-02-03T20:55:42.413
2011-02-03T20:55:42.413
.mov file not video playing
[ "10.10", "codecs", "totem" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I managed to fix this by removing some third party software sources! Yay</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-03T20:52:45.940", "id": "26873", "postId": "24670", "score": "0", "text": "Any specific sources causing problems?", "userDisplayName": null, "userId": "4715" }, { "creationDate": "2011-02-03T21:04:54.183", "id": "26879", "postId": "24670", "score": "0", "text": "Unity 2-D I think", "userDisplayName": null, "userId": "10183" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T20:44:39.317", "id": "24670", "lastActivityDate": "2011-02-03T20:44:39.317", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10183", "parentId": "24667", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I managed to fix this by removing some third party software sources! Yay</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-03T20:52:45.940", "id": "26873", "postId": "24670", "score": "0", "text": "Any ...
null
null
null
null
null
24680
1
24707
2011-02-03T21:32:27.327
5
1034
<p>There are many videos on sites such as YouTube that simply contain album art and an audio track. This is easy to do with tools such as openshot or pitivi but it is time consuming.</p> <p>Is there a script or command that can be used to automate this process?</p>
667
527764
2020-08-10T06:49:51.897
2020-08-10T06:49:51.897
How can I automate creation of videos from an image and an audio track?
[ "command-line", "sound", "scripts", "video", "automation" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2011-02-04T03:39:46.363", "id": "26946", "postId": "24680", "score": "0", "text": "To all readers, please remember to use these tools responsibly. The [term](http://www.youtube.com/t/terms) \"You shall not download any Content unless you see a 'download' or similar link displa...
{ "accepted": true, "body": "<p>This may be helpful, even though it requires that you have the album art separate from the audio\nfile. and that the audio be in .mp3 format, you could however, look at the command and alter it to suit other input and output formats.</p>\n\n<p>At your terminal in a directory containing the image and audio files you could use ffmpeg like this:</p>\n\n<pre><code>ffmpeg -loop_input -r ntsc -i cover_art.jpg -i test.mp3 -acodec copy -shortest -qscale 5 out.avi\n</code></pre>\n\n<p>This will take cover_art.jpg and test.mp3 and create a video out.avi with cover_art.jpg as the video and test.mp3 as the audio track of length the duration of the audio track.</p>\n\n<p>ffmpeg may have to be compiled with restricted formats enabled.</p>\n\n<p>A great automation would be to find something that can extract the art from the audio file and use that image with ffmpeg.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T10:14:26.393", "id": "26983", "postId": "24707", "score": "0", "text": "This works great but I reccomend using `-r 1` instead of `-r ntsc` because it speeds up the process.", "userDisplayName": null, "userId": "667" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T01:43:31.040", "id": "24707", "lastActivityDate": "2011-02-04T10:03:13.577", "lastEditDate": "2011-02-04T10:03:13.577", "lastEditorDisplayName": null, "lastEditorUserId": "667", "ownerDisplayName": null, "ownerUserId": "4923", "parentId": "24680", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>This may be helpful, even though it requires that you have the album art separate from the audio\nfile. and that the audio be in .mp3 format, you could however, look at the command and alter it to suit other input and output formats.</p>\n\n<p>At your terminal in a directory ...
null
null
null
null
null
24681
1
null
2011-02-03T21:25:43.120
2
3191
<p>Here are the screens. I really need a solution. I used these instructions <a href="http://www.ubuntu.com/netbook/get-ubuntu/download" rel="nofollow noreferrer">http://www.ubuntu.com/netbook/get-ubuntu/download</a></p> <p><img src="https://i.stack.imgur.com/scWJk.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/QyMnr.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/cOrmp.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/c3wn6.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/Wt0jG.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/41iHZ.jpg" alt="enter image description here"></p> <p><img src="https://i.stack.imgur.com/kFCEv.jpg" alt="enter image description here"></p> <p>After about 15 minutes, I see Ubuntu information on the screen, but then it takes another 15-30 minutes to show me the first screen of the installation. It never ends... What's the problem?</p>
10187
8844
2011-02-04T07:48:57.767
2011-02-04T07:48:57.767
Installation is unusably slow, booting from live USB
[ "10.10", "installation", "ubuntu-netbook", "live-usb" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>In my experience, (And all I've ever booted from is a USB. Never used a CD/DVD) it normally takes awhile to boot from a USB. <strong>But</strong> on the other hand 15-30 <em>minutes</em> is a bit much. </p>\n", "commentCount": "1", "comments": [ { "creat...
null
null
null
null
Totty
24685
1
24703
2011-02-03T22:00:03.500
0
1221
<p>I have two executable files I downloaded and am trying to add to the path. They are located in</p> <pre><code>/home/user/folder </code></pre> <p>and the specific files are</p> <pre><code>/home/user/folder/app1 /home/user/folder/app2 </code></pre> <p>Both app1 and app2 have the executable flag set to all (user, group, other).</p> <p>I can execute the files if I am in /home/user/folder and I execute these commands</p> <pre><code>./app1 ./app2 </code></pre> <p>However I can't run them from elsewhere. I added this line to my .profile</p> <pre><code>PATH="$PATH:/home/user/folder" </code></pre> <p>and then sourced the path with</p> <pre><code>. /home/user/.profile </code></pre> <p>and I can see app1 and app2 when I use command completion (pressing tab). However here is what happens when I try to run app1 or app2 with the following commands (the following only shows 'app1' but the same is true of 'app2')</p> <pre><code>user@comp:~$ app1 -bash: app1: command not found user@comp:~$ /home/user/folder/app1 -bash: app1: command not found user@comp:~/folder$ ./app1 (program runs) </code></pre> <p>I'm stumped :), I must have missed something simple. Thanks for your help!!</p> <p><strong>UPDATE</strong></p> <p>Ok, I found some errors in the path which I think I fixed, but now it's not running in any case - which for some reason I think is a step forward. Thanks for suggesting the following steps, here is their output:</p> <pre><code>user@computer:~$ echo $PATH /usr/share/fsl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/usr/local/matlab/bin:/usr/local/VoxBo/bin:/usr/local/itt/idl64/bin:/usr/local/afni/bin/:/usr/local/mricron:/usr/lib/voxbo/bin:/home/user/folder:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11/:/usr/games/:/usr/local/matlab/bin:/usr/local/VoxBo/bin/:/usr/local/itt/idl64/bin:/usr/local/afni/bin/:/usr/local/mricron/ user@computer:~$ typeset -p PATH declare -x PATH="/usr/share/fsl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/usr/local/matlab/bin:/usr/local/VoxBo/bin:/usr/local/itt/idl64/bin:/usr/local/afni/bin/:/usr/local/mricron:/usr/lib/voxbo/bin:/home/user/folder:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11/:/usr/games/:/usr/local/matlab/bin:/usr/local/VoxBo/bin/:/usr/local/itt/idl64/bin:/usr/local/afni/bin/:/usr/local/mricron/" user@computer:~$ type app1 app1 is /home/user/folder/app1 user@computer:~$ type app2 app2 is /home/user/folder/app2 user@computer:~$ app1 bash: /home/user/folder/app1: No such file or directory user@computer:~$ app2 bash: /home/user/folder/app2: No such file or directory user@computer:~$ /home/user/folder/app1 bash: /home/user/folder/app1: No such file or directory user@computer:~$ /home/user/folder/app2 bash: /home/user/folder/app2: No such file or directory user@computer:~$ cd /home/user/folder user@computer:~/folder$ app1 bash: /home/user/folder/app1: No such file or directory user@computer:~/folder$ ./app1 bash: ./app1: No such file or directory user@computer:~/folder$ ./app2 bash: ./app2: No such file or directory user@computer:~/folder$ ls -l total 29384 -rwxr-xr-x 1 user user 14949776 2011-02-03 11:09 app1 -rwxr-xr-x 1 user user 15137300 2011-02-03 11:10 app2 user@computer:~/folder$ </code></pre> <p>Thanks for everyone's input! </p>
4500
null
2011-02-04T18:02:48.117
2011-02-04T18:02:48.117
Need help fixing a strange path error in bash
[ "64-bit", "compatibility", "32-bit", "libraries" ]
1
10
CC BY-SA 2.5
[ { "creationDate": "2011-02-03T22:05:25.613", "id": "26886", "postId": "24685", "score": "1", "text": "What does `type app1 app2` output? What do you mean by `/somedir/app1`? wasn't app1 in `/home/user/folder`?", "userDisplayName": null, "userId": "9016" }, { "creationDate": "2011...
{ "accepted": true, "body": "<p>I know some of this is repetitive.... but...</p>\n\n<p>Edit your BASH RC file:</p>\n\n<pre><code>vim ~/.bashrc\n</code></pre>\n\n<p><strong>Export</strong> the PATH:</p>\n\n<pre><code>export PATH=$PATH:/home/$username/folder/\n</code></pre>\n\n<p>If you don't want to log in again to get the path, SOURCE it:</p>\n\n<pre><code>source ~/.bashrc\n</code></pre>\n\n<p>Make sure the file is yours and executable:</p>\n\n<pre><code>chown -R $username /home/$username/folder/\nchmod +x /home/$username/folder/app*\n</code></pre>\n\n<p>Try to run:</p>\n\n<pre><code>cd\napp1\napp2\n</code></pre>\n\n<p>Still have the <em>command not found</em> error? Well, what kind of files are app1 and app2?</p>\n\n<pre><code>file /home/$username/folder/app1\nfile /home/$username/folder/app2\n</code></pre>\n\n<p>If they are text files, it could be that they are scripts, like BASH or Python. If so, open them up with an editor to see if you can glean the source of the problem. If you paste any of the contents of the text files (if, indeed, they are text files), be sure to please include the very first line - the \"file magic\" like <em>#!/bin/sh</em>, for example. </p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-02-04T01:42:51.420", "id": "26932", "postId": "24703", "score": "0", "text": "I think the 'file app1' command did the trick. The file is a ELF 32 bit LSB executable and I'm using a 64bit Ubuntu box. I think that's probably the problem?", "userDisplayName": null, "userId": "4500" }, { "creationDate": "2011-02-04T01:49:45.967", "id": "26934", "postId": "24703", "score": "1", "text": "Oh! So... Does 'getlibs' solve the problem? http://ubuntuforums.org/showthread.php?t=474790", "userDisplayName": "user8290", "userId": null }, { "creationDate": "2011-02-04T02:01:12.207", "id": "26935", "postId": "24703", "score": "0", "text": "WOW! Worked like a charm. Thanks so much your help!", "userDisplayName": null, "userId": "4500" }, { "creationDate": "2011-02-04T02:54:25.083", "id": "26941", "postId": "24703", "score": "0", "text": "@Evan. Ah, if you had said the error message was `No such file or directory` from the start, instead of `command not found`, which is a completely different error message, that'd be my first guess. So you did accidentally omit vital information by censoring the filenames.", "userDisplayName": null, "userId": "9016" }, { "creationDate": "2011-02-04T06:50:27.633", "id": "26957", "postId": "24703", "score": "0", "text": "@geirha sorry about that, the whole thing confused the heck out me because I knew it had to be something simple in the end. I actually ran the second set of tests (the output I added in the update) after a reinstall so both of us wish I had a clearer picture sooner :). Good old computers...", "userDisplayName": null, "userId": "4500" }, { "creationDate": "2011-02-04T16:48:35.130", "id": "27048", "postId": "24703", "score": "0", "text": "Wahoo! Mission accomplished.", "userDisplayName": "user8290", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T00:42:25.993", "id": "24703", "lastActivityDate": "2011-02-04T01:07:33.430", "lastEditDate": "2011-02-04T01:07:33.430", "lastEditorDisplayName": "user8290", "lastEditorUserId": null, "ownerDisplayName": "user8290", "ownerUserId": null, "parentId": "24685", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I know some of this is repetitive.... but...</p>\n\n<p>Edit your BASH RC file:</p>\n\n<pre><code>vim ~/.bashrc\n</code></pre>\n\n<p><strong>Export</strong> the PATH:</p>\n\n<pre><code>export PATH=$PATH:/home/$username/folder/\n</code></pre>\n\n<p>If you don't want to log in a...
null
null
null
user8290
null
24687
1
null
2011-02-03T22:14:47.820
3
30169
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/22946/how-do-i-install-and-use-the-latest-version-of-gnome">How do I install and use the latest version of GNOME?</a> </p> </blockquote> <p>Someone can to explain how to install gnome3-session in Ubuntu 10.04 LTS?</p> <p>Thanks!!! Sorry to my English :-)</p>
null
-1
2017-04-13T12:23:07.557
2011-07-26T20:30:25.120
How to install Gnome 3 in Ubuntu 10.04 LTS?
[ "10.04", "gnome" ]
0
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T17:54:17.450", "id": "27070", "postId": "24687", "score": "0", "text": "This question may not be a duplicate, because this specifically asks about 10.04. Unfortunately running the latest GNOME 3 builds in older Ubuntu versions may be difficult (seeing as it's hard e...
null
[]
null
null
2011-11-19T04:19:10.777
null
user10130
24694
1
24695
2011-02-03T23:12:40.843
0
1804
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/22636/will-11-04-use-other-filesystem-than-ext4">Will 11.04 use other filesystem than ext4?</a> </p> </blockquote> <p>Will btrfs be the <strong>default</strong> file system in Natty Narwhal?</p>
5171
-1
2017-04-13T12:24:48.743
2011-02-03T23:16:54.793
btrfs default file system for Natty?
[ "11.04", "default", "btrfs" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No, brtfs is not stable yet. Unacceptable performance issues have been reported on common use cases.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T09:32:04.827", "id": "26966", "postId": "24695", "score": "0", "text": "Random use case: It works for me though. The compression support in btrfs can bring a significant speed gain for small SSDs in netbooks.", "userDisplayName": null, "userId": "3357" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-03T23:16:54.793", "id": "24695", "lastActivityDate": "2011-02-03T23:16:54.793", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "24694", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>No, brtfs is not stable yet. Unacceptable performance issues have been reported on common use cases.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T09:32:04.827", "id": "26966", "postId": "24695", "score"...
null
null
2011-02-04T15:29:17.117
null
null
24697
1
24700
2011-02-03T23:43:21.487
1
396
<p>Yes my laptop lcd screen is disabled and maybe black after I click the install to hard disk option on a USB stick.</p> <p>This worked well on another laptop pc, but not on this.</p> <ul> <li><p>I tried to set <code>acpi=off</code></p></li> <li><p>I reset the bios settings</p></li> </ul>
10187
1067
2011-02-04T00:07:48.603
2011-02-04T00:07:48.603
My screen is disabled for a long time after I click "Install to harddisk"
[ "10.10", "installation", "ubuntu-netbook" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You need to disable &quot;apic&quot; as well as acpi.</p>\n<p>When editing the boot options, use both <code>acpi=off</code> <em>and</em> <code>noapic</code>.</p>\n<p>You can edit the boot options by pressing F6 on the boot screen (hit Escape when the little picture of a keyboard and a person shows up):</p>\n<blockquote>\n<p>In addition to displaying a popup menu, the F6 key also activates in-line editing of the boot command. Pressing F6 brings up the popup menu. Pressing ESC, whether selections were made or not, removes the popup window but opens the boot command for editing.</p>\n<p>The phrase &quot;Boot Options&quot; is fixed on the left side of the screen. The command scrolls off to the left to leave the right end available for appending. The user may add additional inputs after the &quot;-- &quot;. Allow one space between each additional input.</p>\n</blockquote>\n<p>At the end of the boot options, append both the avove arguments.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T00:06:22.990", "id": "24700", "lastActivityDate": "2011-02-04T00:06:22.990", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "24697", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You need to disable &quot;apic&quot; as well as acpi.</p>\n<p>When editing the boot options, use both <code>acpi=off</code> <em>and</em> <code>noapic</code>.</p>\n<p>You can edit the boot options by pressing F6 on the boot screen (hit Escape when the little picture of a keybo...
null
null
null
null
null
24705
1
null
2011-02-04T01:10:21.360
2
501
<p>I'm running a dual boot Windows 7 / Ubuntu 10.04 system. I ran the Ubuntu update last night, and today when I tried to boot into Windows 7, it goes straight to the windows recovery on my Acer 5517 laptop. I've spent the entire day trying to resolve this with no success. I used my Windows 7 Recovery Disk to reset the mbr, but that didn't help. The system was working perfectly prior to the update. It appears that now Grub is pointing to the recovery partition rather than the primary partition. Any help will be greatly appreciated. I don't relish the idea of reformatting and starting from scratch.</p>
null
3037
2011-02-04T07:39:27.413
2017-02-23T16:08:54.610
Unable to boot Into Windows 7 after Ubuntu 10.04 update
[ "10.04", "windows-7", "update-manager", "bootloader" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You are using GRUB2. There is an excellent guide on <a href=\"https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows\" rel=\"nofollow\">help.ubuntu.com</a>. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T02:33...
null
null
null
null
user10195
24709
1
null
2011-02-04T03:25:01.917
0
1333
<p>I didn't want to take any risks so I ordered a CD from Canonical to get Ubuntu. Thing is, another CD was given to me about 2 days before the CD from Canonical got to me, so I installed Ubuntu 10.10 but there was a problem with the login screen (When the Ubuntu logo should be displayed, it wasn't, instead it would just say "Ubuntu 10.10") so I decided to reinstall Ubuntu 10.10 with the CD that arrived a few days later. </p> <p>Whenever it's finishing the installation, the installer (ubiquity) crashes, or sometimes it gets to the part where the boot loader should be installed and for some reason it is unable to install the boot loader (if I choose not to install it, I don't get how to start Ubuntu, since you have to reboot my laptop after the installation is over). </p> <p>I'm currently running Ubuntu 10.10 from the CD I ordered, since I have no other OS on this laptop.</p>
null
5768
2012-07-09T13:57:37.440
2012-07-09T13:57:37.440
Ubiquity crashes when installing from CD
[ "installation", "10.10", "cd", "ubiquity" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Often this is due to a problem with the installation CD. To verify the integrity of your copy of the CD:</p>\n\n<ol>\n<li>Boot to the CD.</li>\n<li>When the <img src=\"https://i.stack.imgur.com/5emcx.png\" alt=\"Accessibility Options\"> symbol appears, press any key.</li>\n<l...
null
null
null
null
user10198
24711
1
24763
2011-02-04T04:03:09.453
3
1376
<p>I've added a network printer. Both the host and guest are Ubuntu. </p> <p>The printer added fine, but the system asks for authentication when I try to print. I typed the host's (the account that installed the printer) username/password, didn't work. I typed the guest's username/password, it didn't work either. </p> <p><strong>What username and password do I enter?</strong></p>
7189
235
2011-02-04T14:04:51.967
2011-02-04T14:05:07.130
What credentials do you enter to use a network printer?
[ "printing", "networking" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>How did you share the printer? There are two methods, one is via <em>samba</em> (windows) and the other is via <em>ipp/cups</em> (unix). As far as I know, cups doesn't require authentication by default unless you've set it up that way. Samba on the other hand does by default.</p>\n\n<p>I would recommend using cups sharing, ipp works in windows clients as well as any other client and is well supported in Ubuntu. You simply go to your <code>System &gt; Administration &gt; Printing</code> and select <code>Server &gt; Settings</code>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/iOYVE.png\" alt=\"printer settings dialog\"></p>\n\n<p>You can then visit the ip address of your server in any web browser at port 631 to check you get a connection and access to the printer:</p>\n\n<pre><code>`http://192.168.1.20:631/printers`\n</code></pre>\n\n<p>If you do this, your other machine should see this shared printer automatically. Configuration should then be automatic and you should not have any passwords to deal with.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-08T07:40:05.077", "id": "27603", "postId": "24763", "score": "0", "text": "Cool. Thanks, I didn't know this was possible. :) I was gonna ask how I can find out in what way I shared it, but it doesn't matter. I'll just do it again this way.", "userDisplayName": null, "userId": "7189" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T12:18:10.707", "id": "24763", "lastActivityDate": "2011-02-04T14:05:07.130", "lastEditDate": "2011-02-04T14:05:07.130", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "132", "parentId": "24711", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>How did you share the printer? There are two methods, one is via <em>samba</em> (windows) and the other is via <em>ipp/cups</em> (unix). As far as I know, cups doesn't require authentication by default unless you've set it up that way. Samba on the other hand does by default....
null
null
null
null
null
24712
1
24734
2011-02-04T04:28:07.810
14
16900
<p>When I ssh into a Ubuntu Lucid box the prompt is all pretty, with colors. Everything is the default, as far as I know. Here's my $PS1 outside screen:</p> <pre><code>\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@dev\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ </code></pre> <p><img src="https://i.stack.imgur.com/MfiuF.png" alt="Before connecting with screen"></p> <p>But then once I start screen up the colors go away. Everything else is fine, and my screen can support colors (notice that the <code>.</code> and <code>..</code> in this <code>ls -al</code> are blue) but the prompt isn't. In theory everything should be exactly the same. $PS1 inside screen:</p> <pre><code>${debian_chroot:+($debian_chroot)}\u@dev:\w\$ </code></pre> <p><img src="https://i.stack.imgur.com/pX2nW.png" alt="after screening in"></p> <p>EDIT: This is just plain vanilla screen.</p>
10201
235
2011-04-14T17:32:20.520
2018-10-01T23:16:55.857
Retaining bash prompt colors when starting a screen session
[ "10.04", "command-line", "ssh", "gnu-screen" ]
6
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T05:08:11.210", "id": "26949", "postId": "24712", "score": "0", "text": "Is this plain vanilla screen, or do you have byobu installed? (Though this matter not matter.)", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-04T10:41...
{ "accepted": true, "body": "<p>You can edit the following line in your .bashrc (it's #39 in my .bashrc):</p>\n\n<pre><code>#force_color_prompt=yes\n</code></pre>\n\n<p>Change to:</p>\n\n<pre><code>force_color_prompt=yes\n</code></pre>\n\n<p>This could possibly be annoying if you log in from somewhere where color is not supported, but i find it highly unlikely.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-04T16:04:19.787", "id": "27041", "postId": "24734", "score": "0", "text": "Perfect, that did it for me. I can see it being problematic if I happen to login from somewhere without color, but that's going to be pretty rare. Thanks!", "userDisplayName": null, "userId": "10201" }, { "creationDate": "2012-10-27T09:36:29.547", "id": "257421", "postId": "24734", "score": "0", "text": "The change needs to be done on the server machine, not the client.", "userDisplayName": null, "userId": "55241" }, { "creationDate": "2022-03-23T16:42:41.293", "id": "2424977", "postId": "24734", "score": "0", "text": "Nice, allows to keep host color with GNU Screen in local.", "userDisplayName": null, "userId": "1008966" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T08:52:34.550", "id": "24734", "lastActivityDate": "2011-02-04T08:52:34.550", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "615", "parentId": "24712", "postTypeId": "2", "score": "20" }
[ { "accepted": null, "body": "<p>The <code>.screenrc</code> file is a mystery to me. Mine is gobbledygook that I copypasta'd from the internets. However, I see a few lines that look to be relevant to your problem:</p>\n\n<pre><code># terminfo and termcap for nice 256 color terminal\n# allow bold colors - nec...
null
null
null
null
null
24713
1
24714
2011-02-04T04:48:25.703
2
611
<p>In my Systems Programming class, there are weekly programming experiments, and I'm having trouble with the current one.</p> <p>The objective is to write a C program that slowly writes a string of text to a file, metered by <code>usleep()</code> in a 100 count for loop.</p> <p>The goal of the experiment is to observe the file size buffer in action via the watch command. However, I can't get it to work using <code>watch -d ./output</code></p> <p>What syntax do I need for the watch command to see the changes made to the file size?</p>
7800
1067
2011-02-04T05:31:30.643
2011-02-04T05:39:47.820
Watch syntax help
[ "command-line", "programming" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can use <code>du</code> to check a file's size (strictly speaking, its disk usage):</p>\n\n<pre><code>watch -n 1 du output_file\n</code></pre>\n\n<p>If you want shorter than one second intervals, you can also execute <code>du</code> in an endless loop, sleeping afterwards for, say, 0.1 seconds:</p>\n\n<pre><code>while true; do du output_file; sleep 0.1; done\n</code></pre>\n\n<p>Or remove the sleep entirely.</p>\n\n<p>Have a look at <code>man du</code> for more options.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T05:39:47.820", "id": "24714", "lastActivityDate": "2011-02-04T05:39:47.820", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "24713", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You can use <code>du</code> to check a file's size (strictly speaking, its disk usage):</p>\n\n<pre><code>watch -n 1 du output_file\n</code></pre>\n\n<p>If you want shorter than one second intervals, you can also execute <code>du</code> in an endless loop, sleeping afterwards...
null
null
null
null
null
24717
1
24729
2011-02-04T05:46:37.713
0
1037
<p>While installing netbeans-6.9.1 I got following error:</p> <pre><code>./netbeans-6.9.1-ml-linux.sh: 1897: Syntax error: "(" unexpected (expecting ";;") </code></pre> <p>What may be the reason? I have downloaded the installer from netbeans.org.</p>
6698
3037
2011-02-04T08:24:28.683
2011-02-04T17:57:43.023
Netbeans (6.9.1) installation error
[ "netbeans" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T05:55:05.143", "id": "26952", "postId": "24717", "score": "0", "text": "Any reason why you don't wantto install netbeans from software center - sudo apt-get install netbeans? The version there is also 6.9", "userDisplayName": null, "userId": "2725" }, { ...
{ "accepted": true, "body": "<p>Try <code>sh ./netbeans-6.9.1-ml-linux.sh</code> . </p>\n\n<p>Or anyway, that worked for me:</p>\n\n<pre><code>$ sh netbeans-6.9.1-ml-linux.sh \nConfiguring the installer...\nSearching for JVM on the system...\nExtracting installation data...\nRunning the installer wizard...\n</code></pre>\n\n<p>If that's not working, we may need to look at whether you have any missing dependencies.... </p>\n\n<p>In the installer I just downloaded, line 1897 is: </p>\n\n<pre><code> printf \"Executando o assistente do instalador...\\n\"\n</code></pre>\n\n<p>Not a \"<code>(</code>\" in sight on mine. </p>\n\n<p>Here's the md5sum of the file I have:</p>\n\n<pre><code>$ md5sum netbeans-6.9.1-ml-linux.sh \n9b00ecdc6e7a80dec5b882343d0ed6db netbeans-6.9.1-ml-linux.sh\n</code></pre>\n\n<p>And here's my system (Ubuntu 10.10 with <code>uname -a</code>) : </p>\n\n<pre><code>Linux mercator 2.6.35-25-generic #44-Ubuntu SMP Fri Jan 21 17:40:44 UTC 2011 x86_64 GNU/Linux\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-16T09:56:35.417", "id": "29258", "postId": "24729", "score": "0", "text": "i found that there the file was not donwloaded properly. its md5 sum doesnt match. i downloaded net installer and installed successfully.", "userDisplayName": null, "userId": "6698" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T08:16:03.527", "id": "24729", "lastActivityDate": "2011-02-04T08:36:58.483", "lastEditDate": "2011-02-04T08:36:58.483", "lastEditorDisplayName": null, "lastEditorUserId": "8844", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "24717", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Try <code>sh ./netbeans-6.9.1-ml-linux.sh</code> . </p>\n\n<p>Or anyway, that worked for me:</p>\n\n<pre><code>$ sh netbeans-6.9.1-ml-linux.sh \nConfiguring the installer...\nSearching for JVM on the system...\nExtracting installation data...\nRunning the installer wizard.....
null
null
null
null
null
24718
1
null
2011-02-04T05:51:47.083
0
4420
<p>Hey, I've got LAMPP installed in Ubuntu and I want to get .htaccess working but I don't know how. And, yes, I have searched all over Google.</p> <p>Cheers,</p>
null
3037
2011-02-04T07:52:56.120
2011-02-04T08:07:31.423
LAMPP on Ubuntu - http.conf
[ "10.10", "server", "apache2", "lamp" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T06:24:58.870", "id": "26955", "postId": "24718", "score": "2", "text": "What do you need done with .htaccess? Have you found it, but it's not doing what you need? How far along are you in setting up your site/apache stuff? Thanks -- we need as much context as pos...
null
[ { "accepted": null, "body": "<p>basically you need to enable rewrite module which is done by </p>\n\n<pre><code>sudo a2enmod rewrite\n</code></pre>\n\n<p>And also you need to have AllowOverride in your configuration set to All and not None</p>\n\n<p>and in ubuntu the configurations are found in apache2.conf...
null
null
null
null
user10203
24722
1
24724
2011-02-04T07:03:21.960
2
5714
<p>Whenever I start Ubuntu, the sound is missing and I have to key in the command <code>alsamixer</code> (where the third slider is zero) and increase the volume manually. How can I fix this?</p> <p>PS : i don't mean startup sound i mean that the sound is missing altogather from the songs/ movies everything.</p>
6330
6330
2011-02-05T06:52:28.967
2012-09-15T12:17:08.377
No sound after boot
[ "sound" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T14:58:58.650", "id": "27024", "postId": "24722", "score": "0", "text": "Is [this](http://askubuntu.com/questions/6162/sound-broadcast-icons-missing) the problem you're having?", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2011-02-...
{ "accepted": true, "body": "<p>Please check System -> Preferences -> Sound.\nCheck if 'alert volume' in sound effects tab and output volume in 'output' tab is not in mute or near to 0%.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T07:21:29.813", "id": "24724", "lastActivityDate": "2011-02-04T07:21:29.813", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10077", "parentId": "24722", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Please check System -> Preferences -> Sound.\nCheck if 'alert volume' in sound effects tab and output volume in 'output' tab is not in mute or near to 0%.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5"...
null
null
null
null
null
24726
1
24728
2011-02-04T07:38:15.027
2
9608
<p>I use Ubuntu 10.10 server as test server for a Java program.</p> <pre><code>Linux sugam 2.6.35-22-server #35-Ubuntu SMP Sat Oct 16 22:02:33 UTC 2010 x86_64 </code></pre> <p>GNU/Linux Ubuntu 10.10</p> <p>Since it is a test server and we like to see our application to work in both, 64-bit and 32-bit Java, I like to have OpenJDK (32-bit and 64-bit) and Java SE (32-bit and 64-bit), (total 4 instances) installed on the server.</p> <p>I could install 64-bit easily and have the following Java versions:</p> <pre><code>$/app/java64bit/jre1.6.0_23/bin/java -version java version "1.6.0_23" Java(TM) SE Runtime Environment (build 1.6.0_23-b05) Java HotSpot(TM) 64-Bit Server VM (build 19.0-b09, mixed mode) $ /usr/lib/jvm/java-6-openjdk/jre/bin/java -version java version "1.6.0_20" OpenJDK Runtime Environment (IcedTea6 1.9.2) (6b20-1.9.2-0ubuntu2) OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode) </code></pre> <p>But I am unable to install 32-bit Java on this 64-bit machine. I have correct binaries (cksum and md5sum validated).</p> <p>On unpacking I get the following error for 32-bit version:</p> <pre><code>$ ./jre-6u23-linux-i586.bin Unpacking... ./jre-6u23-linux-i586.bin: 56: cannot create install.sfx.12308: Permission denied Checksumming... /usr/bin/sum: install.sfx.12308: No such file or directory [: 83: -ne: unexpected operator [: 83: -ne: unexpected operator chmod: cannot access `install.sfx.12308': No such file or directory Extracting... ./jre-6u23-linux-i586.bin: 86: ./install.sfx.12308: not found Failed to extract the files. Please refer to the Troubleshooting section of the Installation Instructions on the download page for more information. </code></pre> <p>Is there a way to install 32-bit Java on a 64-bit server? Any help appreciated.</p>
10077
25863
2012-04-01T09:25:07.700
2012-04-01T09:25:07.700
'Permission denied' while installing 32-bit Java (JDK/JRE) on 64-bit Ubuntu
[ "server", "java" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-07-14T22:02:19.807", "id": "59469", "postId": "24726", "score": "0", "text": "Where did you get the 32-bit java binaries? From synaptic or did you have to download them from somewhere else?", "userDisplayName": null, "userId": "128" }, { "creationDate": "2...
{ "accepted": true, "body": "<p>The error given suggests that you are trying to run the binary to somewhere that you don't have permissions. I'm fairly certain that you have to run it as root, so <code>sudo ./jre-6u23-linux-i586.bin</code> should get rid of that error.</p>\n\n<p>Also make sure that you have <code>ia32-lib</code> installed, otherwise you shouldn't be able to run 32-bit applications.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T08:22:34.233", "id": "26959", "postId": "24728", "score": "0", "text": "Great and Thanks Fraekkert. It was ia32-lib. I could get it working!", "userDisplayName": null, "userId": "10077" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T08:15:29.883", "id": "24728", "lastActivityDate": "2011-02-04T08:15:29.883", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "615", "parentId": "24726", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>The error given suggests that you are trying to run the binary to somewhere that you don't have permissions. I'm fairly certain that you have to run it as root, so <code>sudo ./jre-6u23-linux-i586.bin</code> should get rid of that error.</p>\n\n<p>Also make sure that you have...
null
null
null
null
null
24731
1
null
2011-02-04T08:42:20.830
3
27761
<p>I have set up a machine with Ubuntu Server. Some of the server software I want to run on it has web based user interfaces for setting it up et cetera. I know I could connect to it from a different machine which has a graphical user interface, but in this case I would rather do it on the box.</p> <p>So, from a fresh Ubuntu Server installation, what is the minimum I need to install to be able to launch a web browser I can use for this? For example chromium, firefox or arora.</p>
10208
10208
2011-02-04T13:07:19.813
2011-02-04T13:07:19.813
Minimum to install for a visual web browser in Ubuntu Server
[ "server", "gui", "browser" ]
1
7
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T08:49:39.650", "id": "26961", "postId": "24731", "score": "0", "text": "This may depend on what the interfaces require. Are they straight html, or do they have AJAX, flash, etc.? I'm assuming elinks is not what you're looking for either.", "userDisplayName":...
null
[ { "accepted": null, "body": "<p>The lightest (and least-functional) browser I can find is <code>links2</code> . </p>\n\n<p>You can run it in graphics mode with the <code>-g</code> flag, like this:</p>\n\n<pre><code> links2 -g http://localhost:9090\n</code></pre>\n\n<p>One of the lighter browsers with modern...
null
null
null
null
null
24732
1
null
2011-02-04T08:49:31.103
1
462
<p>yesterday I performed an automatic security update suggested by the update manager on my virtualized (with VirtualBox on a Windows 7 host) Ubuntu 10.10 installation.</p> <p>The update somehow failed and left me with an unbootable system. When I try to boot, I am told that various folders, files, and what not are missing. Then the system drops into a busybox and leaves me with an (initramfs) prompt.</p> <p>This happens with all kernels I get offered by GRUB, although the error messages are quite different from kernel to kernel.</p> <p>Well, the short of it is this: I don't have the slightest idea on how to get back to a working system and this site is the final straw I'm willing to grab.</p> <p>A complete disaster like this following an update initiated and executed by the system is unheard of in Windows-land; at least I haven't heard of it, yet, and therefore I am going to abandon Ubuntu and Linux altogeteher, if there is no remedy.</p> <p>Regards, RSel </p>
10206
235
2011-10-14T12:17:52.607
2012-01-24T13:41:46.657
Failed update of 10.10 results in unbootable system
[ "10.10", "update-manager", "updates" ]
2
3
CC BY-SA 3.0
[ { "creationDate": "2011-02-04T09:53:50.623", "id": "26973", "postId": "24732", "score": "3", "text": "You know, it's nice to know that there lots of different error messages, but it'll be greater to know what exactly that messages are.", "userDisplayName": null, "userId": "211" }, { ...
null
[ { "accepted": null, "body": "<p>I have had that problem before and I bit the bullet and re-installed it due to the fact that I needed Ubuntu for a project.</p>\n\n<p>My advice is to download an up to date version of Ubuntu 10.10 ISO image and re-install it.</p>\n\n<p>Just don't give up on Linux and Ubuntu s...
null
null
null
null
null
24733
1
24741
2011-02-04T08:51:30.300
3
1792
<p>I created a new partition on my hard drive because my /tmp partition was too small. I changed the mountpoint in <code>/etc/fstab</code> and rebooted.</p> <p>Every time I reboot, I get the following error message at the login screen:</p> <pre><code>There is a problem with the configuration server. (/usr/lib/libgconf2-4/gconf-sanity-check-2 exited with status 256) </code></pre> <p>When I log in, /tmp is mounted correctly and everything seems to work fine. When I reboot, the error shows again. When I change the /tmp mountpoint back to the old partition, the error message disappears.</p> <p><em><strong>What could be causing this and how can I solve this issue?</em></strong></p>
7527
null
null
2013-02-07T05:00:24.113
Configuration server problem after changing /tmp mountpoint: how to solve?
[ "10.10", "fstab", "gconf" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This appears to be a sticky bit problem. /tmp needs to have permissions of <code>1777</code> (drwxrwxrwt ), please note the last 't' flag. </p>\n\n<p>Compare permissions of <code>/tmp</code> using <code>ls -ld /tmp</code> with new and old partition and if it is different,</p>\n\n<p>Try changing permissions on new partition.</p>\n\n<pre><code>sudo chmod 1777 /tmp \n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-06T16:57:39.783", "id": "27358", "postId": "24741", "score": "0", "text": "Great to know :)", "userDisplayName": null, "userId": "10077" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-04T09:35:31.867", "id": "24741", "lastActivityDate": "2013-02-07T05:00:24.113", "lastEditDate": "2013-02-07T05:00:24.113", "lastEditorDisplayName": null, "lastEditorUserId": "44179", "ownerDisplayName": null, "ownerUserId": "10077", "parentId": "24733", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>This appears to be a sticky bit problem. /tmp needs to have permissions of <code>1777</code> (drwxrwxrwt ), please note the last 't' flag. </p>\n\n<p>Compare permissions of <code>/tmp</code> using <code>ls -ld /tmp</code> with new and old partition and if it is different,</p>...
null
0
null
null
null
24736
1
null
2011-02-04T08:31:49.227
3
19409
<p>I am currently running Windows 7 on my laptop. I want to install Ubuntu with windows 7. I have downloaded the Windows installer of Ubuntu. Can I install Ubuntu without making a bootable CD or flash drive of Ubuntu?</p>
null
1067
2011-02-05T09:43:37.257
2013-05-28T10:58:38.550
How do I install Ubuntu without making a CD or flash drive?
[ "windows-7" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T12:30:25.493", "id": "26998", "postId": "24736", "score": "0", "text": "It is downloaded as .rar file.", "userDisplayName": "user10209", "userId": null }, { "creationDate": "2011-10-07T15:04:58.060", "id": "74360", "postId": "24736", "sco...
null
[ { "accepted": null, "body": "<p>You can install Ubuntu inside a virtual machine like virtualbox and using daemon tools to directly mount the image if you don't want to burn a cd.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "c...
null
null
null
null
Chirag Tayal
24742
1
null
2011-02-04T09:44:55.047
5
1077
<p>I was wondering, is it possible to make my own customized version of Linux based on Ubuntu 10.10 ?</p> <p>I am thinking of calling it something different but I was wondering besides making a custom Live CD I am talking about an Linux that people can install on there computers using Ubuntu installation method.</p> <p>I want to base it on something other than GNOME but be able to install it latter on.</p> <p>Thanks in advance,</p> <p>Benny</p>
8169
1067
2011-02-05T09:43:25.200
2011-02-05T09:43:25.200
Making my own custom Ubuntu
[ "customization", "custom-distributions" ]
1
5
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T09:50:10.003", "id": "26971", "postId": "24742", "score": "0", "text": "sure there is livecd dociumentation, however, you'll need lots of free time , to learn all that is needed to make it work, and then customize it https://help.ubuntu.com/community/LiveCD or you c...
null
[ { "accepted": null, "body": "<p>Yes you could, but it would be a lot of work.</p>\n\n<p>If you're not a fan of Gnome, have you tried taking a look at the other distributions based on Ubuntu?</p>\n\n<ul>\n<li><a href=\"http://www.kubuntu.org/\" rel=\"nofollow\">Kubuntu</a></li>\n<li><a href=\"http://www.xubu...
null
null
null
null
null
24746
1
24756
2011-02-04T10:00:32.420
4
7674
<p>As everyone will know, in Ubuntu GNOME by default there is a panel at the top of the screen with a set of menus and icons and also one at the bottom with the window list etc.</p> <p>What I wanted to do was move both of these to the bottom , with the window list and the absolute bottom of the screen and the other panel just above it.</p> <p>So I set the alignment of both panels to 'bottom' but this made the window list panel the highest up panel.</p> <p>I fixed this by manually moving everything between the panels and swapping it over which was fine , until I restarted my computer which resulted in them being swapped back over , so the window list is now above the other panel.</p> <p>Is there a way to permanently set the window list to be the bottom?</p>
9069
3037
2011-02-04T10:12:46.220
2013-03-16T12:49:37.203
How to move both panels to the bottom in GNOME?
[ "gnome-panel" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>With both panels at the bottom try this:</p>\n<ol>\n<li><p>Push <kbd>Alt</kbd> + <kbd>F2</kbd> and type <code>gconf-editor</code></p>\n</li>\n<li><p>Navigate to <code>/apps/panel/general</code></p>\n</li>\n<li><p>In the list on the right side, double-click on the <code>toplevel_id_list</code> item</p>\n</li>\n<li><p>Switch the two items using the Up/Down buttons (in my case I switched from <code>bottom_panel_screen0 top_panel_screen0</code> to <code>top_panel_screen0 bottom_panel_screen0</code>):</p>\n<p><img src=\"https://i.stack.imgur.com/SsHWB.png\" alt=\"enter image description here\" /></p>\n</li>\n<li><p>Close the <code>gconf-editor</code>, log out and back in again.</p>\n</li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-02-19T19:34:10.227", "id": "322427", "postId": "24756", "score": "1", "text": "I don't see this option in Ubuntu 12.10 which is running GNOME. ALT+Left mouse click drag works.", "userDisplayName": null, "userId": "118" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T11:10:33.223", "id": "24756", "lastActivityDate": "2011-02-04T11:10:33.223", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24746", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>Well, just add the WindowLIst Applet to the bottom panel , (right-click on the bottom panel, add applet) and done.., you probably would want to put all of the top panel applets on the bottom one and remove the top panel</p>\n", "commentCount": "0", "comments": [], ...
null
null
null
null
null
24749
1
24754
2011-02-04T10:12:57.213
7
4046
<p>I find the dictionaries in <code>/usr/share/dict/</code> quite useful. How do I download (or install) all of them, for every language, without having to install every language pack?</p> <p>Also, if the answer involves package management, how do I properly remove them again?</p>
1067
1067
2011-02-04T10:21:40.723
2011-02-04T10:56:41.900
How can I download or install all of the dictionaries?
[ "internationalization" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T14:26:40.543", "id": "27019", "postId": "24749", "score": "2", "text": "Be aware that there are languages using myspell and/or hunspell. So there is `usr/share/myspell/dicts/` and `/usr/share/hunspell`, where you find other dictionaries.", "userDisplayName": nul...
{ "accepted": true, "body": "<p>Unfortunately, the various packages (e.g. <code>wcatalan</code>, <code>wbritish-large</code> <code>wbritish-small</code>, …) don't follow a pattern so</p>\n\n<pre><code> apt-get install words-\\*\n</code></pre>\n\n<p>or similar will not work. Typing <code>/usr/share/dict</code> into the search box of Software Center appears to yield all the wordlists, but I don't know if that is exhaustive.</p>\n\n<p>If you want spell checking without the wordlists,</p>\n\n<pre><code> sudo apt-get install aspell-\\*\n</code></pre>\n\n<p>will pull in the (larger set) of spell checkers which work on a larger set of languages but cannot yield the wordlist used to compile them.</p>\n\n<p>Be forewarned, given the way the wordlists were generated (<em>cf.</em> <a href=\"http://books.google.com/books?id=w7cfAAAAMAAJ&amp;q=%22steve+johnson%22+unix++spell&amp;dq=%22steve+johnson%22+unix++spell&amp;hl=en&amp;ei=d9pLTcSMN8zpgAfYoZHbDw&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=7&amp;ved=0CFQQ6AEwBg\">Steve Johnson CACM v28 1985</a>) from words and proper nouns actually encountered in documents, the extra words might not be obviously jargon or proper to a non-native speaker)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T10:56:41.900", "id": "24754", "lastActivityDate": "2011-02-04T10:56:41.900", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1078", "parentId": "24749", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Unfortunately, the various packages (e.g. <code>wcatalan</code>, <code>wbritish-large</code> <code>wbritish-small</code>, …) don't follow a pattern so</p>\n\n<pre><code> apt-get install words-\\*\n</code></pre>\n\n<p>or similar will not work. Typing <code>/usr/share/dict</cod...
null
null
null
null
null
24752
1
24759
2011-02-04T10:38:00.757
5
558
<p>Or in another words, why isn't there a separate ruby-1.9.2 package?</p> <p>Source info:<br /> <a href="http://packages.ubuntu.com/maverick/ruby1.9.1">http://packages.ubuntu.com/maverick/ruby1.9.1</a></p>
1891
3037
2011-02-04T10:41:35.480
2011-02-04T11:38:19.067
Why is Ruby version 1.9.2 named ruby1.9.1?
[ "10.10", "ruby" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The 1.9.1 stands for the binary-compatibility version (and as you can read in the package description, ruby 1.9.2 is binary-compatible to ruby 1.9.1).</p>\n\n<p>This is rather confusing - more explanations can be found <a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601526\">here</a> and <a href=\"http://www.lucas-nussbaum.net/blog/?p=566\">here</a>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-04T13:11:17.410", "id": "27007", "postId": "24759", "score": "1", "text": "Thanks for the links. Ugh, that's all I can say for Debian ruby packages maintainers.", "userDisplayName": null, "userId": "1891" }, { "creationDate": "2011-02-04T15:56:11.807", "id": "27035", "postId": "24759", "score": "0", "text": "Yeah, most of the ruby devs I know do rvm, binary install on their own, or really goof around with manipulating environment path variables to get gems/includes/versioning to work. Think metasploit.", "userDisplayName": null, "userId": "5768" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T11:38:19.067", "id": "24759", "lastActivityDate": "2011-02-04T11:38:19.067", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24752", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>The 1.9.1 stands for the binary-compatibility version (and as you can read in the package description, ruby 1.9.2 is binary-compatible to ruby 1.9.1).</p>\n\n<p>This is rather confusing - more explanations can be found <a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bu...
null
null
null
null
null
24768
1
null
2011-02-04T12:45:47.587
2
2232
<p>I have made my ubuntu server a centralized log server...I have splunk installed in the /opt directory of the ubuntu server.</p> <p>I have one of the another machines sending logs to this ubuntu server..In the splunk interface i have added in the network ports as UDP port 514...and also have added in the "file and directory" /var/log. </p> <p>The client has also been configured properly...How do I show analysis of the logs??</p>
10143
235
2011-02-04T14:16:10.553
2011-02-04T14:16:10.553
How do I show a log analysis in Splunk?
[ "server", "log" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You may consider using phpLogCon (which has been renamed sometime ago). Just Google \"phplogcon\" and you should find it, along with its new name. This, along with Apache, and the PHP extension, will let you review log files of different types using a web-based interface. It ...
null
null
null
null
null
24769
1
61313
2011-02-04T12:49:22.493
2
8772
<p>I'm trying to play video files in a LAN network folder from within dolphin. These are Samba folders which I can access, delete files and write and copy from. The same video files play perfectly with any video player when I copy them to my local folder beforehand. </p> <p>Any help? </p>
3275
4
2011-02-04T16:35:19.747
2016-03-01T14:30:49.533
Play video files in a local Lan folder with KDE
[ "video", "networking", "kubuntu", "directory", "playback" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Ok everybody, now I found out whats up: Like \"ClashTheBunny\" pointed out Dolphin feeds the link to vlc - so to access the file you have to open VLC preferences > show all > input/codecs > access modules > smb and enter your smb browsing credentials (smb user/password). I left the domain blank because I use the standard workgroup browsing... \nworks like a charme! </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-09-14T01:17:55.257", "id": "70206", "postId": "61313", "score": "0", "text": "sry for answering myself, but it seems this is really the way to go! thx anyways for all efforts!", "userDisplayName": null, "userId": "3275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-09-14T01:16:48.583", "id": "61313", "lastActivityDate": "2011-09-14T01:16:48.583", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3275", "parentId": "24769", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>I don't use KDE but would like to do make a suggestion:</p>\n\n<p>if you can copy the url from within dolphin and open it with a media player, would that work for you? is so i will give example for VLC</p>\n\n<ul>\n<li><p>open vlc</p></li>\n<li><p>advanced open file (ctrl+shi...
null
null
null
null
null
24770
1
24773
2011-02-04T12:49:45.553
7
12976
<p>When ever I long into Ubuntu, I'm immediately presented with a dialogue that asks me to enter the password that will unlock Gnome Keyring.</p> <p>However, I was never prompted to set this in the first place, and none of the passwords I've tried are effective. How can I disable these popups and just have Gnome Keyring unlocked when I log in in the same way that encrypted home directories are automatically mounted upon log in?</p> <p>FWIW, I'm set to auto log in, which may or may not be useful information.</p> <p>Btw, I've seen this question: <a href="https://askubuntu.com/questions/3045/how-to-disable-gnome-keyring">How to disable GNOME keyring</a>, and the accepted answer didn't work. I'd rather not uninstall Keyring</p> <p><strong>Update 1</strong>: I've disabled automatic login but it still appears.</p>
null
106495
2020-08-14T20:51:19.297
2023-01-28T19:22:38.987
Gnome Keyring keeps asking for a password that doesn't exist
[ "gnome-keyring" ]
2
1
CC BY-SA 4.0
[ { "creationDate": "2012-11-04T05:03:23.723", "id": "262666", "postId": "24770", "score": "0", "text": "possible duplicate of [How can I stop being prompted to unlock the 'default' keyring on boot?](http://askubuntu.com/questions/867/how-can-i-stop-being-prompted-to-unlock-the-default-keyring-on-...
{ "accepted": true, "body": "<p>It only comes up on auto login actually.\nTo get rid of it :</p>\n\n<ul>\n<li>Open seahorse (aka \"Passwords and Encryption Keys\" in the preferences menu), </li>\n<li>Right click on \"Passwords: login\" (the first entry in the list), </li>\n<li>Change password : \"Old Password\" is your user password, then do not type anything in \"Password\" and \"Confirm\", </li>\n<li>then \"Ok\" and there will be a warning : \"Use Unsafe Storage\"</li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-11T14:34:26.057", "id": "45939", "postId": "24773", "score": "0", "text": "this doesn't work for me, I've changed to \"Unsafe Storage\" many time, and it keeps asking me for a password", "userDisplayName": null, "userId": "6211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T13:34:55.480", "id": "24773", "lastActivityDate": "2011-02-14T01:32:42.413", "lastEditDate": "2011-02-14T01:32:42.413", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "3180", "parentId": "24770", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>It only comes up on auto login actually.\nTo get rid of it :</p>\n\n<ul>\n<li>Open seahorse (aka \"Passwords and Encryption Keys\" in the preferences menu), </li>\n<li>Right click on \"Passwords: login\" (the first entry in the list), </li>\n<li>Change password : \"Old Passwo...
null
null
null
null
user2405
24771
1
null
2011-02-04T12:50:37.177
22
194325
<p>I'm having problems with installing a webcam:</p> <pre><code>Archive: /media/LWS_2_0/Setup.exe [/media/LWS_2_0/Setup.exe] End-of-central-directory signature not found. Either this file is not the last disk(s) of this archive. zipinfo: cannot find zipfile directory in one of /media/LWS_2_0/Setup.exe or /media/LWS_2_0/Setup.exe.zip, and cannot find /media/LWS_2_0/Setup.exe.ZIP, period. </code></pre> <p>How do I solve this?</p>
6281
235
2011-02-04T13:53:13.067
2022-04-13T22:33:20.090
How to install a Logitech webcam?
[ "installation", "hardware", "drivers", "webcam" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Are you trying to install the webcam on Ubuntu?</p>\n\n<p>Have you tried plugging it in and just trying to use it?</p>\n\n<p>Ubuntu contains <em>lots</em> of drivers out of the box. For most hardware you don't need to get things from the manufacturer's disks or website.</p>\n...
null
null
null
null
null
24780
1
24786
2011-02-04T14:04:34.213
41
23896
<p>Is there a way to make KDE applications (like digiKam) look native in GNOME?</p>
5149
5149
2014-06-08T17:55:56.850
2022-05-20T22:56:38.260
How to make KDE applications look native in GNOME?
[ "gnome", "themes", "kde-apps" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>First you need the KDE's \"System settings\" application by installing <a href=\"https://launchpad.net/ubuntu/+source/systemsettings\" rel=\"nofollow noreferrer\">systemsettings</a> \nfrom the Software Center.</p>\n\n<p>Search the dash for System settings and launch it .\nThen make the following changes:</p>\n\n<ul>\n<li>under Style → Applications → Widget style, select GTK+</li>\n<li>under Colors, select the colours to match your GTK theme or download the <a href=\"http://ubuntuforums.org/showthread.php?t=1682563\" rel=\"nofollow noreferrer\">Ambiance colour scheme</a> .</li>\n<li>under Icons → Theme, select the icon theme you are using in GTK apps</li>\n<li>under Fonts select \"Ubuntu\", size 11 </li>\n</ul>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-02-04T17:37:08.330", "id": "27065", "postId": "24786", "score": "8", "text": "Shouldn't be that configuration default in ubuntu? It would look much better, and less uncompatible. Any reason why it's not default?", "userDisplayName": null, "userId": "705" }, { "creationDate": "2011-02-05T07:45:57.780", "id": "27150", "postId": "24786", "score": "4", "text": "@rafalcieslak feel free to [ask](http://askubuntu.com/questions/ask) a new question :)", "userDisplayName": null, "userId": "866" }, { "creationDate": "2011-04-17T23:29:12.293", "id": "39819", "postId": "24786", "score": "4", "text": "It's probably better to suggest installing the QT-4 configurator instead of the KDE Systemsettings manager - since the QT configurator does the same job for this case and has less dependencies.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-04-18T16:37:33.123", "id": "39958", "postId": "24786", "score": "0", "text": "@Alaukik: relax dude... and actually I think you're wrong cause I've used QT's configurator in the past for the same purpose.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2013-09-08T21:38:42.480", "id": "438836", "postId": "24786", "score": "1", "text": "The package @RolandiXor suggests is called `qt4-qtconfig`.", "userDisplayName": null, "userId": "4247" }, { "creationDate": "2019-09-24T06:38:47.693", "id": "1963789", "postId": "24786", "score": "3", "text": "The menus described in this answer do not exist in the `systemsettings` applications. Moreover, this application is well known to have no impact on the KDE applications on Ubuntu.", "userDisplayName": null, "userId": "177437" }, { "creationDate": "2022-09-24T14:41:10.130", "id": "2494336", "postId": "24786", "score": "0", "text": "This does not work. The app is just blank and broken in Ubuntu 22.04", "userDisplayName": null, "userId": "342157" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-04T15:10:03.717", "id": "24786", "lastActivityDate": "2017-02-23T16:28:55.820", "lastEditDate": "2017-02-23T16:28:55.820", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "10212", "parentId": "24780", "postTypeId": "2", "score": "20" }
[ { "accepted": true, "body": "<p>First you need the KDE's \"System settings\" application by installing <a href=\"https://launchpad.net/ubuntu/+source/systemsettings\" rel=\"nofollow noreferrer\">systemsettings</a> \nfrom the Software Center.</p>\n\n<p>Search the dash for System settings and launch it .\nTh...
null
null
null
null
null
24789
1
88153
2011-02-04T15:21:38.873
10
32045
<p>I use ubuntu server 10.04 on a fairly good machine, with 2.40 dual-core processor and 2GB RAM. </p> <p>My users login with ssh or samba. I have setup LDAP with PAM to sync user accounts between unix and samba. When I allowed about 90 users to login over ssh at once the server refused login for many users. I am using dropbear as ssh server. Even samba logins failed for many users. I need to allow at least 100 users to login at once. Is there anyway to do this?</p>
2968
235
2011-02-06T18:08:06.067
2011-12-16T04:01:31.683
How can I increase the maximum number of simultaneous users to log in to a server?
[ "server", "ssh", "samba", "login", "ldap" ]
1
9
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T15:58:44.193", "id": "27038", "postId": "24789", "score": "9", "text": "Out of curiosity, why did you choose a non default ssh server ? Also please add the specific error message that you get when an user attempts to login.", "userDisplayName": null, "userId...
{ "accepted": true, "body": "<p>I think what you're looking for is in the man sshd_config, the MaxSessions and MaxStartups fields</p>\n\n<p><a href=\"http://www.manpagez.com/man/5/sshd_config/\" rel=\"noreferrer\">http://www.manpagez.com/man/5/sshd_config/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-12-16T04:01:31.683", "id": "88153", "lastActivityDate": "2011-12-16T04:01:31.683", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1999", "parentId": "24789", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>I think what you're looking for is in the man sshd_config, the MaxSessions and MaxStartups fields</p>\n\n<p><a href=\"http://www.manpagez.com/man/5/sshd_config/\" rel=\"noreferrer\">http://www.manpagez.com/man/5/sshd_config/</a></p>\n", "commentCount": "0", "comments"...
null
null
null
null
null
24795
1
24833
2011-02-04T15:37:58.477
3
4870
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/56104/how-can-i-install-oracle-java-jre-7">How can I install Oracle Java JRE 7?</a> </p> </blockquote> <p>I have Ubuntu 10.10. I needed the Sun Java so I added <s>Sun</s> Oracle as supplier of packages and installed java-6. However, I haven't been able to persuade Firefox to use this Java for the browser. </p> <p>In fact I managed to turn off the original Java plugin (I can't remember exactly how) and I can't see any way to re-enable it. Ie. it doesn't appear in the "plugins" page of the Add-ons option. (I'm in Firefox 3.6.13)</p> <p>Any suggestions for how to re-enable Java in FF 3.6, and make sure it's using the Sun version?</p> <p>thanks</p> <p>phil</p>
10227
-1
2017-04-13T12:23:07.557
2011-02-04T22:25:42.617
How do I get the Java plugin in Firefox 3.6 working?
[ "10.10", "firefox", "java" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T19:27:19.533", "id": "27087", "postId": "24795", "score": "0", "text": "What is the terminal output of `locate libnpjp2.so`?", "userDisplayName": null, "userId": "1859" } ]
{ "accepted": true, "body": "<p>You may be missing the package <code>sun-java6-plugin</code> since it is not a dependency of <code>sun-java6-jre</code>. Try installing it via:</p>\n\n<pre><code>sudo apt-get install sun-java6-plugin\n</code></pre>\n\n<p>Then, restart Firefox and check for the plugin in Tools ▸ Add-ons ▸ Plugins or by typing <code>about:plugins</code> into the address bar.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-04T20:33:21.423", "id": "27092", "postId": "24833", "score": "0", "text": "I think that's it. The funny thing was I'd installed it using the Ubuntu Software Centre, from the Canonical Partners section and I still had the problem. But when I tried the command line I got a message about a duplicate between two sources. Nevertheless, after that it worked. I'm guessing maybe the plugin was installed via Sun but it needed this for Ubuntu to know that the package was installed and to tell Firefox?", "userDisplayName": null, "userId": "10227" }, { "creationDate": "2012-03-01T15:17:26.477", "id": "128277", "postId": "24833", "score": "1", "text": "not working for me, it says \"packet sun-java6-plugin not available\"", "userDisplayName": null, "userId": "19110" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T19:19:00.747", "id": "24833", "lastActivityDate": "2011-02-04T19:26:58.503", "lastEditDate": "2011-02-04T19:26:58.503", "lastEditorDisplayName": null, "lastEditorUserId": "1859", "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "24795", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>I ran into the same problem a while back</p>\n\n<ul>\n<li><p>Open a Terminal window</p></li>\n<li><p>Run <code>sudo update-java-alternatives -l</code> to see the current configuration and possibilities.</p></li>\n<li><p>Run <code>sudo update-java-alternatives -s XXXX</code> t...
null
null
2011-12-15T18:06:57.370
null
null
24796
1
24835
2011-02-04T15:38:35.130
4
2009
<p>My laptop is Lenovo with Windows 7. </p> <p>I was wondering if I dual install Ubuntu, the Windows recovery partition will be of no use any more? I am confused because I heard of this and don't understand why.</p> <p>Thanks and regards! </p>
1471
null
null
2011-02-04T19:30:23.333
Will Windows recovery partition become useless when dual install with Ubuntu?
[ "dual-boot", "windows-7" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Trying to restore your Win7 system will destroy an Ubuntu installation. Suggestion: When you installed and configured WinXP/7 system you always peform a backup of WinXP/7 partition by mean of backup software (for Windows). So you will be able to restore corrupted Windows system later. It does not harm your Ubuntu installation, however it may overwrite Grub settings. In such case, you may restore your Grub by use of software like SuperGrub. It will reconstruct your Grub functionality. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-05T01:03:23.617", "id": "27118", "postId": "24835", "score": "1", "text": "Just booting from the ubutnu dvd and selecting rescue mode and letting it chroot to the right spot for you, then doing a grub-install is sufficient. No outside tools are necessary to reinstall grub.", "userDisplayName": null, "userId": "5768" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T19:30:23.333", "id": "24835", "lastActivityDate": "2011-02-04T19:30:23.333", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5011", "parentId": "24796", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>If you can set to boot from it, it can still be useful. It will, however, destroy your ubuntu partition if you choose to restore. </p>\n\n<p>the destruction of the ubuntu partition is based off of this \"recovery\" partition just restoring an image instead of doing a REAL i...
null
null
null
null
null
24798
1
null
2011-02-04T15:40:44.607
3
2852
<p>I have an embedded battery powered device running Ubuntu and want to reduce power consumption. The idea is that if a user does not use a device for ca. 30 min. then the device will automatically shutdown or hibernate. </p> <p>Is it possible to automatically shut down or hibernate Ubuntu after spending x minutes in suspend?</p>
9025
235
2011-02-04T22:08:07.623
2017-02-23T16:51:11.723
Automatic shutdown / hibernation after x minutes in suspend?
[ "shutdown", "hibernate", "automation" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T15:56:29.220", "id": "27036", "postId": "24798", "score": "0", "text": "What do you mean by \"stand-by\", no user input ?", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-02-04T15:59:23.863", "id": "27039", "postId": "247...
null
[ { "accepted": null, "body": "<p>Suspend is an hardware managed state, such function if available would need to be implemented at the BIOS level, or at least would require BIOS support.</p>\n\n<p>Unless your BIOS provides such programmable function, no, it is not possible. </p>\n", "commentCount": "1", ...
null
null
null
null
null
24805
1
24807
2011-02-04T16:05:35.417
1
1463
<p>I'm trying <a href="http://awn-project.org/" rel="nofollow">Avant Window Navigator</a>(AWN) and I would like to delete my bottom panel to test only the AWN.</p> <p>But, if I don't like it, is there a way to get my bottom panel back?</p>
5304
4
2011-02-04T16:26:45.750
2011-02-04T16:26:45.750
Get bottom panel back
[ "panel", "gui", "awn" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes, if required later you can reset the gnome panel, intructions available at <a href=\"https://askubuntu.com/questions/41/resetting-gnome-panel\">Resetting gnome panel</a> .</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T16:08:52.713", "id": "24807", "lastActivityDate": "2011-02-04T16:08:52.713", "lastEditDate": "2017-04-13T12:23:44.677", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "742", "parentId": "24805", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Yes, if required later you can reset the gnome panel, intructions available at <a href=\"https://askubuntu.com/questions/41/resetting-gnome-panel\">Resetting gnome panel</a> .</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLi...
null
null
null
null
null
24811
1
24814
2011-02-04T16:34:26.300
2
3318
<p>I've installed Compiz with the Applications->Ubuntu Software Center, but it does not change the way <kbd>Alt</kbd>+<kbd>Tab</kbd> animates.</p> <p>Also, if I type "compiz" in the "run application" it hides all, and as I walk with the mouse everything gets back to the place, as if nothing had happened.</p> <p>How to turn compiz on?</p>
5304
17739
2011-11-02T20:43:13.973
2011-11-02T20:43:13.973
How to turn compiz on?
[ "compiz" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-04T16:41:32.500", "id": "27047", "postId": "24811", "score": "0", "text": "Have you tried adding `compiz` to your login items?", "userDisplayName": null, "userId": "6005" } ]
{ "accepted": true, "body": "<p>In order to turn compiz on, run in a terminal:</p>\n\n<pre><code>compiz --replace\n</code></pre>\n\n<p>After that, if you wish to change the application switcher animations, perform a search of \"application\" under System/Preferences/CompizConfig Settings Manager and you will have the options to do what you wish.</p>\n\n<p>You may also be interested into the \"Scale\" function, which is activated by enabling the \"scale\" check box in the menu and fully configurable. When enabled, press Super + W, it shows all windows from the current workspace.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-04T17:52:15.643", "id": "27069", "postId": "24814", "score": "1", "text": "I also find binding the \"scale\" plugin to a screen corner of great usage. This way to show all windows you need just a single fluent mouse move, then you visually select needed window and click to switch to it.", "userDisplayName": null, "userId": "9061" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T16:42:59.130", "id": "24814", "lastActivityDate": "2011-02-04T16:52:50.630", "lastEditDate": "2011-02-04T16:52:50.630", "lastEditorDisplayName": null, "lastEditorUserId": "9598", "ownerDisplayName": null, "ownerUserId": "9598", "parentId": "24811", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>In order to turn compiz on, run in a terminal:</p>\n\n<pre><code>compiz --replace\n</code></pre>\n\n<p>After that, if you wish to change the application switcher animations, perform a search of \"application\" under System/Preferences/CompizConfig Settings Manager and you wil...
null
null
null
null
null
24812
1
null
2011-02-04T16:37:09.510
0
1534
<p>I have upgraded my "Compaq Presarion CQ60" notebook from Ubuntu 10.04 to 10.10.</p> <p>Everything is fine, but the functional keys for brightness <kbd>F7</kbd> &amp; <kbd>F8</kbd> are not working. It was well working with 10.04.How to solve this?</p>
null
47151
2012-03-14T11:19:48.690
2012-03-14T11:19:48.690
How to activate notebook function keys?
[ "10.10", "shortcut-keys", "keyboard-layout" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-04T22:05:56.387", "id": "27103", "postId": "24812", "score": "0", "text": "Does the brightness slider in System ▸ Preferences ▸ Power Management work? Can you use one of [these methods](https://wiki.ubuntu.com/LaptopTestingTeam/Old/HotkeyResearch) to find out the keyco...
null
[ { "accepted": null, "body": "<p>Generally to activate any special function keys on your keyboard you need to choose your \"model\" from the keyboard section of the preferences menu.</p>\n\n<p>your model should be listed under Compaq.</p>\n\n<p>Hope this helps. </p>\n", "commentCount": "2", "comments...
null
null
null
null
user10232
24813
1
null
2011-02-04T16:39:53.360
0
722
<p>My video card is Intel Corporation 82915G/GV/910GL Integrated and the custom visual effects don't work at all! Is it due to the VGA? How can I get visual effects to work?</p>
null
41
2011-02-04T17:15:44.223
2011-02-04T17:15:44.223
Visual Effects not working on my Intel Corporation 82915G/GV/910GL Integrated Video
[ "10.10", "drivers", "video", "compiz" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T17:09:31.620", "id": "27053", "postId": "24813", "score": "1", "text": "Please run **glxinfo** and see if one of the first lines that says Direct Rending says YES. If you do not have glxinfo install the `mesa-utils` package.", "userDisplayName": null, "userI...
null
[ { "accepted": null, "body": "<p>if compiz doesn't work with your chipset, then visual effects WILL fail. if compiz does work with your chipset and the acceleration is poor(read as in software), you may realise that it sort of works, but the effects are really choppy. i have used intel chipsets and had com...
null
null
null
null
user10233
24826
1
null
2011-02-04T18:23:37.347
1
1472
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/10290/how-to-make-ubuntu-boot-fast">How to make Ubuntu boot fast?</a> </p> </blockquote> <p>hi, i m using Ubuntu 10.10 64bit OS. while booting in a black screen it shows blinking "_" about 10 seconds. how can it be solved?</p>
6698
-1
2017-04-13T12:23:59.520
2011-06-07T16:56:33.997
How to make Ubuntu 10.10 boot faster?
[ "boot" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-04T18:49:40.007", "id": "27077", "postId": "24826", "score": "1", "text": "The blinking \"_\" isn't responsible for any slowness; it's just what shows on the screen while the computer is booting if Ubuntu's startup graphics don't work with your graphics card/driver (wh...
null
[ { "accepted": null, "body": "<p>the blinking dash is usually your gui loading.\nfor any operating system windows ubuntu or otherwise you can go to your startup programs menu and limit the ammount of programs that load at startup and that will definitely speed up your startup. the other option is to turn off...
null
null
2011-02-04T23:05:13.587
null
null
24828
1
24834
2011-02-04T18:32:51.547
2
1402
<p>I have a mail server whose domain name is "vrk.com" and a user named "vinod" in it...</p> <p>All the mails send to "vinod@vrk.com" comes into the mail box /home/vinod/mbox</p> <p>Can i store mails addressed to "blahblah@yahoo.com" in this same mail box i.e /home/vinod/mbox...or into another catch all kind of user which catches all the mails regardless of the domain???? is it possible...i am using Postfix....</p>
10143
10143
2011-02-04T18:52:01.987
2011-02-05T02:37:47.573
Receive mail from any domain
[ "mail", "postfix" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can't capture emails addressed to yahoo.com since Yahoo's MX records don't point to <em>your</em> server, so they'll never get routed through your postfix service.</p>\n\n<p>If you're trying to create a catchall for a specific domain what you'll need to do is create a Virtual Domain file for postfix</p>\n\n<pre><code>sudoedit /etc/postfix/virtual\n</code></pre>\n\n<p>In the virtual file add the following:</p>\n\n<pre><code>@vrk.com vinod\n</code></pre>\n\n<p>Replace <code>@vrk.com</code> with the name of the domain you want to create the catch-all with (in your question this is where <code>yahoo.com</code> goes - however, as mentioned prior, you can't actually use <code>yahoo.com</code> as a valid domain since Yahoo's mail doesn't route to you) and the <code>vinod</code> part should be replaced with the email username that the catch-all should go to.</p>\n\n<p>Once you've created this file you'll need to encode it. That is done simply with the following:</p>\n\n<pre><code>postmap /etc/postfix/virtual\n</code></pre>\n\n<p>This does all the jazz (encoding, validating, etc) that Postfix needs in order to read it. To finish things up you'll want to add some lines to the configuration file and restart <code>postfix</code></p>\n\n<p>Open the configuration file with <code>sudoedit /etc/postfix/main.cf</code> and add this line to the bottom</p>\n\n<pre><code>virtual_alias_maps = hash:/etc/postfix/virtual\n</code></pre>\n\n<p>Then the restart with <code>sudo service postfix restart</code>!</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-05T04:36:28.850", "id": "27130", "postId": "24834", "score": "0", "text": "he opened a separate question for which this is the correct and complete answer. you might want to repost it [here][1]\n\n[1]: http://askubuntu.com/questions/24883/configure-mailserver-to-make-all-the-mails-come-to-1-single-mailbox", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2011-02-05T04:41:03.500", "id": "27132", "postId": "24834", "score": "0", "text": "In my case the mail server is local...not connected to internet...so yahoo.com would be just like any-other domain...right??....so it should work...", "userDisplayName": null, "userId": "10143" }, { "creationDate": "2011-02-05T05:06:06.800", "id": "27134", "postId": "24834", "score": "0", "text": ".its working....All the mails...from domains added in virtual file...like this \"@yahoo.com root\"....arrives....but not inn root mailbox but in nobodys mailbox....any idea why????..can i change it to make it come in root mail box??? or shall i create another user in the mail server and give it that mail box name?????...i think i did that with my mail box name i.e vinod....but only security mails were coming...", "userDisplayName": null, "userId": "10143" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T19:25:22.097", "id": "24834", "lastActivityDate": "2011-02-04T19:25:22.097", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "24828", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You can't capture emails addressed to yahoo.com since Yahoo's MX records don't point to <em>your</em> server, so they'll never get routed through your postfix service.</p>\n\n<p>If you're trying to create a catchall for a specific domain what you'll need to do is create a Vir...
null
null
null
null
null
24829
1
24877
2011-02-04T18:42:11.717
6
21071
<p>I have a LAMP stack running. My the web root is <code>/var/www</code>. </p> <p>So if I go to <code>http://linux-server/some/page.php</code> It renders the page located at <code>/var/www/some/page.php</code></p> <p>If I use <code>https</code> I get page not found.</p> <p>I would like to enable SSL for all pages, so I can view any of these pages using either http or https.</p> <p>How can I do that?</p>
7499
null
null
2014-01-08T00:08:18.947
How do I turn on SSL for test server?
[ "apache2", "ssl" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>/etc/apache2/sites-available/default-ssl</code> has the configuration for an http server. It can be enabled with the command <code>sudo a2ensite default-ssl</code>.</p>\n\n<p>You will also need to enable mod ssl. This can be done with the command <code>sudo a2enmod ssl</code>. This will point you to <code>/usr/share/doc/apache2.2-common/README.Debian.gz</code> for directions on configuring SSL and generting a self-signed certificate. it can be viewed with the command <code>zless /usr/share/doc/apache2.2-common/README.Debian.gz</code> </p>\n\n<p>Once you have the certificates installed, you can restart apache with the command <code>sudo /etc/init.d/apache2 restart</code>. </p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-02-07T15:30:06.573", "id": "27501", "postId": "24877", "score": "0", "text": "Got it working for the default host name but couldn't get it to work with multiple host names.", "userDisplayName": null, "userId": "7499" }, { "creationDate": "2011-02-07T16:03:03.600", "id": "27507", "postId": "24877", "score": "0", "text": "Scratch that, got it.", "userDisplayName": null, "userId": "7499" }, { "creationDate": "2013-10-30T12:15:52.070", "id": "471066", "postId": "24877", "score": "0", "text": "For 13.10 you don't need to generate & install self-signed certificates. After enabling mod_ssl and default-ssl, there is already an \"Ubuntu\" certificate.", "userDisplayName": null, "userId": "54899" }, { "creationDate": "2013-10-30T12:30:33.170", "id": "471074", "postId": "24877", "score": "0", "text": "@HalilÖzgür I have found Apache2 has always had a default certificate. The default self-signed certificate often doesn't match the name being published in DNS. In that case, a new certificate will need to be installed. Users who want a CA signed certificate will need to install and configure it.", "userDisplayName": null, "userId": "2176" }, { "creationDate": "2013-10-30T15:14:33.507", "id": "471164", "postId": "24877", "score": "0", "text": "@BillThor I thought the question is about local test servers or self-signed certificates, where \"invalid certificate\" warnings can be ignored.", "userDisplayName": null, "userId": "54899" }, { "creationDate": "2014-01-07T15:50:41.730", "id": "515136", "postId": "24877", "score": "0", "text": "the directory probably needs to be `/etc/apache2/sites-available/default-ssl`", "userDisplayName": null, "userId": "15811" }, { "creationDate": "2018-10-19T04:02:39.203", "id": "1784506", "postId": "24877", "score": "0", "text": "My only problem was not enable sudo a2ensite default-ssl. Thank you!", "userDisplayName": null, "userId": "666101" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-05T02:32:01.523", "id": "24877", "lastActivityDate": "2014-01-08T00:08:18.947", "lastEditDate": "2014-01-08T00:08:18.947", "lastEditorDisplayName": null, "lastEditorUserId": "2176", "ownerDisplayName": null, "ownerUserId": "2176", "parentId": "24829", "postTypeId": "2", "score": "13" }
[ { "accepted": null, "body": "<p>You can add it within apache or add it with a proxy (like nginx). I prefer setting up an SSL proxy locally or remotely in the first place. This way if I need to install a WAF or IDS later, there are less modifications required.</p>\n", "commentCount": "0", "comments...
null
null
null
null
null
24842
1
24843
2011-02-04T20:27:12.557
21
28086
<p>I'm looking for an application that drops output in a portable format, maybe export as an image file so I can flowchart some application designs and submit them to my boss for professional review. From what I've seen dia is about the de-facto standard for linux flowcharting, but maybe some of you out there in askubuntu land have some other suggestions for me to examine. </p> <p>Please keep in mind it has to offer a professional / attractive look on the final product. Maybe some color coordination of the options (logic structures are all purple, input statements are orange... for example)</p>
6807
null
null
2019-06-14T16:46:29.980
OpenSource Flow Charting
[ "software-recommendation" ]
7
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>you can use for Flow Chart Design:</p>\n\n<ul>\n<li>LibreOffice Draw (Formerly OpenOffice Draw) (You can give it colors to the elements)</li>\n<li>Kivio (From the KDE KOffice Suite)</li>\n<li>Inkscape</li>\n</ul>\n\n<p>If you are talking about Gantt Flow then</p>\n\n<ul>\n<li>Planner</li>\n<li><a href=\"https://apps.ubuntu.com/cat/applications/lucid/dia/\" rel=\"noreferrer\">Dia</a></li>\n<li>Opensched</li>\n<li><a href=\"https://apps.ubuntu.com/cat/applications/precise/umbrello/\" rel=\"noreferrer\">Umbrello</a></li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2013-02-16T06:49:34.547", "id": "320242", "postId": "24843", "score": "1", "text": "DIA is the simplest application. Im using it. Does not crash like other apps mentioned here.", "userDisplayName": null, "userId": "53649" }, { "creationDate": "2013-06-16T08:35:28.323", "id": "389145", "postId": "24843", "score": "0", "text": "I just try Dia.. cool app.. it can make Flowchart, UML, Cisco Network charts eg... I like the layout to, where buttons are places... Only little ting I miss is an god old delete-button in the topplanel.. but the cut-button do the job ;p", "userDisplayName": null, "userId": "10051" }, { "creationDate": "2016-07-20T20:57:36.983", "id": "1208442", "postId": "24843", "score": "0", "text": "Planner is for planning project tasks", "userDisplayName": null, "userId": "419117" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-04T20:41:26.370", "id": "24843", "lastActivityDate": "2016-07-20T21:42:11.000", "lastEditDate": "2016-07-20T21:42:11.000", "lastEditorDisplayName": null, "lastEditorUserId": "419117", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "24842", "postTypeId": "2", "score": "16" }
[ { "accepted": true, "body": "<p>you can use for Flow Chart Design:</p>\n\n<ul>\n<li>LibreOffice Draw (Formerly OpenOffice Draw) (You can give it colors to the elements)</li>\n<li>Kivio (From the KDE KOffice Suite)</li>\n<li>Inkscape</li>\n</ul>\n\n<p>If you are talking about Gantt Flow then</p>\n\n<ul>\n<li...
null
null
null
null
null
24845
1
24852
2011-02-04T20:45:45.623
2
217
<p>I just came across <a href="http://www.metalinker.org/" rel="nofollow">metalink</a>. The site says ubuntu uses this. I have never seen any download link at ubuntu with a .metalink file extension (eg - ubuntu_x.yy-iso.metalink). </p> <p>Also how is udpate manager getting its updates, is it by using multicast?<br> What is mechanism behind the updates?<br> How does automatic mirror selection works in ubuntu?</p>
5924
235
2011-02-04T21:04:44.917
2011-02-10T15:23:36.727
How and where all is Ubuntu.com using metalinks?
[ "update-manager", "downloads", "mirrors" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T21:27:40.367", "id": "27096", "postId": "24845", "score": "2", "text": "You'll get better answers from the community if you create a separate question for each item you want to ask.", "userDisplayName": null, "userId": "1859" } ]
{ "accepted": true, "body": "<h2>To download Ubuntu using Metalink</h2>\n\n<p>Metalink files for downloading Ubuntu are available on the Ubuntu Releases server: <a href=\"http://releases.ubuntu.com/10.10/\" rel=\"nofollow\">http://releases.ubuntu.com/10.10/</a></p>\n\n<p>A typical user might find this from Ubuntu's homepage by navigating to Download ▸ Alternative Downloads and then clicking \"<a href=\"http://www.ubuntu.com/start-download\" rel=\"nofollow\">a location near you</a>\".</p>\n\n<p>Right now this is only officially used for downloading complete ISO images, but there is some <a href=\"https://github.com/tatsuhiro-t/apt-metalink\" rel=\"nofollow\">experimental work</a> being done to leverage Metalink for software updates as well.</p>\n\n<h2>To use Metalink files in Ubuntu</h2>\n\n<p>To use Metalink files you must have a <a href=\"http://en.wikipedia.org/wiki/Metalink#Client_programs\" rel=\"nofollow\">client program that supports the Metalink standard</a>. Since Metalink is relatively new, few clients exist at this time. At a glance, the command-line program <a href=\"http://aria2.sourceforge.net/\" rel=\"nofollow\">aria2</a> (<a href=\"http://apt.ubuntu.com/p/aria2\" rel=\"nofollow\">install</a>) and the Firefox extension <a href=\"http://www.downthemall.net/\" rel=\"nofollow\">DownThemAll</a> look promising.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-04T21:29:38.857", "id": "27098", "postId": "24852", "score": "0", "text": "I am using Chrome, when i clicked ubuntu-10.10-alternate-i386.metalink it opened as a xml text file, but not as a download link. The metalink.org says chrome is supported, am i doing anything wrong. Is it to be open in someother way than just clicking on it.", "userDisplayName": null, "userId": "5924" }, { "creationDate": "2011-02-04T21:53:48.123", "id": "27102", "postId": "24852", "score": "0", "text": "I see no mention of support for Metalink in Google Chrome. Can you show me where you read this?", "userDisplayName": null, "userId": "1859" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T21:24:46.113", "id": "24852", "lastActivityDate": "2011-02-04T21:47:42.767", "lastEditDate": "2011-02-04T21:47:42.767", "lastEditorDisplayName": null, "lastEditorUserId": "1859", "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "24845", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<h2>To download Ubuntu using Metalink</h2>\n\n<p>Metalink files for downloading Ubuntu are available on the Ubuntu Releases server: <a href=\"http://releases.ubuntu.com/10.10/\" rel=\"nofollow\">http://releases.ubuntu.com/10.10/</a></p>\n\n<p>A typical user might find this from ...
null
null
null
null
null
24857
1
null
2011-02-04T22:03:57.830
3
2234
<p>Every time I reboot and try to browse the local network I get this error, but if I press OK and try again it works just fine. It only happens once per reboot. <img src="https://i.stack.imgur.com/JBchh.jpg" alt="enter image description here"></p>
7463
8844
2011-03-15T05:39:44.560
2011-10-11T20:48:18.163
Could not display "network:///" error when browsing LAN
[ "10.04", "networking", "nautilus" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-03-15T06:13:17.400", "id": "34084", "postId": "24857", "score": "0", "text": "I'm not familiar with what's producing this message -- your tags seem to suggest this is from nautilus? And how exactly are you trying to browse the network?", "userDisplayName": null, ...
null
[ { "accepted": null, "body": "<p>go to places click on computer then enter network:/// in location bar as</p>\n\n<p>network:///</p>\n\n<p>else use \n sudo apt-get install samba</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "crea...
null
null
null
null
null
24858
1
null
2011-02-04T22:20:56.893
6
491
<p>I remember reading on the Canonical website around the launch of the Ubuntu One Music store that after revenue was divided between Canonical, 7 digital and the artists involved that all profit or a significant percentage would be donated to a charity. </p> <p>This information has either disappeared from their website or my detective skills have failed me once more. Does anybody happen to understand the break down of revenue generated by the Ubuntu One Music Store or even know where to find this information. </p> <p>Also it would be useful to know which charity benefits from this. (Not that that would impact upon my purchases or send me running to iTunes. ;) Promise) </p>
9854
235
2011-02-04T22:23:31.900
2011-02-05T01:58:43.183
Does anybody know what happens to money spent in the Ubuntu One Music Store?
[ "canonical", "ubuntu-one" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T23:40:04.427", "id": "27110", "postId": "24858", "score": "0", "text": "Interesting. I apparently was asleep when the charity statements were made. I never expected the revenue to go back to the community, as I thought the selling point (as it were) was just that ...
null
[ { "accepted": null, "body": "<p>If you open Rythmbox and go to the Ubuntu One Store, it states the following:</p>\n\n<blockquote>\n <p>The Ubuntu One Music Store is a service from Canonical, the commercial sponsor of Ubuntu. The technology partner for the music store is 7digital, a UK-based company with a ...
null
null
null
null
null
24860
1
24865
2011-02-04T22:39:02.153
3
1890
<p>Sadly, everything I've tried so far has been painful to manage between two computers, (even between different browsers on the same computer). </p> <p>So, right now I have different aggregations of bookmarks passwords in xmarks, delicious, google bookmarks, firefox sync, text files, and in figaro password manager (<code>fpm2</code>). I've also tried to use bindwood in the past. </p> <p>What I would like to do is merge all bookmarks and passwords into some solution that actually works either with tools available under Ubuntu, or with a browser-based tool (addon/plugin/extension) which works between between google-chrome/chromium, and firefox. </p> <p>It would be ideal if there was an ability to send and store passwords encrypted (if not on my own server). Whatever the method, I need the ability to have import from existing sources. (It doesn't have to be pretty, just repeatable.)</p> <p>It's possible that some things I've ruled out are now workable (e.g., xmarks broke for me at one point because I hit their bookmark limit for the server/account, and bindwood, firefox sync were firefox only).</p>
8844
null
null
2011-02-05T03:23:21.160
What is the best tool to sync browser passwords and bookmarks?
[ "software-recommendation", "password", "browser", "bookmarks" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Lastpass works great for passwords (I use it with Chrome and Firefox, also on my Android device). <a href=\"http://www.xmarks.com/\" rel=\"nofollow\">XMarks</a> works great for me for bookmarks (<a href=\"http://www.lastpass.com\" rel=\"nofollow\">LastPass</a> just recently acquired Xmarks, so there is likely integration coming). These tools work great across browsers, but also across platforms. Not sure why XMarks broke for you, but you may want to try again. I find it very stable and handles a huge amount of bookmarks for me.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-04T23:16:55.973", "id": "24865", "lastActivityDate": "2011-02-04T23:16:55.973", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2692", "parentId": "24860", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>I'm not aware of any cross-browser methods for synchronizing the passwords stored within the browser, but I find that the combination of <a href=\"http://www.keepassx.org/\" rel=\"nofollow\">KeePassX</a> and <a href=\"http://www.dropbox.com/referrals/NTMyOTY4NTY5\" rel=\"nofo...
null
null
null
null
null
24866
1
24870
2011-02-04T23:38:05.097
1
3359
<p>I have been trying to get Quickbooks Premier 2010 to run in Wine. I can't do it. I am hoping that there may be someone who has been successful in installing various apps using Wine.</p> <p>I am currently running windows 7 through virtual box, but I am disappointed with the performance. And it seems to be a little inconvenient. </p>
10252
null
null
2016-06-16T19:17:30.037
Install Quickbooks Premier 2010
[ "wine" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>According to this forum post:</p>\n\n<p><a href=\"http://community.intuit.com/posts/quickbooks-2010-multi-user-with-linux-server\" rel=\"nofollow\">http://community.intuit.com/posts/quickbooks-2010-multi-user-with-linux-server</a></p>\n\n<p>The last known version of QB to work with Wine was 2004. A quick check at <a href=\"http://appdb.winehq.org/\" rel=\"nofollow\">http://appdb.winehq.org/</a> did not give encouraging results either. </p>\n\n<p>Here's hoping someone more knowledgeable comes along and contradicts me though.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-05T01:12:45.373", "id": "27119", "postId": "24870", "score": "1", "text": "if it says is doesn't work, making it work is a long and painful troubleshooting process. Usually not worth the time. If you pay yourself $10/hr to troubleshoot it is often resolved after you pay for XP a couple of times, if at all. It's a better idea to install a vbox xp machine and install it that way.", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2011-02-05T01:22:02.260", "id": "27121", "postId": "24870", "score": "0", "text": "For example, I have gotten some later versions of the adobe suite(not CS4 or CS5) working before. It was such a painful experience and involved so much dll copy and over-ride that it wasn't worth repeating", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2011-02-05T02:56:03.333", "id": "27125", "postId": "24870", "score": "0", "text": "Thanks for your input. This is what I've read but not in as much detail asnyou are saying. I think that what I need to do now is learn how to configure vbox so it runs smoothly.", "userDisplayName": null, "userId": "10252" }, { "creationDate": "2011-02-05T07:14:20.007", "id": "27144", "postId": "24870", "score": "0", "text": "@Keith a basic vbox more smoothly checklist would include - remove all un-necessary ubuntu components to reduce memory footprint, enable virtualization in hardware if available, tweak memory settings until you find optimum for the hw/sw combo you are running, enable graphics related accelerations in vbox if supported on your hw. i know ppl that run seamless mode on login so they can have it look like a default XP desktop and fall back to linux when they use a family computer.", "userDisplayName": null, "userId": "5768" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T00:27:26.287", "id": "24870", "lastActivityDate": "2011-02-05T00:27:26.287", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2315", "parentId": "24866", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>According to this forum post:</p>\n\n<p><a href=\"http://community.intuit.com/posts/quickbooks-2010-multi-user-with-linux-server\" rel=\"nofollow\">http://community.intuit.com/posts/quickbooks-2010-multi-user-with-linux-server</a></p>\n\n<p>The last known version of QB to wor...
null
null
null
null
null
24867
1
480906
2011-02-05T00:20:22.160
13
19816
<p>I'm looking to remove the "Tool Box" icon in the upper right hand corner of my KDE 4 desktop, but can't find any configuration setting anywhere to do so. I'm new to KDE 4, so it's quite possible I just haven't found that setting yet.</p> <p>Is there any way to remove that icon from your desktop, or is it just a permanent, unmovable part of KDE?</p>
6016
3037
2011-02-06T10:42:53.523
2018-01-15T08:08:56.080
How do I remove the KDE 4 Plasma Tool Box/cashew icon from the desktop?
[ "kubuntu", "kde" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can delete the <code>toolbox cashew widget</code> this way:</p>\n\n<ol>\n<li><p>Open a terminal and type: <code>sudo -H dolphin</code> or <code>kdesudo dolphin</code> enter your password</p></li>\n<li><p>In dolphin, navigate to <code>/usr/share/kde4/services</code></p></li>\n<li><p>Search in this folder for <code>plasma-toolbox</code>, there should be 3 files named <code>plasma-toolbox-(*something*).desktop</code></p></li>\n<li><p>Make backups of these in another folder and delete the originals</p></li>\n<li><p>log out and back in</p></li>\n</ol>\n\n<p>Done, no more cashew :)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2014-10-12T07:20:56.510", "id": "732706", "postId": "480906", "score": "1", "text": "This method did crash the UI, but after restarting all worked fine. I cannot accept that answer to 'how to remove something' is 'install something'.", "userDisplayName": null, "userId": "110567" }, { "creationDate": "2014-11-21T01:06:09.710", "id": "756738", "postId": "480906", "score": "3", "text": "This deserves more votes! The methods in the chosen solution used to work, but do not in 14.04. This answer does, and I have not seen it mentioned anywhere else, and I have been searching for a long time. Thank you!!", "userDisplayName": null, "userId": "218383" }, { "creationDate": "2015-01-03T16:30:26.480", "id": "783376", "postId": "480906", "score": "0", "text": "This also works for KDE 4 on Fedora 21", "userDisplayName": null, "userId": "244849" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2014-06-09T13:57:05.410", "id": "480906", "lastActivityDate": "2018-01-15T08:08:56.080", "lastEditDate": "2018-01-15T08:08:56.080", "lastEditorDisplayName": null, "lastEditorUserId": "480481", "ownerDisplayName": null, "ownerUserId": "291934", "parentId": "24867", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Install <a href=\"http://kde-look.org/content/show.php/Py-Cashew?content=147892\" rel=\"nofollow\">Py-Cashew</a> -- it's an additional script that removes the thingy (it can also be downloaded via KDE widget download tool)</p>\n\n<p>There are also <a href=\"http://kde-look.or...
null
null
null
null
null
24869
1
24898
2011-02-05T00:25:02.293
1
874
<p>I've always loved this game but after upgrading to Ubuntu 10.10 the game was removed. Naturally I went into the Software Center and reinstalled it. However now when I launch it, it just freezes and will not do anything. I eventually have to kill it.</p> <p>It shows this output in the terminal:</p> <p><code>(seed:12453): GLib-GObject-CRITICAL **: g_object_ref: assertion "G_IS_OBJECT (object)" failed</code></p> <p>Is there a known bug or something? How can I get this working again? </p>
885
null
null
2011-02-05T07:40:37.043
How can I get Swell Foop (Same GNOME) working?
[ "gnome", "games" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is a known bug:</p>\n\n<ul>\n<li><a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-games/+bug/626016\" rel=\"nofollow\">Launchpad bug report</a></li>\n<li><a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=624493\" rel=\"nofollow\">Upstream bug report</a></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-05T21:53:34.877", "id": "27252", "postId": "24898", "score": "0", "text": "It looks to have been fixed. http://goo.gl/d8FzC I just need to download the update (or I'll have to build from source).", "userDisplayName": null, "userId": "885" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T07:40:37.043", "id": "24898", "lastActivityDate": "2011-02-05T07:40:37.043", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24869", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>This is a known bug:</p>\n\n<ul>\n<li><a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-games/+bug/626016\" rel=\"nofollow\">Launchpad bug report</a></li>\n<li><a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=624493\" rel=\"nofollow\">Upstream bug report</a></li>\...
null
null
null
null
null
24871
1
null
2011-02-05T00:41:53.030
3
970
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/18654/how-to-prevent-updating-of-a-specific-package">How to prevent updating of a specific package?</a> </p> </blockquote> <p>I'm looking for ways to blacklist packages from being suggested for update by the update manager.</p> <p>Reason: gdesklets for instance works for me with v0.36.1-3, but the update manager keeps suggesting 0.36.1-4. When I use update manager, I generally just scan the list of updates and click Ok. Hoever when some packages which I want to keep at a certain version are in the middle I tend to miss them. Hence looking for a way to blacklist them for the purposes of the update manager.</p> <p>I have found such a blacklist to disable packages from the auto-update, but it only seems to work with auto-update (fully unattended) - the update manager still lists the package for update and ticks it by default, like all packages.</p> <p>Any hints as to where I could find this feature - if it exists?</p>
7878
-1
2017-04-13T12:23:59.520
2011-10-26T18:24:56.817
Disabling packages from the update manager
[ "update-manager", "blacklist" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
0
2012-07-26T15:08:05.397
null
null
24881
1
null
2011-02-05T03:43:59.347
3
236
<p>Openoffice in 10.10 always send a extra copy for each page in my document's (writer, calc) on a HP Laserjet 4250 and HP Deskjet 3920.</p> <p>I double check "Copies" option and is set to 1, but always send a extra copy.</p>
5836
235
2011-02-05T04:14:51.800
2012-06-11T16:39:45.020
OpenOffice always print a copy for every page
[ "10.10", "openoffice.org", "printing" ]
0
4
CC BY-SA 2.5
[ { "creationDate": "2012-06-10T13:57:18.220", "id": "180006", "postId": "24881", "score": "0", "text": "I see the same thing in 12.04", "userDisplayName": null, "userId": "20309" }, { "creationDate": "2012-06-11T16:39:45.020", "id": "180772", "postId": "24881", "score"...
null
[]
null
null
2012-09-03T21:35:33.750
null
null
24884
1
24885
2011-02-05T04:30:41.990
75
115235
<p>I need to view a .msg file. It is an email from Microsoft Outlook. How can I do this in Ubuntu?</p>
681
115155
2014-05-09T16:15:18.443
2021-01-06T09:28:32.780
How do I view an Outlook .msg file?
[ "file-format", "microsoft-office" ]
8
3
CC BY-SA 2.5
[ { "creationDate": "2016-10-14T12:19:29.837", "id": "1279433", "postId": "24884", "score": "0", "text": "similar question: https://askubuntu.com/questions/282691/how-to-convert-msg-file-outlook-email-msg-into-eml", "userDisplayName": null, "userId": "354350" }, { "creationDate": "...
{ "accepted": true, "body": "<p>Looks like the best thing to do is to convert them to an eml file using this script:</p>\n\n<p><a href=\"http://www.matijs.net/software/msgconv/\">http://www.matijs.net/software/msgconv/</a></p>\n\n<p>It's not pretty, it's not gui based, but it'll work.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2014-09-30T07:28:12.990", "id": "724059", "postId": "24885", "score": "1", "text": "After installing the script as indicated (cpan -i Email::Outlook::Message) found a quick way to call it: creating a \"Nautilus Script\" with: #!/bin/bash\nfor arg do\n msgconvert \"$arg\"\ndone", "userDisplayName": null, "userId": "12064" }, { "creationDate": "2019-02-20T10:56:23.113", "id": "1850666", "postId": "24885", "score": "5", "text": "I can install this on my computer with `sudo apt install libemail-outlook-message-perl` and then just `msgconvert xyz.msg` and I get a `xyz.eml` file", "userDisplayName": null, "userId": "42024" }, { "creationDate": "2021-06-28T20:02:33.903", "id": "2305538", "postId": "24885", "score": "0", "text": "Today the latest version is v0.920 and it still turns HTML messages into plain text messages", "userDisplayName": null, "userId": "253634" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T04:38:36.377", "id": "24885", "lastActivityDate": "2011-02-05T04:38:36.377", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "24884", "postTypeId": "2", "score": "36" }
[ { "accepted": true, "body": "<p>Looks like the best thing to do is to convert them to an eml file using this script:</p>\n\n<p><a href=\"http://www.matijs.net/software/msgconv/\">http://www.matijs.net/software/msgconv/</a></p>\n\n<p>It's not pretty, it's not gui based, but it'll work.</p>\n", "commentCo...
null
null
null
null
null
24886
1
24894
2011-02-05T05:18:17.793
0
441
<p>After installing 11.04 alpha2, I cannot access the internet.</p> <p>I use wireless LAN. In the <em>network connection</em> dialog, it seems to work well, but I cannot access any webpages from my webbrowser even if I use direct ip address (so it is not a DNS problem).</p> <p>I cannot download a newer version from update-manager. That doesn't work either.</p> <p>Can I roll back the update? I'm so frustrated and regretful.</p>
5717
527764
2021-06-26T06:39:39.900
2021-06-26T06:40:25.890
Can I go back to the previous Ubuntu version after installing 11.04 alpha2?
[ "networking", "11.04" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2011-02-05T05:21:02.930", "id": "27135", "postId": "24886", "score": "0", "text": "Please see: http://meta.askubuntu.com/questions/871/when-are-questions-about-ubuntu1-appropriate", "userDisplayName": null, "userId": "235" }, { "creationDate": "2011-02-05T07:09...
{ "accepted": true, "body": "<p>Unlike Windows Ubuntu doesn't create system restore points to 'rollback' to. </p>\n\n<p>You would have to reinstall 10.10 from scratch but you can back up your data in your /home directory and start over.</p>\n\n<p>Natty is only an Alpha release and not recommended for a production install - you'd be better off to install it onto a USB stick and run a live version to test and report bugs.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-05T08:55:50.177", "id": "27156", "postId": "24894", "score": "0", "text": "Thank you. I just reinstalled 10.10. I'm not gonna taste alpha version again! T.T", "userDisplayName": null, "userId": "5717" }, { "creationDate": "2011-02-05T09:52:35.847", "id": "27166", "postId": "24894", "score": "0", "text": "I recommend you install to usb as detailed on Jono Bacon's blog http://www.jonobacon.org/2010/11/30/testing-natty-and-unity-safely-with-a-usb-stick/", "userDisplayName": null, "userId": "4982" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T07:14:24.627", "id": "24894", "lastActivityDate": "2011-02-05T07:14:24.627", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4982", "parentId": "24886", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Unlike Windows Ubuntu doesn't create system restore points to 'rollback' to. </p>\n\n<p>You would have to reinstall 10.10 from scratch but you can back up your data in your /home directory and start over.</p>\n\n<p>Natty is only an Alpha release and not recommended for a prod...
null
null
null
null
null
24889
1
null
2011-02-05T06:17:47.633
1
293
<p>I really like Ubuntu, but my family is used to Windows and I would like to dual boot it but accidentally did a full install and now I just have Ubuntu.</p> <p>Is there any way to me to get back Windows Vista 64 bit?</p>
null
null
null
2011-02-05T16:14:43.960
Reinstalling Windows Vista 64 Bit
[ "windows", "windows-vista" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T19:43:29.807", "id": "27240", "postId": "24889", "score": "1", "text": "This should be migrated to SU, because it is a question about Windows and Data-Recovery, not directly related to Ubuntu.", "userDisplayName": null, "userId": "1029" } ]
null
[ { "accepted": null, "body": "<p>If you used the whole hard disk for Ubuntu, NTFS partition you had for windows got reformatted as a Linux partition. Then you cannot get back Windows Vista using usual methods.</p>\n\n<p>I am not sure if any data recovery tool works or not.</p>\n\n<p>To confirm if you still h...
null
null
null
null
user10258
24893
1
null
2011-02-05T07:08:03.310
2
2801
<p>I am using Ubuntu 10.04 LTS, dual boot with Windows 7 on ThinkPad T400, I followed Ubuntu update hints and installed some update for my ATI Radeon graphic card, but when I boot to Ubuntu (means I can still load GRUB), the screen goes to blank and no matter what key stroke, I can not get any responds. I can't even open a terminal. </p> <p>However when I hit the power button, the computer would pop out the Ubuntu shutdown screen briefly and shut down.</p> <p>I figure out I should delete the updates package for my graphic card, but I don't even get a chance to go to text terminal, please help me! </p>
10260
2816
2012-02-24T15:48:29.183
2012-02-24T15:48:29.183
Boots to a totally blank screen after I installed some ATI Radeon card updates
[ "10.04", "boot", "xorg", "ati" ]
4
1
CC BY-SA 3.0
[ { "creationDate": "2012-02-11T22:59:43.277", "id": "119548", "postId": "24893", "score": "2", "text": "This question appears to be abandoned and unanswered, could you perhaps add more detail to your question? If this question no longer applies then you can either delete it or answer it yourself ...
null
[ { "accepted": null, "body": "<p>One approach is to disable quiet in the boot options and read the debug messages to see how far you get in the boot process. </p>\n\n<p>If this doesn't work then to toubleshoot, you might want to boot to recovery console or runlevel 1, chroot appropriately, and init 3. This...
null
null
null
null
null
24899
1
null
2011-02-05T07:52:43.953
0
2486
<p>I missinput a command in a directory(I don't remember what it is.)</p> <blockquote> <p>sudo rm -f -r tmp</p> </blockquote> <p>after that when I restart and log in, I cannot login use the user I have delete the tmp.</p> <p>However, I can log in with user: root.</p> <p>Can I resolve the problem?</p>
null
null
2011-02-05T08:14:22.763
2012-08-23T14:35:37.770
Tmp directory deleted, I cannot login to the system
[ "data-recovery" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T08:42:30.150", "id": "27155", "postId": "24899", "score": "1", "text": "The question is not very clear. If you actually did sudo rm -f -t /tmp (instead of just tmp), it could have removed your /tmp directory. If that is the case, you can do sudo mkdir /tmp and sudo ...
null
[ { "accepted": null, "body": "<p>The question is not very clear. \nIf you actually did sudo rm -f -t /tmp (instead of just tmp) or executed the command while you are at /, it could have actually removed your /tmp directory. /tmp is used for multiple purposes for temporary data storage.</p>\n\n<p>If that is t...
null
null
null
user8260
user8260
24900
1
24905
2011-02-05T07:58:52.450
6
7014
<p>Is there any option to install a package to my home directory (or /foo) instead of system wide ? I am looking for options using apt-get or dpkg. Something similar to --prefix in a source compile.</p> <p>What I am looking for co-existing of different versions of openJDK for testing purposes.</p>
10077
null
null
2014-06-11T15:01:33.100
Installation of a package to a custom directory
[ "10.10", "server", "package-management" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>A debian package needs to be compliant to the <a href=\"http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard\" rel=\"nofollow\">FHS</a>, that clearly defines where to put data and where to install applications on any system. This clear structure makes administration easy and we all should stick to that.</p>\n\n<p>In your case, when it comes to testing applications an installation to a custom directory may be desired. However there is no way to tell your package manager not to use the predefined file locations from an exisiting DEB package.</p>\n\n<p>If you need an installation to another location you may need to compile your package from source, as you already pointed out. Alternatively, and if you need to use dpkg you will have to build your own private DEB where you can define other installation paths. If however the application relies on access to files located on a FHS-compliant path it may not run the way developers intended.</p>\n\n<p>For installing testing versions of applications you may consider a <a href=\"https://help.ubuntu.com/community/BasicChroot\" rel=\"nofollow\">chroot</a> (or <a href=\"https://wiki.ubuntu.com/DebootstrapChroot\" rel=\"nofollow\">schroot</a>) environment. The safest solution (though maybe overkill) for testing is installing applications in a virtual OS (e.g. through <a href=\"http://www.virtualbox.org/wiki/Downloads\" rel=\"nofollow\">Virtual Box</a>)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-05T10:19:28.163", "id": "27170", "postId": "24905", "score": "1", "text": "Thanks. On further looking to 'man dpkg', I saw this and yet to evaluate. --instdir=dir\n Change default installation directory which refers to the directory where packages are to be installed. instdir is\n also the directory passed to chroot(2) before running\n package's installation scripts, which means that the scripts see instdir as a root directory. (Defaults to /).", "userDisplayName": null, "userId": "10077" }, { "creationDate": "2011-02-05T10:28:58.060", "id": "27171", "postId": "24905", "score": "0", "text": "I tried to install an already existing package using this switch and I could not do it since the dpkg -i command detected my old package and warned me. Something like \"Preparing to replace \"foo\" with foo.deb\". So looks like source compile is the only way", "userDisplayName": null, "userId": "10077" }, { "creationDate": "2011-02-05T10:44:33.883", "id": "27173", "postId": "24905", "score": "2", "text": "--instdir works and dumps the files to my directory. But this is not much useful in practise. This expects a chrooted environment. If I have a chrooted setup in this directory, I can use 'sudo chroot mydir' and use it.", "userDisplayName": null, "userId": "10077" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-05T09:19:34.343", "id": "24905", "lastActivityDate": "2014-06-11T15:01:33.100", "lastEditDate": "2014-06-11T15:01:33.100", "lastEditorDisplayName": null, "lastEditorUserId": "147253", "ownerDisplayName": null, "ownerUserId": "3940", "parentId": "24900", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>A debian package needs to be compliant to the <a href=\"http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard\" rel=\"nofollow\">FHS</a>, that clearly defines where to put data and where to install applications on any system. This clear structure makes administration eas...
null
null
null
null
null
24903
1
237766
2011-02-05T09:16:01.563
18
28499
<p>Is there a way for doing this?</p>
5149
5149
2011-06-17T05:35:29.887
2014-05-10T13:15:46.140
How to boot from an .iso file in GRUB2?
[ "software-recommendation", "grub2", "iso" ]
6
5
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T09:34:10.950", "id": "27165", "postId": "24903", "score": "0", "text": "Can you clarify what exactly you want to do?", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-02-05T12:10:01.683", "id": "27180", "postId": "24903",...
{ "accepted": true, "body": "<p>It may be much easier than the impression you get from all the detailed explanations on the web. I just did the following on Ubuntu 12.04 to boot FreeDOS .iso for a firmware update</p>\n\n<ul>\n<li>Install grub-imageboot</li>\n<li>copy your .iso file(s) to /boot/images/</li>\n<li>run update-grub2</li>\n</ul>\n\n<p>Or copy/paste these:</p>\n\n<pre><code>sudo -s\napt-get install grub-imageboot\nmkdir /boot/images/\ncp $YOUR_ISO_FILE.iso /boot/images/\n\nupdate-grub2\n</code></pre>\n\n<p><strong>That's it.</strong> </p>\n\n<p>Sometimes, you may need 2 more steps to do before running update-grub2:</p>\n\n<p>If you never did it before, you need to edit /etc/default/grub so that you see the grub menu on boot:</p>\n\n<pre><code>## To show the menu, disable the hidden_timeout, and set a timeout\n#GRUB_HIDDEN_TIMEOUT=0\nGRUB_TIMEOUT=10\n</code></pre>\n\n<p>For some .iso images, you may need to add this option in /etc/default/grub-imageboot : (I needed it for my FreeDOS .iso)</p>\n\n<pre><code>ISOOPTS=\"iso raw\"\n</code></pre>\n\n<p>If you did edit one of these config. files, you need to run <code>update-grub2</code> again.</p>\n\n<p><strong>Update:</strong> Here is the resulting menuentry asked by \"dma_k\"</p>\n\n<pre><code>menuentry \"Bootable ISO Image: SV100S2_64_128_120229\" {\n insmod part_msdos\n insmod ext2\n set root='(hd0,msdos6)'\n search --no-floppy --fs-uuid --set=root 6ca082d0-63d0-48c3-9e5f-2ce5d7a74fe4\n linux16 /boot/memdisk iso raw\n initrd16 /boot/images/SV100S2_64_128_120229.iso\n}\n</code></pre>\n\n<p>This was for a FreeDOS image with some firmware update or such.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2013-02-01T11:44:19.540", "id": "311756", "postId": "237766", "score": "1", "text": "Not working for me on 12.10 iso=>12.10", "userDisplayName": null, "userId": "123897" }, { "creationDate": "2014-05-09T17:30:18.397", "id": "611347", "postId": "237766", "score": "0", "text": "@mivk: Could you please also provide the resulting `menuentry` for the given ISO?", "userDisplayName": null, "userId": "164142" }, { "creationDate": "2014-05-10T13:16:28.263", "id": "611904", "postId": "237766", "score": "0", "text": "@dma_k: see update above.", "userDisplayName": null, "userId": "8822" }, { "creationDate": "2014-05-12T10:06:42.493", "id": "613463", "postId": "237766", "score": "1", "text": "Thanks, I see. Have you found any limitations with this approach? I have a feeling that `memdisk` can only load images say less then 1GB, something more heavy (e.g. Win7 DVD ISO) is causing problems.", "userDisplayName": null, "userId": "164142" }, { "creationDate": "2014-05-12T18:46:24.050", "id": "613841", "postId": "237766", "score": "0", "text": "Only ever used this for various small firmware updates.", "userDisplayName": null, "userId": "8822" }, { "creationDate": "2015-08-24T09:42:12.750", "id": "960056", "postId": "237766", "score": "0", "text": "Not working Ubuntu 12.04 iso => 12.04. `update-grub` does say `Found iso image: /boot/images/ubuntu-12.04.4-desktop-amd64.iso`, but when I reboot there is no entry on the GRUB menu.", "userDisplayName": null, "userId": "52975" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2013-01-08T16:18:09.783", "id": "237766", "lastActivityDate": "2014-05-10T13:15:46.140", "lastEditDate": "2014-05-10T13:15:46.140", "lastEditorDisplayName": null, "lastEditorUserId": "8822", "ownerDisplayName": null, "ownerUserId": "8822", "parentId": "24903", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>I'm assuming you want to add a .iso entry to the GRUB menu and boot it ?</p>\n\n<p>I found <a href=\"http://ubuntuforums.org/showthread.php?t=1549847\" rel=\"nofollow\">this info</a> on Ubuntu Forums</p>\n", "commentCount": "1", "comments": [ { "creation...
null
null
2015-08-28T11:30:19.000
null
null
24904
1
25238
2011-02-05T09:19:14.847
2
2595
<p>I prefer to use VLC because it never gives me problems while Totem does. I'd like to uninstall Totem, so all file associations point to VLC. However I still want to have video thumbnails in Nautilus.</p>
10263
3037
2011-02-05T10:29:19.380
2017-02-23T22:46:07.387
Any way to remove Totem but still have video thumbnails in Nautilus?
[ "nautilus", "vlc", "totem", "thumbnails" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T09:52:56.673", "id": "27167", "postId": "24904", "score": "0", "text": "Have you tried `sudo apt-get remove totem`?", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-05T12:20:13.990", "id": "27181", "postId": "24904", ...
{ "accepted": true, "body": "<p>It's not actually uninstalling it but if you do <code>sudo cp /usr/share/applications/totem.desktop ~/.local/share/applications/totem.desktop</code> and then <code>gedit ~/.local/share/applications/totem.desktop</code> and add a new line <code>Hidden=true</code> the desktop will completely forget totem exists. It will no longer be used for file associations and will not show up in the menus but the thumbnailer should continue to function.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-13T10:08:41.173", "id": "28639", "postId": "25238", "score": "0", "text": "This works for me, I wanted to uninstall totem mostly because I didn't know of a better way to completely remove it from the file associations.", "userDisplayName": null, "userId": "10263" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-08T07:38:53.050", "id": "25238", "lastActivityDate": "2012-08-19T00:14:48.220", "lastEditDate": "2012-08-19T00:14:48.220", "lastEditorDisplayName": null, "lastEditorUserId": "78407", "ownerDisplayName": null, "ownerUserId": "2178", "parentId": "24904", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I think you have to leave the <a href=\"http://packages.ubuntu.com/totem-common\" rel=\"nofollow noreferrer\">totem-common</a> package installed. You can remove all of the other totem packages and still have thumbnails.</p>\n\n<p>After that check the preview tab in nautilus p...
null
null
null
null
null
24906
1
null
2011-02-05T09:21:16.850
4
582
<p>Is it possible to install and run Ubuntu on a MacBook?</p>
null
8844
2012-05-04T17:44:00.453
2012-05-04T18:06:07.997
Is Ubuntu compatible with MacBooks?
[ "macbook", "apple" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2011-02-05T09:31:51.157", "id": "27164", "postId": "24906", "score": "5", "text": "To find out boot from a live CD.", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-02-05T09:54:11.693", "id": "27168", "postId": "24906", "score"...
null
[ { "accepted": null, "body": "<p>Yes! I am in fact typing this from a MBP 7.1 (where everything except for bluetooth works) :-)</p>\n\n<p>There are comprehensive instructions <a href=\"https://help.ubuntu.com/community/MacBook\" rel=\"nofollow\">on the help wiki</a>.</p>\n", "commentCount": "0", "com...
null
null
null
null
user10264
24914
1
24915
2011-02-05T12:32:54.620
2
220
<p>I have in principal 3 big partitions on my Netbook. One Windows, one for shared files, one for Ubuntu. I recently find out (using hdparm) the the hardisk seems to have much better perfomance on the first 2/3 (~ 60MB/s) than on the last 1/3 (~ 40MB/s). I am thinking to delete the second partition and create new partitions for "swap" and <code>/</code> directly after Windows. Does this effort make sense? </p> <p>I also wanna upgrade to 10.4/10.10 but keep the option to go back to the old system, so maybe I install ubuntu completely in a/this new partition?</p>
9706
null
null
2011-02-05T12:55:37.913
Should I reorder partitions regarding performance
[ "upgrade", "partitioning", "performance" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Only the transfer rate does vary over the whole capacity of the harddrive, but not the access time. In pratice, the access time is much more important than the sequential read/write speed. I doubt that you would see a real performance increase during you normal usage.</p>\n\n<p>If you're reinstalling anyway, I would put the most performance-critical partitions to the beginning. I would not repartition just for the reordering, it's too much effort for too little gain.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-05T14:52:48.263", "id": "27202", "postId": "24915", "score": "0", "text": "+1 good answer. As an addendum, hdparm will indeed measure raw throughput, but the buffer cache in Linux is so efficient that the hard throughput is a poor measure of actual performance. A block that lives in memory has no head seek time and has 10x(?) the throughput.", "userDisplayName": null, "userId": "1078" }, { "creationDate": "2011-02-05T15:32:29.400", "id": "27207", "postId": "24915", "score": "0", "text": "Thank you. I also realized with 2GB it runs quite smooth, while with 1GB I had much swapping there it could have made a bigger difference maybe!", "userDisplayName": null, "userId": "9706" }, { "creationDate": "2011-02-05T15:33:36.040", "id": "27208", "postId": "24915", "score": "0", "text": "@Marcel More RAM is often the most effective upgrade. The fastest swap partition is the one that isn't needed at all.", "userDisplayName": null, "userId": "4068" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T12:55:37.913", "id": "24915", "lastActivityDate": "2011-02-05T12:55:37.913", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4068", "parentId": "24914", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Only the transfer rate does vary over the whole capacity of the harddrive, but not the access time. In pratice, the access time is much more important than the sequential read/write speed. I doubt that you would see a real performance increase during you normal usage.</p>\n\n...
null
null
null
null
null
24916
1
24930
2011-02-05T13:20:44.663
283
327417
<p>I'm searching for a way to remap certain keys in ubuntu.</p> <p>i.e. </p> <p>I'd like to change <kbd>PgUp</kbd> to <kbd>Home</kbd> or <kbd>PgDown</kbd> to <kbd>End</kbd>.</p> <p>Does a built-in command or a tool exist reassign keys in Ubuntu/GNOME?</p>
7155
186134
2014-08-14T08:53:14.207
2023-01-07T12:55:10.477
How do I remap certain keys or devices?
[ "xorg", "keyboard", "shortcut-keys" ]
11
4
CC BY-SA 3.0
[ { "creationDate": "2012-06-02T09:40:09.373", "id": "593495", "postId": "24916", "score": "1", "text": "checkout my answer [here](http://askubuntu.com/questions/133113/emulate-keypad-on-laptop/142339#142339). It doesn't worth copy and paste same answer. Perhaps it would help you.", "userDispl...
{ "accepted": true, "body": "<p><strong>Notice:</strong> As of 2013, Ubuntu and derivatives no longer use <code>xmodmap</code>, but instead use <code>xkb</code>. For more information see <a href=\"https://askubuntu.com/questions/325272/permanent-xmodmap-in-ubuntu-13-04/347382#347382?newreg=4eb097870a15490ebbe39d78412f9797\">this answer</a>. The answer below is no longer relevant for current releases.</p>\n<hr />\n<p>For remapping certain keys you need two tools. First <a href=\"http://manpages.ubuntu.com/manpages/trusty/en/man1/xev.1.html\" rel=\"noreferrer\"><strong>xev</strong></a> (command-line tool) and second <a href=\"http://manpages.ubuntu.com/manpages/trusty/en/man1/xmodmap.1.html\" rel=\"noreferrer\"><strong>xmodmap</strong></a> (also command-line tool). Both should be available in Ubuntu without extra installing them.</p>\n<ol>\n<li><p>Start terminal window and run <code>xev</code>. Now it's active and waits for you to press a key. Then press the key whose behaviour you want to change. i.e. <kbd>PgUp</kbd>.</p>\n</li>\n<li><p><code>xev</code> will output some information about the pressed key. The third line is important. It should look similar to:</p>\n<pre><code> state 0x10, keycode 110 (keysym 0xff55, Prior), same_screen YES,\n</code></pre>\n<p>in this example <code>Prior</code> is the name of the behaviour the key is assigned to at the moment, the number keycode is the internal id to recognize the key.\nNow do this with another key i.e. <kbd>PgDown</kbd> give this output</p>\n<pre><code> state 0x10, keycode 115 (keysym 0xff56, Next), same_screen YES,\n</code></pre>\n<p>Here again the interesting part for us is <code>keycode 115</code> and <code>Next</code> - the name of the behaviour.</p>\n</li>\n<li><p>now when you want to swap the two keys use <code>xmodmap</code>.</p>\n<pre><code> xmodmap -e &quot;keycode 110 = Next&quot;\n</code></pre>\n<p>This changes the key with keycode 110 on your keyboard to the action <code>Next</code>. It's pretty simple.</p>\n<p>Note that if the key you are mapping should have a different meaning when used with the <kbd>Shift</kbd> key (for example for British keyboard layouts, <kbd>Shift</kbd>+<kbd>2</kbd> gives quotation marks) then you can simply list the secondary command after the first. For example if you want the key with code 53 to map to backslash normally, but to the bar symbol when used with shift, you might do:</p>\n<pre><code> xmodmap -e &quot;keycode 53 = backslash bar&quot;\n</code></pre>\n</li>\n</ol>\n<p><strong>Additional information:</strong> The sequence of these mappings depends on the keyboard layout. It usually is <kbd>Key</kbd>, <kbd>Shift+Key</kbd>, <kbd>mode_switch+Key</kbd>, <kbd>mode_switch+Shift+Key</kbd>, <kbd>AltGr+Key</kbd>, <kbd>AltGr+Shift+Key</kbd>, but can be very different for more special layouts, like in case of the German <em>Neo 2</em> one. To skip a column use <code>NoSymbol</code>. Here is a <a href=\"http://wiki.linuxquestions.org/wiki/List_of_keysyms\" rel=\"noreferrer\">comprehensive list of all keysyms</a>.<br />\nYou can see the concrete sequence for your layout by finding it in one of the files in <code>/usr/share/X11/xkb/symbols/</code>.</p>\n<p><strong>Note: These change are for the active X session only and will be lost after reboot.\nWhen you want to save the changes permanently you have to run the following commands after the ones above:</strong></p>\n<pre><code>xmodmap -pke &gt;~/.Xmodmap\n</code></pre>\n<p>(it creates a file named <code>.Xmodmap</code> in your home directory (<code>~</code>))</p>\n<p>Then you have to create a file named <strong><code>.xinitrc</code></strong> in your home directory where you put command <code>xmodmap .Xmodmap</code> in.</p>\n<p>You can now modify <code>.Xmodmap</code> and run <code>xmodmap .Xmodmap</code> from console to see the changes immediately. The changes in <code>.Xmodmap</code> will persist.</p>\n<p>source: <a href=\"http://ubuntuforums.org/showpost.php?p=7675138&amp;postcount=2\" rel=\"noreferrer\">Ubuntu Foruns</a></p>\n<h2>Bonus stuff:</h2>\n<p>If the key you are remapping has different behavior depending on a state (\nlike how the keys in the numeric keyboard depend on NumLock) you simply have to do <strong><code>xmodmap -pm</code></strong> to get a list of modifiers and then do:</p>\n<p><code>xmodmap -e &quot;KEYCODE MODIFIER = behaviour behaviour_with_modifier&quot;</code></p>\n<p>Suppose, for example, that you want to get a period instead of a comma on the numeric keyboard (useful for most programmers), but you want to keep the &quot;delete&quot; behavior when NumLock is off.</p>\n<pre><code>xmodmap -e &quot;keycode 91 mod2 = KP_Delete period&quot;\n</code></pre>\n<p><code>mod2</code>, because <code>xmodmap -pm</code> tells us that <code>mod2</code> is <code>Num_Lock</code>, the other names are obtained by pressing the keys in <code>xev</code>.</p>\n", "commentCount": "15", "comments": [ { "creationDate": "2012-02-15T15:08:07.030", "id": "120777", "postId": "24930", "score": "6", "text": "`xev` is not able to catch `Fn` key pressings", "userDisplayName": null, "userId": "7449" }, { "creationDate": "2012-10-10T19:17:27.140", "id": "247438", "postId": "24930", "score": "3", "text": "The selected answer didn't work for remapping the Caps-lock key for me on Ubuntu 12.10.\n\nI was able to to do this by going to System Settings -> Keyboard -> Layout Settings -> Options, which has a list of keys and alternative behaviors. Worked flawlessly in Unity and terminal.", "userDisplayName": null, "userId": "95841" }, { "creationDate": "2013-06-27T17:10:48.703", "id": "396238", "postId": "24930", "score": "1", "text": "If you have multiple keyboards connected, will these tools see a difference between the same key on another keyboard?", "userDisplayName": null, "userId": "134848" }, { "creationDate": "2013-07-28T00:28:33.173", "id": "413829", "postId": "24930", "score": "0", "text": "@Jop I don't think so, since what you are changing is the response to the keycode and the keycodes of the to keyboards should overlap.", "userDisplayName": null, "userId": "118955" }, { "creationDate": "2013-12-27T03:39:55.610", "id": "507409", "postId": "24930", "score": "1", "text": "Strange, I did everything, but my keymappings still reset after restarting.", "userDisplayName": null, "userId": "45322" }, { "creationDate": "2014-02-17T14:47:41.580", "id": "545542", "postId": "24930", "score": "1", "text": "I don't think I have an `-event` flag in Ubuntu 12.04. It throws an error and doesn't mention \"event\" in `man xev`.", "userDisplayName": null, "userId": "12518" }, { "creationDate": "2014-02-17T15:05:36.970", "id": "545560", "postId": "24930", "score": "0", "text": "fwiw: after logging the results of `xev` to a file called `event.out` I filter the non-keypress events with `perl -e '$/ = \"\\n\\n\"; while(<>) { print $_ if $_ =~ \"KeyPress\"; }' event.out > keypress.event.out`.", "userDisplayName": null, "userId": "12518" }, { "creationDate": "2014-03-08T23:01:57.940", "id": "560252", "postId": "24930", "score": "1", "text": "`xmodmap -e \"KEYCODE MODIFIER = behaviour behaviour_with_modifier\"` ... Where did you get this from? It doesn't seem to work, and I can't find any other reference / docs on this syntax ...", "userDisplayName": null, "userId": "255332" }, { "creationDate": "2016-05-31T13:07:58.770", "id": "1167165", "postId": "24930", "score": "0", "text": "This answer is still relevant for Ubuntu 14.04 and works just fine, you just have to run the commands each time you login.", "userDisplayName": null, "userId": "145754" }, { "creationDate": "2016-12-12T00:11:17.490", "id": "1325304", "postId": "24930", "score": "1", "text": "1. If .xinitrc does not work, try .xsessionrc instead; \n2. Avoid setxkbmap overwriting xmodmap: http://askubuntu.com/questions/451945", "userDisplayName": null, "userId": "61233" }, { "creationDate": "2020-10-12T00:16:50.273", "id": "2175610", "postId": "24930", "score": "0", "text": "ubuntu server 18.04, without LightDM/GDM and Desktop Environment, simply `startx` and `xmodmap -e` in `.xinitrc`: `xmodmap` works.", "userDisplayName": null, "userId": "219766" }, { "creationDate": "2022-02-02T15:14:18.097", "id": "2403447", "postId": "24930", "score": "0", "text": "I am able to disable Function keys like F1 using the command xmodmap -e 'keycode 67=' . But need to disable a combination like \"Control Alt F1\", how to do that ?", "userDisplayName": null, "userId": "1112233" }, { "creationDate": "2022-08-17T18:30:09.173", "id": "2479487", "postId": "24930", "score": "0", "text": "@om-nom-nom: `Fn` is a special hardware key that is meant to be handled by low-level software like firmware, and work even if there is no operating system running at all or it isn’t even officially on. Remapping it can be done, but it required changing said firmware. Which hopefully will be open source if the owner was wise. :)", "userDisplayName": "anon", "userId": null }, { "creationDate": "2022-08-17T18:31:52.970", "id": "2479489", "postId": "24930", "score": "1", "text": "@Subhajit: If keycode 67 isn’t mapped to F1 anymore, there is no way to cause a Control-Alt-F1 keypress anymore either, nor any oney combo with F1 in it, as there is no F1 key to press, unless there is another keyboard or another keycode is mapped to F1.", "userDisplayName": "anon", "userId": null }, { "creationDate": "2023-01-07T12:55:19.190", "id": "2529913", "postId": "24930", "score": "0", "text": "If you want to remap your keyboard keys or mouse buttons to certain keys, use \"Input Remapper\" by sezanzeb. It's VERY simple, it has a GUI, and it just WORKS. I just have set a certain shortcut to simulate a keyboard key, works well.", "userDisplayName": null, "userId": "488029" } ], "communityOwnedDate": "2014-01-18T04:55:34.523", "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-02-05T16:00:08.203", "id": "24930", "lastActivityDate": "2022-08-17T18:27:19.707", "lastEditDate": "2022-08-17T18:27:19.707", "lastEditorDisplayName": "anon", "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7155", "parentId": "24916", "postTypeId": "2", "score": "291" }
[ { "accepted": null, "body": "<p>I've just had an afterthought.. I think you may mean something entirely different by \"remap\".. but I'll leave my answer as it is... (I don't know how to re-assign one key to behave as another)</p>\n\n<p><strong>UPDATE</strong>: my 'afterthought' has been confirmed; ( I've ...
null
null
null
null
null
24919
1
null
2011-02-05T14:41:34.993
2
3451
<p>My brother has a brand new Acer Desktop with Windows 7. I have done many installs (40+) of Ubuntu starting with 8.10, and have never run into this. I've spent three hours trying to do a dual boot install of 10.10. </p> <p>When you get to the place where you normally would choose to install as a dual boot or overwrite the existing information on the hard drive, that block is just blank. Nothing. No choices even to do a manual partition setup. If you try to go on you get the message "No root file system is defined. Please correct this from the partitioning menu." but there is nothing in the partitioning menu. </p> <p>I tried a good 10.04 disc also. Same thing happens with it. I ran a gparted live cd, and it shows the hard drive as sda with 3 partitions on the original. sda1 is a small partition called PQService. sda2 is another small partition called System Reserved, and GParted says it is the boot partition. sda3 is the main partation with the operating system (Windows 7) and all of the empty space. There is a little unallocated space at the very beginning and very end of the hard drive. </p> <p>If I go to places in the Live CD, it shows a 640 gb hard disk called Acer, but it also shows a 640 gb hard disk called system reserved. They are the same disk. There is just one hard drive. If you click properties in the System Reserved 640 gb, it shows all information as unknown. I had to change the boot order in the bios in order to run the live cd. The hard drive instead of being listed as such is listed as Raid:Raid Ready. Something the way this computer is set up is preventing Ubuntu from being able to identify the hard drive partitions at all to do an install, even if you were not doing a dual boot and just wanted to overwrite Windows. </p> <p>Is this a bug that needs reported? This is a major problem for me and my brother, but also for Ubuntu if new users want to Ubuntu and find they cannot install it. </p>
10257
186134
2014-08-04T18:28:26.903
2014-08-04T18:28:26.903
Impossible to install Ubuntu 10.10 dual boot with Windows 7 on new Acer desktop computer
[ "system-installation" ]
3
8
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T15:01:24.567", "id": "27203", "postId": "24919", "score": "0", "text": "Did you try freeing up more space using windows 7 utility to resize partitions. It is at Settings -> Control Panel -> Administrative Tools -> Computer Management -> Storage -> Disk Management -...
null
[ { "accepted": null, "body": "<p>I ran into this problem two days ago, and before that just a few days too :D! The solution is suprisingly simple. First, ensure that windows is shut down cleanly. Start windows, right click on my computer in the start menu, click manage, and use disk management to create a ne...
null
null
null
null
null
24921
1
24981
2011-02-05T15:21:05.817
4
2745
<p>From time to time Deluge goes to 100% CPU with no apparent reason, (no active torrents). If I restart it the CPU goes to around 0%</p> <p>Has anyone else encountered that?</p> <hr> <p><strong>Edit:</strong></p> <p>Lol, finally solved the bug (after some investigating). In short it appears it's caused by Deluge using twisted.internet.run() instead of gtk.main() for it's main loop, and then twisted.internet.run() <a href="https://bugzilla.gnome.org/show_bug.cgi?id=481569" rel="nofollow">calling gobject.threads_init()</a> internally, which sets a SIGCHLD handler, and ultimately it boils down to a <a href="https://bugs.launchpad.net/ubuntu/+source/pygtk/+bug/708847" rel="nofollow">bug in PyGtk</a> that is resoved by <a href="http://git.gnome.org/browse/pygtk/commit/?id=4cbd3c031289775f365c247f949d91facac4ba82" rel="nofollow">this patch</a>:</p> <pre><code>diff --git a/gtk/gtk.override b/gtk/gtk.override index 75018f4..94309a6 100644 --- a/gtk/gtk.override +++ b/gtk/gtk.override @@ -1151,9 +1151,10 @@ pygtk_main_watch_check(GSource *source) #ifdef HAVE_PYSIGNAL_SETWAKEUPFD PySignalWatchSource *real_source = (PySignalWatchSource *)source; GPollFD *poll_fd = &amp;real_source-&gt;fd; - int data_size = 0; + unsigned char dummy; + gssize ret; if (poll_fd-&gt;revents &amp; G_IO_IN) - data_size = read(poll_fd-&gt;fd, 0, 1); + ret = read(poll_fd-&gt;fd, &amp;dummy, 1); #endif state = pyg_gil_state_ensure(); </code></pre> <p>Now Deluge works fine, and I understand that this patch fixes a similar bug in other programs that use PyGtk as well.</p>
10263
10616
2011-04-17T19:00:39.163
2011-04-24T17:10:48.747
Deluge 100% CPU
[ "cpu", "deluge" ]
2
7
CC BY-SA 3.0
[ { "creationDate": "2011-02-05T15:52:26.137", "id": "27215", "postId": "24921", "score": "3", "text": "Bug - https://bugs.launchpad.net/ubuntu/+source/deluge/+bug/660365", "userDisplayName": null, "userId": "7035" }, { "creationDate": "2011-02-06T00:20:19.887", "id": "27280", ...
{ "accepted": true, "body": "<p>I believe this is a bug that the Deluge developers have blamed on a GTK+ control they use for displaying files. In short the workaround is to just not use the file pane and not to use the \"open folder\" context menu option.</p>\n\n<p><code>deluge-web</code> has a separate bug that also causes high CPU but this is officially fixed in the latest version available from <a href=\"http://deluge-torrent.org\" rel=\"nofollow\">their website</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-06T00:04:31.363", "id": "24981", "lastActivityDate": "2011-04-10T15:19:18.913", "lastEditDate": "2011-04-10T15:19:18.913", "lastEditorDisplayName": null, "lastEditorUserId": "10263", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "24921", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I believe this is a bug that the Deluge developers have blamed on a GTK+ control they use for displaying files. In short the workaround is to just not use the file pane and not to use the \"open folder\" context menu option.</p>\n\n<p><code>deluge-web</code> has a separate bu...
null
0
null
null
null
24925
1
null
2011-02-05T15:34:22.420
2
103
<p>I'd like to do thorough backups, but want to avoid backing up files which can be replaced via apt.</p> <p>Does this effectively just consist of omitting <code>/usr</code>, with the exception of <code>/usr/local</code>, as well as <code>/lib*</code>, from the backup?</p> <p>Do some backup apps provide this functionality?</p>
3865
null
null
2011-02-05T18:00:19.330
Avoiding backing up system-managed files
[ "apt", "backup" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Just back up <code>/home</code> (user files and settings) and <code>/etc</code> (system settings) - everything else can restored by reinstalling Ubuntu and installing software from the repositories.</p>\n\n<p>If you've manually edited any other locations (this includes instal...
null
null
null
null
null
24935
1
24941
2011-02-05T16:36:16.253
4
3620
<p>I'm trying to use <code>wget</code> to automatically download a wallpaper. Here is the command:</p> <p><code>wget <a href="http://static.die.net/earth/mercator/1600.jpg" rel="nofollow">http://static.die.net/earth/mercator/1600.jpg</a></code></p> <p>However, if I try to open the resulting picture, it seems to say it has a bad magic number. By running <code>file 1600.jpg</code>, I get <code>1600.jpg: GIF image data, version 89a, 1 x 1</code>. If I open it as a GIF it doesn't work either. It's only 37 bytes too.</p> <p>It works perfectly fine if I view or download it through Firefox.</p> <p>Any ideas?</p>
10058
527764
2020-08-10T06:48:53.223
2020-08-10T06:48:53.223
wget downloads corrupt JPEG file
[ "wget" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I think it's some kind of protection against direct downloads, nothing wrong with <code>wget</code> (the server is sending you a transparent 1x1 GIF image).</p>\n\n<p>You can circumvent this by using <code>wget</code> with the <code>-U</code> flag, adding the user agent string of your browser, eg.:</p>\n\n<p><code>wget -U \"Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/534.17 (KHTML, like Gecko) Ubuntu/11.04 Chromium/11.0.654.0 Chrome/11.0.654.0 Safari/534.17\" <a href=\"http://static.die.net/earth/mercator/1600.jpg\">http://static.die.net/earth/mercator/1600.jpg</a></code></p>\n\n<p><strong>BUT</strong>: You should first ask the owner of that website if it's ok to download the content this way. There has to be a reason why the usual <code>wget</code> approach is blocked (maybe it's intentional, maybe it's just misconfiguration).</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-05T17:10:18.147", "id": "27223", "postId": "24941", "score": "2", "text": "I see. But why isn't Firefox affected? And how would I get around that?", "userDisplayName": null, "userId": "10058" }, { "creationDate": "2011-02-05T17:25:58.563", "id": "27225", "postId": "24941", "score": "1", "text": "@alecRN: See update.", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T17:07:57.160", "id": "24941", "lastActivityDate": "2011-02-05T17:25:45.333", "lastEditDate": "2011-02-05T17:25:45.333", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24935", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>I think it's some kind of protection against direct downloads, nothing wrong with <code>wget</code> (the server is sending you a transparent 1x1 GIF image).</p>\n\n<p>You can circumvent this by using <code>wget</code> with the <code>-U</code> flag, adding the user agent strin...
null
null
null
null
null
24937
1
24944
2011-02-05T16:51:36.677
63
124983
<p>I just finished installing <a href="http://www.latex-project.org/">LaTeX</a> for my company's Ubuntu server that we all SSH into to use. At the end of the install it says this:</p> <pre><code>Add /usr/local/texlive/2010/texmf/doc/man to MANPATH, if not dynamically determined. Add /usr/local/texlive/2010/texmf/doc/info to INFOPATH. Most importantly, add /usr/local/texlive/2010/bin/x86_64-linux to your PATH for current and future sessions. </code></pre> <p>How do I do this so that these variables are set for all users on the system? (And yes, I have sudo permissions).</p>
10053
158442
2015-06-18T21:41:49.547
2017-02-10T07:58:48.883
How do I set PATH variables for all users on a server?
[ "software-installation", "environment-variables", "latex", "manpage" ]
2
10
CC BY-SA 3.0
[ { "creationDate": "2011-02-05T19:27:47.487", "id": "27235", "postId": "24937", "score": "0", "text": "@geirha's answer (with Rob's comment on MANPATH) resolves this except for the INFOPATH variable. Though I imagine it is not often used by users(?), does anyone know the correct location to set ...
{ "accepted": true, "body": "<p>You add those to <code>/etc/environment</code>.</p>\n\n<p>It likely already has a line for <code>PATH</code>, so you just append <code>:/usr/local/texlive/2010/bin/x86_64-linux</code> to the end of that. Then add two new lines for MANPATH and INFOPATH.</p>\n\n<p>See <a href=\"https://help.ubuntu.com/community/EnvironmentVariables\">https://help.ubuntu.com/community/EnvironmentVariables</a>.</p>\n\n<p>After editing <code>/etc/environment</code>, log out and back in, and check that e.g. <code>echo \"$MANPATH\"</code> outputs the value you added.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-05T18:09:04.800", "id": "27229", "postId": "24944", "score": "0", "text": "In the end I also had to edit /etc/manpath.config. Thanks.", "userDisplayName": null, "userId": "10053" }, { "creationDate": "2011-02-05T18:29:16.537", "id": "27230", "postId": "24944", "score": "2", "text": "I've deleted my answer, as this appears to be a better choice. According to https://help.ubuntu.com/community/EnvironmentVariablesSystem-wide `/etc/environment` is the place for \"Environment variable settings that affect the system as a whole (rather then just a particular user) [...]\" \n`/etc/profile` and `/etc/bash.bashrc` are listed as 'Not recommended'", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2019-04-09T08:49:58.057", "id": "1876326", "postId": "24944", "score": "1", "text": "Annoyingly doesn't work for root!", "userDisplayName": null, "userId": "629860" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T17:56:40.957", "id": "24944", "lastActivityDate": "2011-02-05T17:56:40.957", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9016", "parentId": "24937", "postTypeId": "2", "score": "69" }
[ { "accepted": null, "body": "<p>Add these default PATH to <code>/etc/profile</code>. It will work for bash and sh. <strong>Bash</strong> is default in Ubuntu.</p>\n\n<pre><code>PATH=$PATH:&lt;new path you need to add&gt;\n</code></pre>\n\n<p><code>echo $SHELL</code> can be used to determine the shell of cur...
null
null
null
null
null
24940
1
null
2011-02-05T17:06:30.040
0
1501
<p>I am a newer to Ubuntu. In my network manager the link Enable Mobile Broadband found unchecked.I can not enable it.So I can not connect my BSNL cdma 1x USB modem successfully.</p>
10280
null
null
2011-06-08T23:59:22.270
Enable Mobile broadband found unchecked
[ "broadband" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-06T06:50:30.187", "id": "27302", "postId": "24940", "score": "0", "text": "can you give a screenshot.", "userDisplayName": null, "userId": "5149" }, { "creationDate": "2013-08-03T08:11:42.723", "id": "417487", "postId": "24940", "score": "0"...
null
[ { "accepted": null, "body": "<p>The majority of the ubuntu distributions (even plain ubuntu), can handle Mobile Broadband modems with no problems. But in my experience with some modems (ZTE and Huawei) the availability to use the Broadband modem is based on the behaviour of the modem itself, which can be ha...
null
null
null
null
null
24945
1
24951
2011-02-05T18:02:15.613
2
15949
<p>I used GParted to convert a primary partition to extended one after copying the data to another partition. After having the extended partition I moved the data back. To my utter shock after a restart I found out that the new extended partition did convert into "unallocated space". I tried installing <code>testdisk</code>. Testdisk could identify the partition as a primary partition and not the newly created extended partition. So what should I do now? I badly want the data back.</p>
4157
78872
2012-09-25T18:10:12.940
2012-09-25T18:10:12.940
Unallocated space with important data
[ "gparted", "data-recovery", "testdisk" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's rather difficult to solve such problems via the internet, and it certainly doesn't fit the <em>question -> answer</em> nature of askubuntu.com.</p>\n\n<p>Anyways:</p>\n\n<ul>\n<li><p>Whenever such things happen, immediately shutdown the system and don't write (or install) anything to it!</p></li>\n<li><p>Start a live CD, download the 6.12-WIP version of <a href=\"http://www.cgsecurity.org/wiki/TestDisk_Download\" rel=\"noreferrer\">TestDisk</a> (you just need to unpack it, then start it with <code>sudo ./testdisk</code>), let it search for partitions, examine the contents of the found partitions, and if you are <strong>100%</strong> sure that you've found the right partition, restore it.</p></li>\n<li><p>You can find a couple of detailed examples in the <a href=\"http://www.cgsecurity.org/wiki/TestDisk#Documentation\" rel=\"noreferrer\">TestDisk wiki</a> (e.g., <a href=\"http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step\" rel=\"noreferrer\">TestDisk step-by-step</a>).</p></li>\n</ul>\n\n<p><strong>If you don't feel comfortable doing it yourself</strong>, ask someone that has experience with this tool to do it for you. Any mistake can lead to permanent loss of data!</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T18:55:28.833", "id": "24951", "lastActivityDate": "2011-02-05T18:55:28.833", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "24945", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Unless someone is willing to spend <em>a lot</em> of time explaining the process in detail, you're best bet will be researching this yourself online. <a href=\"http://www.lifehacker.com.au/2010/04/recover-data-like-a-forensics-expert-using-an-ubuntu-live-cd/\" rel=\"nofollow...
null
null
null
null
null
24946
1
123763
2011-02-05T18:05:30.197
120
65829
<p>I would have expected <strong>System ▸ Administration ▸ Login Screen ▸ Play login sound</strong> to control this, but unchecking it does not prevent the drum beat sound from playing.</p>
1859
44179
2015-03-03T01:29:14.797
2022-10-24T20:12:47.623
How do I disable the drum beat sound on the login screen?
[ "lightdm", "login-screen" ]
15
2
CC BY-SA 3.0
[ { "creationDate": "2015-06-08T16:00:07.100", "id": "903679", "postId": "24946", "score": "3", "text": "[Sound Effects: Windows versus Ubuntu](http://neartalk.com/ss/2015-06-08_004_1294x554.png) - Ubuntu needs work in this area (even today).", "userDisplayName": null, "userId": "256054" ...
{ "accepted": true, "body": "<p>The start-up sound can be disabled editing the Unity Greeter configuration. Running the following from a terminal will do this:</p>\n\n<pre><code>echo -e '[com.canonical.unity-greeter]\\nplay-ready-sound = false' \\\n | sudo tee -a /usr/share/glib-2.0/schemas/50_unity-greeter.gschema.override\nsudo glib-compile-schemas /usr/share/glib-2.0/schemas/\n</code></pre>\n\n<p>If you are running Ubuntu 12.04 LTS make sure you have updates installed as this feature was added in an update.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2012-04-21T03:26:16.453", "id": "147916", "postId": "123763", "score": "13", "text": "There is an option in gsettings for this, `com.canonical.unity-greeter play-ready-sound`but currently isn't working. One simple thing that does work is when on the greeter screen just turn the volume off in the sound indicator. The setting is persistent", "userDisplayName": null, "userId": "27773" }, { "creationDate": "2012-04-21T21:53:11.703", "id": "148169", "postId": "123763", "score": "0", "text": "@doug, thanks. The second and third sentence of your comment don't pertain this answer. I think they should go as separate answer to my question to be more visible.", "userDisplayName": null, "userId": "15242" }, { "creationDate": "2013-06-19T18:28:41.927", "id": "391258", "postId": "123763", "score": "2", "text": "I think the answer for changing the sound permanently is currently in moving or removing this file: /usr/share/sounds/ubuntu/stereo/system-ready.ogg.\nSee from this thread --> http://ubuntuforums.org/showthread.php?t=1955266&page=4&p=11876130", "userDisplayName": null, "userId": "2383" }, { "creationDate": "2013-06-19T20:30:04.980", "id": "391333", "postId": "123763", "score": "3", "text": "@e.m.fields There's no need to resort to such a destructive hack when we have a [built-in setting](https://launchpadlibrarian.net/97740962/unity-greeter-system-ready-sound.patch) in support of this. [Changing that setting](https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/949782/comments/6) is the cleanest solution.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2013-08-29T07:38:27.360", "id": "431934", "postId": "123763", "score": "2", "text": "aendruk, I'm in favor of nondestructive solutions when they're available, but up to this point seems to have been none. What is this file? Is this a patch to an existing system application?", "userDisplayName": null, "userId": "2383" }, { "creationDate": "2014-03-29T04:47:56.720", "id": "575541", "postId": "123763", "score": "0", "text": "@doug, `com.canonical.unity-greeter play-ready-sound false` is working, __but you have to set it as user *ligthdm*.__ See answer from @izx", "userDisplayName": null, "userId": "22757" } ], "communityOwnedDate": "2013-06-22T12:47:17.680", "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-04-20T15:44:45.033", "id": "123763", "lastActivityDate": "2016-04-25T21:34:06.297", "lastEditDate": "2016-04-25T21:34:06.297", "lastEditorDisplayName": null, "lastEditorUserId": "23373", "ownerDisplayName": null, "ownerUserId": "2639", "parentId": "24946", "postTypeId": "2", "score": "61" }
[ { "accepted": null, "body": "<h1>For Ubuntu 12.04+</h1>\n<h3>LightDM Way (works in Ubuntu Unity 22.10)</h3>\n<p>Also known as the FluteFlute Slap, the LightDM Way involves having to logout and on the LightDM Login Screen you can change the volume or even mute the sound.</p>\n<p>In the Login Greeter you can ...
null
null
null
null
null
24952
1
24960
2011-02-05T19:18:22.463
28
216818
<p>I'm still a little new to Ubuntu and was wondering how I can copy files, in this case Aptana Studio, to /usr/local/ without being denied. </p> <p>Is there a way to do it in terminal? Or a way to allow myself permission? I should add that I am using 10.10 Desktop edition, not server.</p>
10252
235
2012-07-10T23:53:45.747
2018-05-11T11:56:16.513
How to copy files into /usr/local/? (permission denied)
[ "permissions", "clipboard" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T19:41:29.543", "id": "27239", "postId": "24952", "score": "0", "text": "Why do you want that? You're most likely looking for `/opt` or you want to install it in your home directory. `/usr` is managed by `apt`, so what ever you copy in there can change without notifi...
{ "accepted": true, "body": "<p>There are a couple of different ways</p>\n\n<ol>\n<li><p>Open Nautilus with sudo by typing <code>sudo -H nautilus</code> in terminal then copy the files as you would normally. Warning: I would close nautilus straight after so you don't accidently use it for moving normal files. </p></li>\n<li><p>Open terminal and type <code>sudo cp file1 /usr/local/</code> obviously replacing <code>file1</code> with <code>aptana</code> </p></li>\n<li><p>Add open as admin option to nautilus and open the local folder by right clicking and selecting open as administrator.</p></li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-05T22:33:02.020", "id": "27271", "postId": "24960", "score": "0", "text": "Thanks for the advise. I think it is too. I just am having a tough time getting it installed.", "userDisplayName": null, "userId": "10252" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-05T19:48:15.400", "id": "24960", "lastActivityDate": "2017-09-16T20:27:01.323", "lastEditDate": "2017-09-16T20:27:01.323", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "6450", "parentId": "24952", "postTypeId": "2", "score": "22" }
[ { "accepted": null, "body": "<p><code>/usr/local</code> is a directory belonging to the user <code>root</code>, so you need to use <code>sudo</code> to achieve your end:</p>\n\n<pre><code>sudo mkdir /usr/local/mydir\nsudo cp file.txt /usr/local/mydir\n</code></pre>\n\n<p>for example.</p>\n", "commentCou...
null
null
null
null
null
24953
1
24955
2011-02-05T19:25:17.747
34
34086
<p>I am using cygwin to find a file on the cygdrive.</p> <p>However I need to suppress the permission denied messages (otherwise the results get hidden in the error messages). The following command works:</p> <pre><code>find -name 'myfile.*' |&amp; grep -v "Permission denied" </code></pre> <p>I don't understand why the ampersand needs to be put into this command, would have expected this to work but it doesn't. </p> <pre><code>find -name 'myfile.*' | grep -v "Permission denied" </code></pre> <p>Please explain the meaning of the ampersand.</p>
10281
349837
2019-03-04T18:07:40.660
2019-03-04T18:07:40.660
Using grep with pipe and ampersand to filter errors from find
[ "bash", "command-line", "find", "grep" ]
3
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>In Unix-like systems, there are two output paths that if left unmodified will send output to your screen. Standard error (or stderr) is the one that captures most failures and error conditions.</p>\n\n<p>To pass the permission denied message in the stderr to the same output stream as \"regular output\" you must combine the two. In your example, in order for your <code>grep -v</code> to properly operate on it, you combine stdout (standard output) and stderr with the arcane syntax you see.</p>\n\n<p>From <a href=\"https://www.gnu.org/software/bash/manual/\" rel=\"noreferrer\">GNU Bash manual</a> section <a href=\"https://www.gnu.org/software/bash/manual/html_node/Pipelines.html\" rel=\"noreferrer\">3.2.2 Pipelines</a>:</p>\n\n<blockquote>\n <p>If ‘<code>|&amp;</code>’ is used, <em>command1</em>’s standard error, in addition to its\n standard output, is connected to <em>command2</em>’s standard input through\n the pipe; it is shorthand for <code>2&gt;&amp;1 |</code>. This implicit redirection of\n the standard error to the standard output is performed after any\n redirections specified by the command.</p>\n</blockquote>\n\n<p>Also, as geirha points out, if you want to just get rid of stderr output, you would want to do something like</p>\n\n<pre><code>find -name 'myfile.*' 2&gt; /dev/null\n</code></pre>\n\n<p>or perhaps</p>\n\n<pre><code>find -name 'myfile.*' 2&gt; /tmp/errorlog\n</code></pre>\n\n<p>And note that if you have strings of commands, such as a <code>find</code> passing its output to <code>xargs</code> you would need to put the entire pipeline of commands in parentheses to capture the output from all components of the command. E.g.,</p>\n\n<pre><code>(find | egrep ^[RS].[0-9]+/.svg] | xargs head -1 ) 2&gt; /dev/null\n</code></pre>\n\n<p>If you left out the parentheses, and did this instead --</p>\n\n<pre><code>find | egrep ^[RS].[0-9]+/.svg] | xargs head -1 2&gt; /dev/null\n</code></pre>\n\n<p>you would still see permission denied errors from the find or egrep, but stderr would be redirected for xargs.</p>\n\n<p>As you've seen, you would likely throw away the stderr only after viewing its contents during a test run.</p>\n\n<p>Note that with GNU <code>find</code> and as far as I can tell, any POSIX-compliant <code>find</code>, the <code>-print</code> option is implicit. You can still supply it explicitly if you like.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2016-03-22T09:08:53.853", "id": "1116093", "postId": "24955", "score": "1", "text": "Seems to be only bash4+ http://wiki.bash-hackers.org/bash4#redirection", "userDisplayName": null, "userId": "448242" }, { "creationDate": "2017-01-10T19:29:23.253", "id": "1349012", "postId": "24955", "score": "1", "text": "@LukeExton Yes. In other shells, `2>&1 |` may be used in place of `|&` (i.e., one can explicitly redirect stderr to stdout and then pipe that to the next command in the pipeline).", "userDisplayName": null, "userId": "22949" }, { "creationDate": "2019-08-14T12:57:54.253", "id": "1943663", "postId": "24955", "score": "0", "text": "`2> >( grep filter )` is also handy", "userDisplayName": null, "userId": "384263" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-05T19:34:41.093", "id": "24955", "lastActivityDate": "2017-01-10T20:00:28.097", "lastEditDate": "2017-01-10T20:00:28.097", "lastEditorDisplayName": null, "lastEditorUserId": "448242", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "24953", "postTypeId": "2", "score": "41" }
[ { "accepted": true, "body": "<p>In Unix-like systems, there are two output paths that if left unmodified will send output to your screen. Standard error (or stderr) is the one that captures most failures and error conditions.</p>\n\n<p>To pass the permission denied message in the stderr to the same output s...
null
null
null
null
null
24957
1
24961
2011-02-05T19:37:53.727
1
6143
<p>I would like to remove the GNOME panel completely. I spend most of my time in a (<code>tmux</code>) terminal or a browser. Synapse and a small hidden AWN panel fit the rest of my needs.</p> <p>I have tried all recommended solutions including this (found it a few places):</p> <ul> <li><a href="https://askubuntu.com/questions/6147/how-to-delete-gnome-panel">How to delete Gnome Panel?</a></li> </ul> <p>However it always comes back at log in. I have tried changing the required components > panel to avant-whatever as well as to empty. I have tried setting them both as default (right click set as default).</p> <p>Right now I just have the last panel set to transparent and auto hide, but it still tends to be annoying.</p> <p>What do I need to do to get rid of this damn thing?</p> <p><strong>Clarification:</strong></p> <p>Using gconf-editor, gconftool2, and/or Ubuntu tweak to set <code>/desktop/gnome/session/required_component/panel</code> to <code>avant-window-navigator</code> is <strong>not working</strong>. The setting stays when I reboot, but the empty gnome panel sticks around.</p>
522
-1
2017-04-13T12:23:07.557
2012-10-06T00:30:58.490
How to delete/disable GNOME panels? (Existing solutions not working.)
[ "10.10", "gnome-panel", "gconf" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>There's an explanation of how to replace gnome-panel with awn on the <a href=\"http://wiki.awn-project.org/FAQ#How_do_I_set_up_GNOME_session_to_start_Awn_instead_of_GNOME_Panel.3F\" rel=\"nofollow\">AWN FAQ</a></p>\n\n<blockquote>\n <p>If you have \"Configuration Editor\"\n (AKA gconf-editor) installed, run it\n and navigate to the key folder\n /desktop/gnome/session/required_components.\n Double-click on the key panel in the\n right-hand pane to edit it, and change\n the value to \"avant-window-navigator\"\n followed by the \"OK\" button.\n Alternatively, you can run the\n following command from the terminal:</p>\n</blockquote>\n\n<pre><code>gconftool-2 --type=string --set /desktop/gnome/session/required_components/panel 'avant-window-navigator'\n</code></pre>\n\n<p>I did this on my laptop the other day and it worked fine. As a side note, to bring gnome-panel back:</p>\n\n<pre><code>gconftool-2 --type=string --set /desktop/gnome/session/required_components/panel 'gnome-panel'\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-06T04:51:35.117", "id": "27294", "postId": "24961", "score": "0", "text": "This is the way everybody recommends. I have used this method perfectly on my laptop. However my desktop has one panel that defies removal.", "userDisplayName": null, "userId": "522" }, { "creationDate": "2011-02-06T13:16:38.690", "id": "27330", "postId": "24961", "score": "0", "text": "@alan-peabody That's strange. That means that gnome-panel must still be running. What happens when you run ` ps -A | grep panel` in the console?\n\nI haven't tried this, but maybe you could find and remove the panel from `~/.gnome/apps/panel/toplevels` (I'd probably back that directory up first before messing with it). Also, is it possible that that extra panel is the wingpanel app or something? I know when I installed it, it looked like some misc. empty panel.", "userDisplayName": null, "userId": "6156" }, { "creationDate": "2011-02-08T00:10:49.640", "id": "27581", "postId": "24961", "score": "0", "text": "`ps -A` lists: `2193 ? 00:00:00 gnome-panel`\n\nThe directory you mentioned does not exist. I do have a `~/.gnome2/panel2.d/` directory.\n\nI have not installed wingpanel, although the original mock up certainly was appealing.", "userDisplayName": null, "userId": "522" }, { "creationDate": "2011-02-08T00:19:29.663", "id": "27583", "postId": "24961", "score": "0", "text": "Actually I DID have wingpanel installed (dunno what late night I did that...). Removing it solved the problem. Thanks!", "userDisplayName": null, "userId": "522" }, { "creationDate": "2011-02-08T00:44:44.840", "id": "27585", "postId": "24961", "score": "0", "text": "@alan-peabody You might still want to find out why gnome-panel is running if you've explicitly told gnome not to start it. Otherwise I'm glad you got it working!", "userDisplayName": null, "userId": "6156" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T20:17:44.783", "id": "24961", "lastActivityDate": "2011-02-05T20:17:44.783", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6156", "parentId": "24957", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>There's an explanation of how to replace gnome-panel with awn on the <a href=\"http://wiki.awn-project.org/FAQ#How_do_I_set_up_GNOME_session_to_start_Awn_instead_of_GNOME_Panel.3F\" rel=\"nofollow\">AWN FAQ</a></p>\n\n<blockquote>\n <p>If you have \"Configuration Editor\"\n ...
null
null
null
null
null
24964
1
24970
2011-02-05T20:48:36.863
10
2164
<p>I would like to use install Ubuntu for a brother, but he needs MS Word and MS Power Point for work.</p> <p>Open alternatives apart, how well does MS Word 2007 and MS Power Point 2007 work in Wine? </p>
5304
169736
2014-05-09T15:50:16.500
2017-03-14T17:03:08.953
How well does MS Word 2007 and MS Power Point 2007 work in Wine?
[ "wine", "microsoft-office" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-06T05:05:50.080", "id": "27295", "postId": "24964", "score": "0", "text": "you should try libreoffice it has very good compatibilty with both doc,ppt and docx,pptx. also softmaker office (40$) is linux native and has full compatibility with msoffice.", "userDisplay...
{ "accepted": true, "body": "<h1><a href=\"http://packages.ubuntu.com/playonlinux\" rel=\"noreferrer\">playonlinux</a> <a href=\"http://apt.ubuntu.com/p/playonlinux\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install playonlinux\" /></a></h1>\n<p>is a piece of software which allows you to easily install and use numerous games and softwares designed to run with Microsoft®'s Windows®.</p>\n<p>For Ubuntu, PlayOnLinux is available in the universe repository. If you have this repository enables, you can install it by typing the command:</p>\n<pre><code>sudo apt-get install playonlinux\n</code></pre>\n<p>After playonlinux is installed, do the following</p>\n<ol>\n<li><p>Open Playonlinux</p>\n<p>Go to your menu and open <strong>Application--&gt;Games--&gt;PlayOnlinux</strong></p>\n</li>\n</ol>\n<p><img src=\"https://i.stack.imgur.com/kSy3G.png\" alt=\"enter image description here\" /></p>\n<ol start=\"2\">\n<li>Click <strong>Next</strong></li>\n<li>Select from where you will install Microsoft office 2007</li>\n<li>enter you Microsoft Office 2007 KEY</li>\n<li>Accept the term and conditions then click continue</li>\n<li>Click <strong>install now</strong> to start the installation of Microsoft Office 2007</li>\n<li>Create Menu and Desktop shortcuts</li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-05T21:32:09.397", "id": "24970", "lastActivityDate": "2017-03-14T16:57:24.237", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3550", "parentId": "24964", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<h1><a href=\"http://packages.ubuntu.com/playonlinux\" rel=\"noreferrer\">playonlinux</a> <a href=\"http://apt.ubuntu.com/p/playonlinux\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install playonlinux\" /></a></h1>\n<p>is a piece of software which al...
null
null
2014-05-10T07:48:59.983
null
null
24969
1
25000
2011-02-05T21:23:48.917
2
5563
<p>I downloaded the taglist <a href="http://vim.sourceforge.net/scripts/script.php?script_id=273" rel="nofollow">plugin</a> and extracted it in my .vim folder.</p> <p>I also installed <strong>exuberant-ctags</strong> from Synaptic.</p> <p>I did <code>:TlistToggle</code> but it gives me the following message:</p> <pre><code>/bin/bash: D:ctags58ctags.exe: command not found </code></pre> <p>Am I missing something? Any suggestions?</p>
8583
106495
2013-03-02T11:00:09.490
2021-04-25T10:44:30.910
How to install the taglist plugin in Vim?
[ "vim", "vim-plugin" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2011-02-05T22:37:50.350", "id": "27273", "postId": "24969", "score": "0", "text": "I ask because this can impact the answer, was `.cim` supposed to be `.vim` and *exuberant-tags* *exuberant-ctags*?", "userDisplayName": null, "userId": "18110" }, { "creationDate...
{ "accepted": true, "body": "<p>Is the ctags command available in your path?</p>\n\n<p>ctags --help should produce the help text.</p>\n\n<p>If it is not you will need to add it to your path. Why it is trying to use a windows exe is beyond me. </p>\n\n<p>Possibly something weird in a vimrc you got from a windows user or something?</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-06T14:07:33.817", "id": "27338", "postId": "25000", "score": "1", "text": "i had something like: let...path...ctags.exe something in my .vimrc.", "userDisplayName": null, "userId": "8583" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-06T05:40:10.193", "id": "25000", "lastActivityDate": "2011-02-08T03:27:20.163", "lastEditDate": "2011-02-08T03:27:20.163", "lastEditorDisplayName": null, "lastEditorUserId": "522", "ownerDisplayName": null, "ownerUserId": "522", "parentId": "24969", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Is the ctags command available in your path?</p>\n\n<p>ctags --help should produce the help text.</p>\n\n<p>If it is not you will need to add it to your path. Why it is trying to use a windows exe is beyond me. </p>\n\n<p>Possibly something weird in a vimrc you got from a win...
null
null
null
null
null
24972
1
null
2011-02-05T22:04:03.270
3
4600
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/21868/what-is-kernel-configuration">What is kernel configuration?</a> </p> </blockquote> <p>I'm trying to save the battery power. For that i'm using powertop and one suggestion is "Enable the CONFIG_PM_ADVANCED_DEBUG kernel configuration option.". I have no idea how to make this.</p>
5306
-1
2017-04-13T12:24:27.937
2013-06-20T23:33:07.820
How to enable the CONFIG_PM_ADVANCED_DEBUG kernel configuration option
[ "power-management", "battery", "powertop" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Duplicate question: <a href=\"https://askubuntu.com/questions/21868/what-is-kernel-configuration\">What is kernel configuration?</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": ...
null
null
2011-02-06T02:06:20.110
null
null
24977
1
24980
2011-02-05T22:58:28.150
24
10916
<p>I'm a bit confused about this one. Does Ubuntu use two different window managers at the same time?</p>
6082
3037
2011-02-05T23:17:19.413
2011-02-06T00:52:50.520
Why does Ubuntu use two window managers: Compiz and Metacity?
[ "compiz", "metacity" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>They're not used at the same time but I can see the cause of the confusion.</p>\n<ul>\n<li>Metacity handles lightweight composting and also does window decorations.</li>\n<li>Compiz only does the window management garb and hands off window decoration to <code>gtk-window-decorator</code> or <code>emerald</code>. By default <code>gtk-window-decorator</code> is used to emulate the current Metacity theme but it also has its own cairo-based themes.</li>\n</ul>\n<p>So while they might look similar in some aspects, apart from the actual theme files used, they're very different underlying code.</p>\n<h3>But why have both at all?</h3>\n<p>Because Compiz needs better hardware to run. Lots of people still don't have hardware that supports DRI, so Ubuntu includes both to give everybody a desktop.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-10-07T11:17:30.990", "id": "992102", "postId": "24980", "score": "0", "text": "It's not just a matter of hardware. I have encountered several cases in which compiz itself will run without problems, but some particular software (such as OpenGL applications, or DisplayLink's USB driver) will not and switching to Metacity fixed it. It avoids the reliance on 3D acceleration in graphics cards.", "userDisplayName": null, "userId": "20557" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-05T23:54:50.880", "id": "24980", "lastActivityDate": "2011-02-05T23:54:50.880", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "24977", "postTypeId": "2", "score": "22" }
[ { "accepted": null, "body": "<p>It uses one or the other depending on your settings. If you open System -> Preferences -> Appearance and go to the visual effects tab, if you choose none then metacity is used, otherwise compiz is.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate"...
null
null
null
null
null
24982
1
24997
2011-02-06T00:23:02.143
4
824
<p>IMHO a list of well-maintained PPAs is a useful commodity for a Ubuntu user to have. Perhaps some of you have links of this kind to share? Or maybe you've seen a review or list of PPAs (a blog post maybe) by someone, or some kind of PPA directory, etc.?</p> <p>I am especially interested in fresh and useful packages targeting 10.04, 10.10 and 11.04.</p>
2390
8844
2011-02-06T08:24:29.430
2011-02-06T14:56:39.027
Is there a list, directory, or review of PPAs that is worth a look? Or can you share links to some notable PPAs that you know of or use?
[ "ppa" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Have you checked out Ubuntu Tweak? Not exactly what you are asking for, but I find the PPAs you can install via Ubuntu Tweak to be of high quality.</p>\n\n<p><a href=\"http://ubuntu-tweak.com/source/category/\" rel=\"nofollow\">http://ubuntu-tweak.com/source/category/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2011-02-06T05:18:19.057", "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-06T05:18:19.057", "id": "24997", "lastActivityDate": "2011-02-06T05:18:19.057", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "522", "parentId": "24982", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Have you checked out Ubuntu Tweak? Not exactly what you are asking for, but I find the PPAs you can install via Ubuntu Tweak to be of high quality.</p>\n\n<p><a href=\"http://ubuntu-tweak.com/source/category/\" rel=\"nofollow\">http://ubuntu-tweak.com/source/category/</a></p>...
2011-02-06T02:01:12.330
null
null
null
null
24983
1
25008
2011-02-06T00:28:19.503
4
6980
<p>i have deleted the default fonts in Ubuntu Desktop 10.10. IE, arial, verdana, etc. Does anyone know how I can get them back?</p>
10252
8169
2011-02-06T01:58:04.003
2017-02-23T22:51:51.633
How do I reinstall default fonts?
[ "10.10", "fonts" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>What you need is the msttcorefonts package.</p>\n\n<pre><code>sudo apt-get install msttcorefonts\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-06T09:05:11.500", "id": "25008", "lastActivityDate": "2011-02-06T09:05:11.500", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5361", "parentId": "24983", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Looks like I was able to answer my own question with a bit of guided research. You need the package: <code>msttcorefonts</code></p>\n\n<p>Or command line instructions:</p>\n\n<pre><code>sudo apt-get install msttcorefonts\nsudo fc-cache -fv\n</code></pre>\n\n<p>This link expla...
null
null
null
null
null
24984
1
null
2011-02-06T00:38:24.913
3
2073
<p>My system became very slow out of the sudden, yesterday Compiz was running extremely smooth, today it started working very slow and slowing the computer.</p> <p>What I've done so far was to resize my swap partition to 6 gigabytes (my computer has 3 gigabytes of RAM), before it was on 5.1 gigabytes, so I though that was the reason of this but still not.</p> <p>Also I tested running only metacity by running <code>metacity --replace</code> and also with Mutter. With metacity works really great no problem but, in the other hand, with mutter the computer works slower than running compiz instead.</p> <p>I am using the Nvidia driver version 173.14.28 and my X Server version as reports the NVidia X Server Settings is the 11.0.</p> <p>My Linux kernel running on this computer is 2.6.35-25-generic and my ubuntu version is 10.10.</p> <p>Any help will be appreciated.</p>
3119
null
null
2013-03-16T15:11:38.933
Compiz runs almost at 100% and the system is slow, what can I do?
[ "nvidia", "compiz" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Although I am not using 10.10 and neither same version of kernel, but during those days when I was using 9.10 with nVidia driver and Compiz on, I do have this issue before.</p>\n\n<p>What I did was I choose to run nVidia with Vdpau using the following PPA:</p>\n\n<p><a href=\...
null
null
null
null
null
24990
1
null
2011-02-06T02:39:43.873
3
4166
<p>I would like to use the Wacom Bamboo "Pen &amp; Touch" with Ubuntu Maverick and I don't have any idea how to do this. In addition, when I see "change or add kernel" I become really scared. :-) </p> <p>I would really appreciate your help. Thanks in advance </p> <p>I saw answers for the Wacom Bamboo "pen" but I don't know if the installation instructions are the same or if some different additions need to be made to my system. </p>
null
8844
2011-03-02T05:23:55.473
2011-03-02T05:23:55.473
Installing the Wacom Bamboo Pen & Touch
[ "10.10", "wacom" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>It should work out of the box. Just plug it in and you're good to go. You can test it out with the simple (yet powerful) program called \"mypaint\", available in the software center.</p>\n\n<p>If it doesn't work (usually because it's a brand new piece of hardware) it's possib...
null
null
null
null
user10290
24994
1
null
2011-02-06T04:39:04.193
1
1543
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/18023/how-do-i-upgrade-mysql-to-5-5-am-i-best-off-waiting-for-it-to-be-available-throu">How do I upgrade MySQL to 5.5, am I best off waiting for it to be available through apt-get?</a> </p> </blockquote> <p>Are there any efforts in this direction? PostgreSQL 9.0 is already available via PPA, what about MySQL? Would be rather interesting.</p>
7422
-1
2017-04-13T12:23:28.223
2011-05-16T07:50:58.217
PPA for MySQL 5.5 underway?
[ "ppa", "mysql" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
null
2011-06-05T20:30:03.153
null
null
25011
1
null
2011-02-06T09:50:17.030
1
1177
<p>My BSNL CDMA 1x is detected in Ubuntu 10.10. When I am trying to connect with it (after required settings - user ID &amp; password), after about a minute NetworkManager displays a message <em>"Network disconnected - You are offline"</em>. What may be the reason? Now I am working with the same device in Windows. I just installed Ubuntu 10.10 with Windows. Please help me.</p>
10280
3037
2011-02-06T10:22:24.227
2011-10-27T18:38:11.923
Mobile broadband not connecting
[ "10.10", "internet" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Please run this:</p>\n\n<pre><code>sudo service network-manager stop\nsudo NM_PPP_DEBUG=1 /usr/sbin/NetworkManager --log-level=debug --no-daemon &gt; ~/nm.out\nsudo chown $(id -un) ~/nm.out\n</code></pre>\n\n<p>and then paste the contents of <code>~/nm.out</code> here.</p>\n\...
null
null
null
null
null
25015
1
null
2011-02-06T11:42:10.740
4
10003
<p>I have in my office, a Konica Minolta bizhub 211 multifunction printer, it works well with windows workstations... It has a lot of good features, like duplex...</p> <p><img src="https://i.stack.imgur.com/zMQya.jpg" alt="konica minolta bizhub 211"></p> <p>I haven't found any drivers for UNIX, so I'm looking for alternative methods, how can we make it useable in Ubuntu. I'm thinking on some windows based server, or what I know...</p> <p>It's id in <code>lsusb</code>: 132b:2052</p> <p>I wrote here requesting for drivers: <a href="http://ubuntu.hu/node/21191" rel="nofollow noreferrer">ubuntu.hu</a>, <a href="http://www.linuxforums.org/forum/hardware-peripherals/170483-konica-minolta-bizhub-211-driver.html#post809237" rel="nofollow noreferrer">linuxforums.org</a>, <a href="http://forums.debian.net/viewtopic.php?f=7&amp;t=56152#p325906" rel="nofollow noreferrer">forums.debian.net</a>, <a href="http://ubuntuforums.org/showthread.php?t=1590592" rel="nofollow noreferrer">ubuntuforums.org</a>; and also to the manufacturer, but they said only, that <em>"the first PostScript supported printer is only bizhub 223"</em>, so they don't care that thing.</p> <p><strong>Update</strong>: I've heared about the raw printing method trough a normal Windows workstation. Have someone got any information about this workaround?</p> <p>Please suggest working methods, </p> <p>Thanks, B. Roland</p>
6341
6341
2012-03-25T23:54:24.580
2014-03-12T06:48:53.827
Alternative printing method(s) for an unsupported printer
[ "server", "software-recommendation", "drivers", "windows", "printing" ]
2
6
CC BY-SA 3.0
[ { "creationDate": "2011-02-06T13:42:28.933", "id": "27332", "postId": "25015", "score": "0", "text": "Just a stab in the dark but have you checked with wine I heard something about ddiwrapper being a possibility as well.", "userDisplayName": null, "userId": "6450" }, { "creationD...
null
[ { "accepted": null, "body": "<p>Once your unsupported printer is recognized either from USB or if setup as network printer from the appropriate network setting you are asked for a driver. If your printer is not listed you can alway select \"Generic\" to give you a choice of standard printing methods depicte...
null
null
null
null
null
25021
1
25063
2011-02-06T13:37:44.960
0
1388
<p>What soud card with 8 line-in can you recommend for ubuntu? It can be an internal one or usb/firewire.</p>
10304
22949
2012-09-01T03:13:07.230
2012-09-01T03:13:07.230
Sound card with 8 line-in
[ "sound", "hardware", "soundcard" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Depends on your price range, but the <a href=\"http://www.m-audio.com/products/en_us/Delta1010.html\" rel=\"nofollow\">M-Audio Delta 1010</a> is popular. For a bit more money (and more inputs) the <a href=\"http://www.rme-audio.de/\" rel=\"nofollow\">RME</a> cards are supposed to be good.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-06T21:08:06.440", "id": "27395", "postId": "25063", "score": "0", "text": "Thanks. Do you know if it is possible to use 2 or more Delta 1010 cards in a single workstation?", "userDisplayName": null, "userId": "10304" }, { "creationDate": "2011-02-07T12:44:10.340", "id": "27474", "postId": "25063", "score": "0", "text": "I don't know about that. I know Jack can only use a single interface at a time. I think this is because it's hard to keep multiple cards in sync. I think I've read of multiple RME cards being used, but they may have ways to synchronise their sample clocks. This also suggests there is a way to make them look like a single interface.", "userDisplayName": null, "userId": "947" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-06T19:43:54.893", "id": "25063", "lastActivityDate": "2011-02-06T19:43:54.893", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "947", "parentId": "25021", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Depends on your price range, but the <a href=\"http://www.m-audio.com/products/en_us/Delta1010.html\" rel=\"nofollow\">M-Audio Delta 1010</a> is popular. For a bit more money (and more inputs) the <a href=\"http://www.rme-audio.de/\" rel=\"nofollow\">RME</a> cards are suppose...
null
null
null
null
null