Welcome to the Linux Foundation Forum!

script for helping new users with ubuntu 13.04

Herro everybody, i made this script to help a friend who is new to ubuntu and linux in general, it does varius things as u can se in the "menu"...im posting it as text so u can se whats going on, if u want to use it as a script just copy the text into a textfile and run it as su or sudo (remember to give it execute#chmod +x filename") it helped my friend alot just reading the lines,so i thought id share with u guys :)

Hmm seams i cant kopy the text in here so il try attaching it as file just open it in gedit er whatever editor u use :)

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Comments

  • Posts: 10
    edited June 2013
    Try again...
    1. #!/bin/bash
    2. # MADE BY HIPPTAMBIUS - MAY 2013
    3. # TESTED AND WORKS ON UBUNTU 13.04
    4.  
    5.  
    6. while true; do
    7. echo "
    8. ******************************************************************************
    9. ***-UBUNTU 13.04-*********************************************-HIPPTAMBIUS-***
    10. ******************************************************************************
    11. * 1. install spotify, repo, key, and client.
    12. * 2. install krusader
    13. * 3. install deluge
    14. * 4. install handbrake, repo and client
    15. * 5. install wine (1.5) repo, and client
    16. * 6. install medibuntu, repo, key, libdvdcss2, vlc, ubuntu-restricted-extras
    17. * 7. install cutecom and putty
    18.  
    19. * 8. install things for openvpn support, and samba
    20.  
    21. * 9. install gparted, disk editing tool
    22.  
    23. * 10. install clamav, antivirus, gui, and update tool (freshclam)
    24.  
    25. * 11. install macOS ubuntu theme, icons, and unity-tweak tool
    26.  
    27. * 12. Remove the ubuntu amazon.com search and ip sending shit!
    28.  
    29. * 13. exit to linux
    30. ******************************************************************************
    31. ***-SELECT THE NUMBER IN FRONT OF THE TASK U WANT PERFORMED-******************
    32. ******************************************************************************"
    33. read TAST
    34. case $TAST in
    35. 1)
    36. echo "deb http://repository.spotify.com stable non-free" | tee -a /etc/apt/sources.list
    37. apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59
    38. apt-get update
    39. apt-get install -y spotify-client
    40. ;;
    41.  
    42. 2)
    43. apt-get install -y krusader
    44. ;;
    45.  
    46. 3)
    47. apt-get install -y deluge
    48. ;;
    49.  
    50. 4)
    51. add-apt-repository -y ppa:stebbins/handbrake-releases
    52. apt-get update
    53. apt-get install -y handbrake-gtk
    54. ;;
    55.  
    56. 5)
    57. add-apt-repository -y ppa:ubuntu-wine/ppa
    58. apt-get update
    59. apt-get install -y wine1.5
    60. ;;
    61.  
    62. 6)
    63. wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list
    64. apt-get update
    65. apt-get --yes --allow-unauthenticated install medibuntu-keyring
    66. apt-get update
    67. apt-get install -y libdvdcss2 vlc ubuntu-restricted-extras
    68. ;;
    69.  
    70. 7)
    71. apt-get install -y cutecum
    72. apt-get install -y putty
    73. ;;
    74.  
    75. 8)
    76. apt-get install -y samba
    77. apt-get install -y openvpn
    78. apt-get install -y curl
    79. apt-get install -y network-manager-openvpn
    80. ;;
    81.  
    82. 9)
    83. apt-get install -y gparted
    84. ;;
    85.  
    86. 10)
    87. apt-get install -y clamav
    88. apt-get install -y clamtk
    89. apt-get install -y clamav-freshclam
    90. ;;
    91.  
    92. 11)
    93. add-apt-repository -y ppa:noobslab/themes
    94. apt-get update
    95. apt-get install -y mac-icons-noobslab
    96. apt-get install -y mac-ithemes-noobslab
    97. apt-get install -y unity-tweak-tool
    98. ;;
    99.  
    100. 12)
    101. apt-get remove -y unity-lens-shopping
    102. apt-get purge -y unity-lens-shopping
    103. ;;
    104.  
    105. 13)
    106. echo "THANK YOU, COME AGAIN!"
    107. sleep 1
    108. exit 0
    109. ;;
    110.  
    111.  
    112. esac
    113. done
    114. exit 0

  • Posts: 2,177
    I highly recommend posting this on a script or text site such as pastebin or github so it is easily searchable and so you can update it as new features are requested.
  • Ok,i will in the future :)
  • Posts: 146
    Good job.

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Categories

Upcoming Training