Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 30
Well i almost want to delete my windows because i got wine But some other few thing i need wat i got on windows i want on linux are: 1/ ...
  1. #1
    Hit
    Hit is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    17

    Almost done, help me out

    Well i almost want to delete my windows because i got wine

    But some other few thing i need wat i got on windows i want on linux are:
    1/ Watch all drive letters on all hardisks, so i can watch C:/ drive
    2/I need Shockwave
    3/I need to unzip rar
    4/ can somebody explain how to compile sources so i can use on my debian linuz

    Please help me out

  2. #2
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    1.
    no drive letters on linux it have only one big file system. you can mount one of your partition to a directory on the root fs.

    read:
    man mount
    man fstab

    2.
    Only macromedia flash player exist for linux

    3.
    install the tools : zip unzip rar unrar

    apt-get install zip unzip rar unrar

    read: man unrar

    4.
    download the source .tar.gz or .tar.bz2 format
    unpack it
    tar xfz something.tar.gz
    tar xfj something.tar.bz2

    cd something
    read the file which named INSTALL

    run the configure script
    ./configure --help
    chose the options what you need
    run the configure script with the options
    ./configure --opt1 --opt2 ...
    than
    make
    make install

  3. #3
    Hit
    Hit is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    17
    Well thx for info
    Tobad shockwave doesnt works with wine tool it works bot too!! slow

    dylan@dhcppc3:~$ apt-get install zip unzip rar unrar
    E: Kon het vergrendelingsbestand '/var/lib/dpkg/lock' niet openen - open (13 Toegang geweigerd)
    E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
    dylan@dhcppc3:~$
    dylan@dhcppc3:~$


    Wat is wrong?
    It cries too when i do soda or something
    There's only one acount thats mine
    Do i have to set something that it sees im admin

    Using:
    Debain 3.1/GNOME

  4. #4
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    oh sorry i forgot

    you need to became root while you install softwares

  5. #5
    Hit
    Hit is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    17
    K how you do that
    btw. why can i use sodu actions
    look:
    dylan@dhcppc3:/root$ sudo grub-install /dev/wohinauchimmer
    Password:
    dylan is not in the sudoers file. This incident will be reported.
    dylan@dhcppc3:/root$

    btw. isnt there some file browser app to acces C:/

    dylan@dhcppc3:~/Desktop/xarchiver$ make
    make: *** Geen doelen opgegeven en geen makefile gevonden. Gestopt.
    dylan@dhcppc3:~/Desktop/xarchiver$
    English make: *** No commands given and no makefile found. Stopt.

    Wats that:
    *** The pkg-config utility could not be found on your system.
    *** Make sure it is in your path, or set the PKG_CONFIG
    *** environment variable to the full path to pkg-config.
    *** You can download pkg-config from the freedesktop.org
    *** software repository at
    ***
    *** http://www.freedesktop.org/software/pkgconfig
    ***

    checking for usb_init in -lusb... no
    configure: error: cannot find libusb support

    Some other thingie didnt vind libjpeg

    I doesnt got much lib files :S
    Somebody got a basis install pakket with many libs

  6. #6
    Hit
    Hit is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    17
    Please help
    I really need to know

  7. #7
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    See my post here on how to configure "sudo" :
    http://www.linuxforums.org/forum/deb...tu-5-10-a.html

    As for "xarchiver", you don't need to build it from source. Just use the .deb package available here. Or use apt-get to install it :
    Code:
    apt-get install xarchiver
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  8. #8
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    you need to add a user to /etc/sudoers else the user can not get root permissions.

    if the configure script ran without error , its make the makefile.

  9. #9
    Hit
    Hit is offline
    Just Joined!
    Join Date
    Oct 2006
    Posts
    17
    thx both
    But is there a way to see C:/ Drive?

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    for reading contents of C: Drive, you have to mount it.

    execute these commands in terminal. ( you must be 'root' for to do this. )

    mkdir /media/c_drive
    mount -t ntfs /dev/hdax /media/c_drive

    if C: Drive is FAT32 then replace 'ntfs' with 'vfat', x is C: Drive's partition number. check output of 'fdisk -l' for correct partition. after executing those commands, check c_drive folder in media. you can make it permanent by adding correct mounting line in /etc/fstab file.





    casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 3 1 2 3 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
  •