![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Linux Support Linux - Operating Systems and Applications Support |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Nov 2006
Posts: 77
OS: Vista Ultimate
|
two important issues
#1
I'm trying to move files to my usb flash drive but it keeps telling me no permission. How do I create a folder on my usb drive via command line AND drag/drop via places > usb? chad@Secured:~$ sudo mkdir /media/Backup Password: chad@Secured:~$ sudo chmod a+w /media/Backup chad@Secured:~$ sudo mount /dev/sdb1 /media/Backup mount: /dev/sdb1 already mounted or /media/Backup busy mount: according to mtab, /dev/sdb1 is mounted on /media/Backups #2 How do I upgrade my hardware drivers in Ubuntu 7, and yet how do I know IF I need to upgrade? I'm specifically referring to network, graphics. Sound is not working (5.1) via my SB Live 24 bit external, as dozens others are having this issue here http://ubuntuforums.org/showthread.php?t=402650 http://ubuntuforums.org/showthread.php?t=419166 For one thing, my display is not as bright in linux as it is in Vista. Not sure why. My networking always shows up as "restricted driver". #3 Also, any way to do a complete Ubuntu system snapshot even if it is only a small partition created in Vista? For example, in Vista you can do the whole computer snapshot which I've done, took 2 DVD's. I'd like to do the same only on the Ubuntu partition. If possible, would I be able to restore that snapshot and entirely wiping out any current partitions on my laptop? Specs: Sony Vaio FE770G Laptop Core 2 Duo 1.83GHz 2GB Memory Creative Soundblaster Live! 24-bit External USB Intel 945GM / 950 Chipset (graphics) Intel PRO/Wireless 3945ABG Network Connection Intel PRO/100 VE Network Connection 15.4" Widescreen (1280x800) Intellipoint Wireless Laser 6000 Mouse |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) | |
|
Register user
Join Date: May 2005
Location: England
Posts: 229
OS: Gentoo AMD XP 2400+ 1GB Ram / WinXp Intel 805D 2GB Ram
|
Re: two important issues
Quote:
The sound issue sounds like a Ubuntu problem, I don't think its an Alsa problem. Try filling a bug report. To update alot of drivers, means installing a newer kernel. Last edited by PureEvilDan; 05-07-2007 at 10:51 AM. |
|
|
|
|
|
|
#3 (permalink) |
|
Registered User
Join Date: Nov 2006
Posts: 77
OS: Vista Ultimate
|
Re: two important issues
Code:
chad@Secured:~$ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda2 20G 4.0G 15G 22% / varrun 1002M 112K 1002M 1% /var/run varlock 1002M 0 1002M 0% /var/lock procbususb 1002M 152K 1002M 1% /proc/bus/usb udev 1002M 152K 1002M 1% /dev devshm 1002M 0 1002M 0% /dev/shm lrm 1002M 39M 964M 4% /lib/modules/2.6.20-15-generic/volatile /dev/sda1 91G 14G 78G 15% /media/sda1 /dev/sdb1 7.8G 3.6G 4.2G 46% /media/Backups |
|
|
|
|
|
#4 (permalink) |
|
Register user
Join Date: May 2005
Location: England
Posts: 229
OS: Gentoo AMD XP 2400+ 1GB Ram / WinXp Intel 805D 2GB Ram
|
Re: two important issues
Your usb pen is already mounted in /media/Backup.
Code:
cd /media/Backups && ls I've just noticed that was in the first post, and I missed it
|
|
|
|
|
|
#5 (permalink) | |
|
Registered User
Join Date: Nov 2006
Posts: 77
OS: Vista Ultimate
|
Re: two important issues
Quote:
"I'm trying to move files to my usb flash drive but it keeps telling me no permission. " I just cannot write to the USB. It mounts as root instead of user which even in ubuntu forums (I asked there too) they cannot figure out why - hence the unmounting and remounting (their suggestion) |
|
|
|
|
|
|
#6 (permalink) |
|
Register user
Join Date: May 2005
Location: England
Posts: 229
OS: Gentoo AMD XP 2400+ 1GB Ram / WinXp Intel 805D 2GB Ram
|
Re: two important issues
ahh sorry, miss read that.
I think Ubuntu has Udev, if so we are going to create a rule for it, in udev, this will allow you to add the device to fstab, & be able to read it as a user. Please note, I do not have a copy of Ubuntu, and as such, I'm going of what I would do to get the results I need. == The CODE box messes this up, so I'm not going to use it for this == sudo su - Change to root first. udevinfo -a -p `udevinfo -q path -n /dev/sdb` | grep ATTRS{serial}= /dev/sdb is the location of your usb pen. What we need to find is the serial number, its going to look something like this: iv3d@BugsBunny ~ $ udevinfo -a -p `udevinfo -q path -n /dev/sdb` | grep ATTRS{serial}= ATTRS{serial}=="000A27001877E1AD" ATTRS{serial}=="0000:00:02.2" liv3d@BugsBunny ~ $ We need the LONG ATTRS{serial} cd /ec/udev/rules.d/ (Here you need to locate & find your udev rules directory, this bit is vital). nano -w 60.usbpen.rules On Gentoo 50-udev.rules are run first. SUBSYSTEMS=="usb", ATTRS{serial}==" 000A27001877E1AD", KERNEL=="sd?1", NAME="%k", SYMLINK="usbpen" Note: This all needs to be on one line, and replace the orange with the code taken from above. Ctrl + X (Close & save nano) udevstart (restarts udev) -- Now for your fstab -- nano -w /etc/fstab #Usb Pendrive /dev/usbpen /media/Backups auto nodev,nosuid,user,rw,noauto 0 0 Close & Save == END == Try that, you should be able to write to your usb pen now. |
|
|
|
![]() |
| Thread Tools | |
|
|