Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
Hi, in my key usb I can not copy or transfer files, unless I enter sudo dolphin,how can I avoid this?...
  1. #1
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20

    Wink impossible to copy or transfer files in usb key (kubuntu)

    Hi,
    in my key usb I can not copy or transfer files, unless I enter sudo dolphin,how can I avoid this?

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    Plug-in USB key and execute this in Terminal :
    Code:
    sudo fdisk -l
    Post output here.

    * Its small L in fdisk -l.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20
    HTML Code:
    Disco /dev/sda: 250.1 GB, 250059350016 byte
    255 testine, 63 settori/tracce, 30401 cilindri
    Unità = cilindri di 16065 * 512 = 8225280 byte
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Identificativo disco: 0x0000c563
    
    Dispositivo Boot      Start         End      Blocks   Id  System
    /dev/sda1   *           1         249     1998848   82  Linux swap / Solaris
    La partizione 1 non termina al limite del cilindro.
    /dev/sda2             250       30402   242197505    5  Esteso
    /dev/sda5             250       30402   242197504   83  Linux
    
    Disco /dev/sdb: 250.1 GB, 250059350016 byte
    255 testine, 63 settori/tracce, 30401 cilindri
    Unità = cilindri di 16065 * 512 = 8225280 byte
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Identificativo disco: 0xc42695e6
    
    Dispositivo Boot      Start         End      Blocks   Id  System
    /dev/sdb1               1          13      102400    7  HPFS/NTFS
    La partizione 1 non termina al limite del cilindro.
    /dev/sdb2   *          13       30402   244093952    7  HPFS/NTFS
    La partizione 2 non termina al limite del cilindro.
    
    Disco /dev/sdc: 300.1 GB, 300090728448 byte
    255 testine, 63 settori/tracce, 36483 cilindri
    Unità = cilindri di 16065 * 512 = 8225280 byte
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Identificativo disco: 0x0008e095
    
    Dispositivo Boot      Start         End      Blocks   Id  System
    /dev/sdc2   *           2       36483   293041665    5  Esteso
    /dev/sdc5               2       36483   293041633+   7  HPFS/NTFS
    
    Disco /dev/sdd: 500.1 GB, 500107862016 byte
    255 testine, 63 settori/tracce, 60801 cilindri                                                                                                                                      
    Unità = cilindri di 16065 * 512 = 8225280 byte                                                                                                                                      
    Sector size (logical/physical): 512 bytes / 512 bytes                                                                                                                               
    I/O size (minimum/optimal): 512 bytes / 512 bytes                                                                                                                                   
    Identificativo disco: 0x75c9c18c                                                                                                                                                    
                                                                                                                                                                                        
    Dispositivo Boot      Start         End      Blocks   Id  System                                                                                                                    
    /dev/sdd1   *           1       60801   488384001    7  HPFS/NTFS                                                                                                                   
                                                                                                                                                                                        
    Disco /dev/sdf: 1047 MB, 1047134208 byte                                                                                                                                            
    63 testine, 32 settori/tracce, 1014 cilindri                                                                                                                                        
    Unità = cilindri di 2016 * 512 = 1032192 byte                                                                                                                                       
    Sector size (logical/physical): 512 bytes / 512 bytes                                                                                                                               
    I/O size (minimum/optimal): 512 bytes / 512 bytes                                                                                                                                   
    Identificativo disco: 0xf8daf8da                                                                                                                                                    
                                                                                                                                                                                        
    Dispositivo Boot      Start         End      Blocks   Id  System                                                                                                                    
    /dev/sdf1   *           1        1015     1022576    b  W95 FAT32                                                                                                                   
    La partizione 1 ha diversi elementi finali fisici/logici:                                                                                                                           
         phys=(1023, 62, 32) logico=(1014, 29, 32)            

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    La partizione 1 ha diversi elementi finali fisici/logici:
    Translation : Partition 1 has different physical / logical endings:

    Is this USB stick working fine with other OSes? Have tried the same stick in any Windows OS?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20
    how to ADDING permits for key? with sudo dolphin it works

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Try to mount it manually.
    Code:
    sudo umount /dev/sdf1
    sudo mkdir /media/usb
    sudo mount -t vfat /dev/sdf1  /media/usb -o defaults,umask=0
    Check /media/usb folder. umask=0 option in mount command enables full access to all users.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20
    You are a great moderator, I solved, thanks

  8. #8
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20
    I've the same error again, but there is always a way to not run these commands? To not have this problem there is a way?

  9. #9
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    All Users have full privileges by default in Ubuntu. Which version of Ubuntu are you using?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  10. #10
    Just Joined!
    Join Date
    Aug 2010
    Posts
    20
    kubunt 10.04 LTS

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...