Woeusb don't showing in applications Debian 10 Gnome - debian-buster

I am installed woeusb along this instruction https://github.com/slacka/WoeUSB.
git clone https://github.com/slacka/WoeUSB.git
./setup-development-environment.bash
sudo apt-get install devscripts equivs gdebi-core
mk-build-deps
sudo gdebi woeusb-build-deps_3.3.1-1-g7171bff_all.deb
This program didn't showing in applications, search don't finded it.Then i am installed from snap, don't finded too. What's a problem?

Related

How to automount usb after kiosk mode enable in raspberry Pi 4 with buster os?

Problem with Kiosk mode and USB access.
I have installed buster on raspberry Pi 4. And for open chromiam browser at startup, I enabled kiosk mode.
Now I have a problem that, it does not mount USB device (flash drives) at /media/pi
Any help and suggestions would be very helpful!
Raspbian Buster lite (without GUI) doesn't mount USB devices automatically out of the box.
There is a software called "usbmount" which adds this functionality.
You can install it using
sudo apt-get install usbmount
Then reboot the Pi
sudo reboot now
http://www.howtoeverything.net/linux/raspberry-pi/automount-external-hard-disks-raspberry-pi
I'm using Buster Lite and ran into a problem with installing usbmount. The error I got was "unable to locate package usbmount". I found the solution, and I am append my solution to this thread since this thread shows up on some search-engines pretty high up.
The solution I used was to clone the github repo from https://github.com/rbrito/usbmount/ and build it (instructions below is partially from the readme)
git clone https://github.com/rbrito/usbmount.git
cd usbmount
sudo apt-get update && sudo apt-get install -y debhelper build-essential exfat-fuse exfat-utils
sudo dpkg-buildpackage -us -uc -b
cd ..
sudo dpkg -i usbmount_0.0.24_all.deb
Additionally, use
sudo nano /etc/usbmount/usbmount.conf
to add exfat to the list of file-systems
save and reboot

Launching latest version of MonoDevelop on Ubuntu 14.04 LTS

I installed MonoDevelop using following commands:
sudo add-apt-repository ppa:ermshiperete/monodevelop
sudo apt-get update
sudo apt-get install monodevelop-current
because I wanted latest version.
sudo apt-get install monodevelop
results in installing 4.x version which I wasn't interested in.
Now I can launch application via terminal using:
/opt/monodevelop/bin/monodevelop-launcher.sh
but "monodevelop" command results in following information:
The program 'monodevelop' is currently not installed. You can install it by typing:
sudo apt-get install monodevelop
and creating monodevelop.desktop file doesn't result in having program icon in launcher. Any ideas what I should do to be able to run MonoDevelop using "monodevelop" command?
I installed MonoDevelop using following commands:
sudo add-apt-repository ppa:ermshiperete/monodevelop
Do you realize that when adding a repository, you're trusting this user (what he decides to package in his repository), and that the version you get is the one that he himself alone decided to package?
I recommend you to add the repository of the official developers/packagers instead. Follow the instructions here (but uninstall any old packages first).

Can not make ubuntu virtual machine fullscreen

i am using windows 8.1 on a 15 inch laptop. I have installed ubuntu 14.04.2 LTS on virtual box and have also installed the guest addition.But still i am not getting the "auto-resize guest display "or "seamless mode" option in the view menu?
From the menu bar,
Click on "Devices." You will see "Insert Guest Additions CD Image" option there.
"Insert Guest Additions CD Image" inserts a disk image on a virtual CD on your machine.
This virtual CD usually starts automatically with autorun, but if not, just go to "Computer" and launch the "VboxWindowsAdditions" exe file on the CD and follow the installation
sudo apt update && sudo apt upgrade
sudo apt install open-vm-tools open-vm-tools-desktop
Here below steps works for me ---
Upgraded linux-image and headers sudo apt-get install linux-image-3.11.0-15-generic linux-headers-3.11.0-15-generic (Perhaps virtual would work just as well as the generic one.):
Installed linux-image-extras with the hyperv-drivers:
sudo apt-get install linux-image-extra-virtual
Set video mode (Pretty much what you already did):
Set GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1680x1050" in /etc/default/grub.
Update grub: sudo update-grub
Reboot
refer below link for more detail https://askubuntu.com/questions/384602/ubuntu-hyper-v-guest-display-resolution
First, type the following in the terminal:
sudo apt-get install gcc perl make
After this, you can follow these steps:
Click on "Devices." You will see "Insert Guest Additions CD Image" option there.
"After clicking a Dialog Box opens up, Click on Run.
After it is installed, restart the VM.
I was stuck with the same problem. I did it manually from the ubuntu terminal, here are the steps:-
1 cd /media
2 ls
3 mkdir device cdrom1
4 sudo mkdir device cdrom1
5 ls
6 sudo mount /dev/cdrom /media/cdrom1
7 cd cdrom1/
8 ls
9 sudo ./VBoxLinuxAdditions.run
10 sudo reboot
This worked for me.

Dropbox cannot work on my Ubuntu 13.10 laptop

Dropbox is not working on my laptop ubuntu 13.10, it is keep saying connecting and the Dropbox icon on the menu bar is grey.
I tried to install Dropbox with the following ways and all failed.
1) sudo apt-get install nautilus-dropbox
2) install from Ubuntu Software Center
3) downloads dropbox .deb file from dropbox offical website
Finally, I re-install my laptop with Ubuntu 12.04 LTS, and tried with 1) I mentioned above, and it works.
Is there anyone know why it is not working?
Add Dropbox’s repository key
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Add Dropbox’s repository
sudo add-apt-repository "deb http://linux.dropbox.com/ubuntu saucy main"
update and install Dropbox
sudo apt-get update && sudo apt-get install nautilus-dropbox
When prompted with the screen, click Next.
Click Start Dropbox to continue.
You can see that Saucy is available at http://linux.dropbox.com/ubuntu/dists/ so it should be working.
These two lines will fix your problem:
sudo rm -rf /var/lib/dropbox/.dropbox-dist
dropbox start -i

Amazon web services and ubuntu 10.04 ec2 instance

I have created ubuntu 10.04 ec2 image and now I need to install tomcat apache and jdk6 on my instance but whenever I use the command sudo apt-get install sun-java6-jdk or sudo apt-get install tomcat6 admin or sudo apt-get install ec2-api-tools
Package ec2-api-tools is not available, but is referred to by another package.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ec2-api-tools is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package ec2-api-tools has no installation candidate
Another option is to add their official repository to apt - this will provide you up to date AWS tools:
sudo apt-add-repository ppa:awstools-dev/awstools
sudo apt-get update
sudo apt-get install ec2-api-tools -y
This is extremely useful for farther releases and and for up to date official bug fixes etc. just by running the usual
sudo apt-get update
sudo apt-get upgrade -y
Ubuntu doesn't have the Sun JDKs available by default so in /etc/apt/sources.list uncomment:
deb http://archive.canonical.com/ubuntu maverick partner
deb-src http://archive.canonical.com/ubuntu maverick partner
and then:
sudo apt-get update
sudo apt-get install sun-java6-jdk
ec2-api-tools requires the multiverse lines in sources.list to be uncommented first (remember to apt-get update also).
I am a bit confused, if you just want to install Java and Tomcat, why are you also trying to install the ec2 tools?
In any case, I also want to mention the free BitNami Cloud Tools installer (disclaimer: I am one of the developers). It includes the JDK and all EC2-related tools. We keep it fairly up-to-date and can run as a regular user.